From 9c2923b05f17293f24e8e9d94fe76aac1f17d8fb Mon Sep 17 00:00:00 2001 From: Orgad Shaneh <orgad.shaneh@audiocodes.com> Date: Wed, 18 Dec 2013 18:57:57 +0200 Subject: [PATCH 01/42] Fix simple_test_app compilation with Qt < 5.2 Change-Id: I3b903eb790e27e21d7759b989adf1e5077410677 Reviewed-by: hjk <hjk121@nokiamail.com> --- tests/manual/debugger/simple/simple_test_app.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp index 1c064b44096..0542326baa3 100644 --- a/tests/manual/debugger/simple/simple_test_app.cpp +++ b/tests/manual/debugger/simple/simple_test_app.cpp @@ -152,10 +152,6 @@ void dummyStatement(...) {} #include <QSharedPointer> #endif -#if USE_TIMEZONE -#include <QTimeZone> -#endif - #if USE_GUILIB #include <QAction> #include <QApplication> // QWidgets: Separate module as of Qt 5 @@ -168,8 +164,10 @@ void dummyStatement(...) {} #include <QStandardItemModel> #include <QTextCursor> #include <QTextDocument> +#if USE_TIMEZONE #include <QTimeZone> #endif +#endif #if USE_SCRIPTLIB #include <QScriptEngine> @@ -711,10 +709,12 @@ namespace qdatetime { void testQTimeZone() { +#if USE_TIMEZONE QTimeZone zz; QTimeZone tz("UTC+05:00"); BREAK_HERE; dummyStatement(&zz, &tz); +#endif } void testQDate() -- GitLab From 5e42856947c1ba3888eaff52afe5239f007672c6 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@digia.com> Date: Wed, 18 Dec 2013 16:04:03 +0100 Subject: [PATCH 02/42] Squish: Fix bug in selectBuildConfig() Function did not wait when configName did not change, even when the active kit did change. Change-Id: Ia0954ee7da45864aefe88ad1919124c065af2ac1 Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- tests/system/shared/build_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py index 5a34aac4a39..5a2ff968cc7 100644 --- a/tests/system/shared/build_utils.py +++ b/tests/system/shared/build_utils.py @@ -184,8 +184,8 @@ def iterateBuildConfigs(kitCount, filter = ""): def selectBuildConfig(targetCount, currentTarget, configName): switchViewTo(ViewConstants.PROJECTS) switchToBuildOrRunSettingsFor(targetCount, currentTarget, ProjectSettings.BUILD) - if selectFromCombo(":scrollArea.Edit build configuration:_QComboBox", configName): - progressBarWait(30000) + selectFromCombo(":scrollArea.Edit build configuration:_QComboBox", configName) + progressBarWait(30000) return getQtInformationForBuildSettings(targetCount, True, ViewConstants.EDIT) # This will not trigger a rebuild. If needed, caller has to do this. -- GitLab From a8a1407224f2c5e367452547885ae0b9559d91ad Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@digia.com> Date: Mon, 16 Dec 2013 11:26:28 +0100 Subject: [PATCH 03/42] Squish: Replaced signal handler in tst_CSUP04 Change-Id: Ia24fc657b7033fd383ede2df243bbd29b44c460a Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- tests/system/suite_CSUP/tst_CSUP04/test.py | 24 +++++++++++++--------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/tests/system/suite_CSUP/tst_CSUP04/test.py b/tests/system/suite_CSUP/tst_CSUP04/test.py index 6507db3289f..0e7257d6559 100644 --- a/tests/system/suite_CSUP/tst_CSUP04/test.py +++ b/tests/system/suite_CSUP/tst_CSUP04/test.py @@ -32,7 +32,6 @@ source("../../shared/qtcreator.py") # entry of test def main(): - global searchFinished # prepare example project sourceExample = os.path.abspath(sdkPath + "/Examples/4.7/declarative/animation/basics/property-animation") proFile = "propertyanimation.pro" @@ -46,7 +45,6 @@ def main(): return # open example project openQmakeProject(examplePath) - installLazySignalHandler("{type='Core::FutureProgress' unnamed='1'}", "finished()", "__handleFutureProgress__") # wait for parsing to complete progressBarWait(30000) # open .cpp file in editor @@ -58,13 +56,12 @@ def main(): "Verifying if: .cpp file is opened in Edit mode.") # place cursor on line "QmlApplicationViewer viewer;" editorWidget = findObject(":Qt Creator_CppEditor::Internal::CPPEditorWidget") - searchFinished = False # invoke find usages from context menu on word "viewer" if not invokeFindUsage(editorWidget, "QmlApplicationViewer viewer;", "<Left>", 10): invokeMenuItem("File", "Exit") return # wait until search finished and verify search results - waitFor("searchFinished", 20000) + waitForSearchResults() validateSearchResult(14) result = re.search("QmlApplicationViewer", str(editorWidget.plainText)) test.verify(result, "Verifying if: The list of all usages of the selected text is displayed in Search Results. " @@ -75,17 +72,24 @@ def main(): return for i in range(4): type(editorWidget, "<Left>") - searchFinished = False type(editorWidget, "<Ctrl+Shift+U>") # wait until search finished and verify search results - waitFor("searchFinished", 20000) + waitForSearchResults() validateSearchResult(3) # exit qt creator invokeMenuItem("File", "Save All") invokeMenuItem("File", "Exit") -def __handleFutureProgress__(*args): - global searchFinished - if className(args[0]) == "Core::FutureProgress": - searchFinished = True +def waitForSearchResults(): + def __noCancelButton__(): + global passes + passes += 1 + return not object.exists("{text='Cancel' type='QToolButton' unnamed='1' visible='1' " + "window=':Qt Creator_Core::Internal::MainWindow'}") + global passes + passes = 0 + waitFor("__noCancelButton__()", 20000) + if passes < 2: + test.warning("Did not have to wait for search results.", + "Either Creator was really quick or the GUI was changed.") -- GitLab From 3955d893f6bf3be44cfe4fbaca7f8a4796ce409e Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Date: Mon, 16 Dec 2013 11:30:47 +0100 Subject: [PATCH 04/42] remove over-escaped non-breaking spaces linguist is not able to work with correct non-breaking spaces (cf. QTBUG-6300 and QTBUG-35652), so we'll have to do entirely without them for the time being. Change-Id: Icd36556e141125335899e458102ade5728c6fbaf Reviewed-by: Guillaume Belz <guillaume.belz@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> --- share/qtcreator/translations/qtcreator_fr.ts | 6948 +++++++++--------- 1 file changed, 3474 insertions(+), 3474 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_fr.ts b/share/qtcreator/translations/qtcreator_fr.ts index e0d9d83dcbf..31ff968e443 100644 --- a/share/qtcreator/translations/qtcreator_fr.ts +++ b/share/qtcreator/translations/qtcreator_fr.ts @@ -5,11 +5,11 @@ <name>Application</name> <message> <source>Failed to load core: %1</source> - <translation>Échec dans le chargement du core&nbsp;: %1</translation> + <translation>Échec dans le chargement du core : %1</translation> </message> <message> <source>Unable to send command line arguments to the already running instance. It appears to be not responding. Do you want to start a new instance of Creator?</source> - <translation>Impossible d'envoyer les arguments en ligne de commande à une instance déjà lancée. Il semble qu'elle ne réponde pas. Voulez-vous lancer une nouvelle instance de Qt Creator&nbsp;?</translation> + <translation>Impossible d'envoyer les arguments en ligne de commande à une instance déjà lancée. Il semble qu'elle ne réponde pas. Voulez-vous lancer une nouvelle instance de Qt Creator ?</translation> </message> <message> <source>Unable to send command line arguments to the already running instance. It appears to be not responding.</source> @@ -21,7 +21,7 @@ </message> <message> <source>Unable to send command line arguments to the already running instance.It appears to be not responding. Do you want to start a new instance of Creator?</source> - <translation type="obsolete">Impossible d'envoyer les arguments en ligne de commande à une instance déjà lancée. Il semble qu'elle ne réponde pas. Voulez-vous lancer une nouvelle instance de Qt Creator&nbsp;?</translation> + <translation type="obsolete">Impossible d'envoyer les arguments en ligne de commande à une instance déjà lancée. Il semble qu'elle ne réponde pas. Voulez-vous lancer une nouvelle instance de Qt Creator ?</translation> </message> <message> <source>Could not find 'Core.pluginspec' in %1</source> @@ -44,27 +44,27 @@ </message> <message> <source>Executable:</source> - <translation type="obsolete">Exécutable&nbsp;:</translation> + <translation type="obsolete">Exécutable :</translation> </message> <message> <source>Core File:</source> - <translation type="obsolete">Fichier core&nbsp;:</translation> + <translation type="obsolete">Fichier core :</translation> </message> <message> <source>Core file:</source> - <translation type="obsolete">Fichier core&nbsp;:</translation> + <translation type="obsolete">Fichier core :</translation> </message> <message> <source>&Executable:</source> - <translation type="obsolete">&Exécutable&nbsp;:</translation> + <translation type="obsolete">&Exécutable :</translation> </message> <message> <source>&Core file:</source> - <translation type="obsolete">Fichier &core&nbsp;:</translation> + <translation type="obsolete">Fichier &core :</translation> </message> <message> <source>&Tool chain:</source> - <translation type="obsolete">Chaîne d'ou&tils&nbsp;:</translation> + <translation type="obsolete">Chaîne d'ou&tils :</translation> </message> <message> <source>Sysroot</source> @@ -72,11 +72,11 @@ </message> <message> <source>Override &Start script:</source> - <translation type="obsolete">Surcharger le &script de démarrage&nbsp;:</translation> + <translation type="obsolete">Surcharger le &script de démarrage :</translation> </message> <message> <source>Sys&root:</source> - <translation type="obsolete">&Racine système&nbsp;: </translation> + <translation type="obsolete">&Racine système : </translation> </message> </context> <context> @@ -87,11 +87,11 @@ </message> <message> <source>Attach to Process ID:</source> - <translation type="obsolete">Attacher au processus de PID&nbsp;:</translation> + <translation type="obsolete">Attacher au processus de PID :</translation> </message> <message> <source>Filter:</source> - <translation type="obsolete">Filtre&nbsp;:</translation> + <translation type="obsolete">Filtre :</translation> </message> <message> <source>Clear</source> @@ -99,15 +99,15 @@ </message> <message> <source>Attach to process ID:</source> - <translation type="obsolete">Attacher au processus de PID&nbsp;:</translation> + <translation type="obsolete">Attacher au processus de PID :</translation> </message> <message> <source>Attach to &process ID:</source> - <translation type="obsolete">Attacher au &processus de PID&nbsp;:</translation> + <translation type="obsolete">Attacher au &processus de PID :</translation> </message> <message> <source>&Tool chain:</source> - <translation type="obsolete">Chaîne d'ou&tils&nbsp;:</translation> + <translation type="obsolete">Chaîne d'ou&tils :</translation> </message> </context> <context> @@ -118,19 +118,19 @@ </message> <message> <source>Host and port:</source> - <translation type="obsolete">Hôte et port&nbsp;:</translation> + <translation type="obsolete">Hôte et port :</translation> </message> <message> <source>Architecture:</source> - <translation type="obsolete">Architecture&nbsp;:</translation> + <translation type="obsolete">Architecture :</translation> </message> <message> <source>Use server start script:</source> - <translation type="obsolete">Utiliser le script de démarrage du serveur&nbsp;:</translation> + <translation type="obsolete">Utiliser le script de démarrage du serveur :</translation> </message> <message> <source>Server start script:</source> - <translation type="obsolete">Script de démarrage du serveur&nbsp;:</translation> + <translation type="obsolete">Script de démarrage du serveur :</translation> </message> </context> <context> @@ -152,11 +152,11 @@ </message> <message> <source>Bookmark:</source> - <translation>Signet&nbsp;:</translation> + <translation>Signet :</translation> </message> <message> <source>Add in Folder:</source> - <translation type="obsolete">Ajouter dans le dossier&nbsp;:</translation> + <translation type="obsolete">Ajouter dans le dossier :</translation> </message> <message> <source>+</source> @@ -180,7 +180,7 @@ </message> <message> <source>Add in folder:</source> - <translation>Ajouter dans le dossier&nbsp;:</translation> + <translation>Ajouter dans le dossier :</translation> </message> </context> <context> @@ -199,11 +199,11 @@ </message> <message> <source>Deleting a folder also removes its content.<br>Do you want to continue?</source> - <translation>Supprimer un dossier supprime également ce qu'il contient.<br>Êtes vous sûr de vouloir continuer&nbsp;?</translation> + <translation>Supprimer un dossier supprime également ce qu'il contient.<br>Êtes vous sûr de vouloir continuer ?</translation> </message> <message> <source>You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue?</source> - <translation type="obsolete">Vous allez supprimer un dossier et tout ce qu'il contient.<br>Êtes vous sûr de vouloir continuer&nbsp;?</translation> + <translation type="obsolete">Vous allez supprimer un dossier et tout ce qu'il contient.<br>Êtes vous sûr de vouloir continuer ?</translation> </message> <message> <source>New Folder</source> @@ -242,7 +242,7 @@ </message> <message> <source>Filter:</source> - <translation type="obsolete">Filtre&nbsp;:</translation> + <translation type="obsolete">Filtre :</translation> </message> <message> <source>Add</source> @@ -285,7 +285,7 @@ </message> <message> <source>Are you sure you want to remove all bookmarks from all files in the current session?</source> - <translation>Êtes-vous sûr de vouloir supprimer tous les signets de tous les fichiers de la session en cours&nbsp;?</translation> + <translation>Êtes-vous sûr de vouloir supprimer tous les signets de tous les fichiers de la session en cours ?</translation> </message> <message> <source>Do not &ask again.</source> @@ -379,34 +379,34 @@ </message> <message> <source>Function to break on:</source> - <translation type="obsolete">Fonction à interrompre&nbsp;:</translation> + <translation type="obsolete">Fonction à interrompre :</translation> </message> </context> <context> <name>BreakCondition</name> <message> <source>Condition:</source> - <translation type="obsolete">Condition&nbsp;:</translation> + <translation type="obsolete">Condition :</translation> </message> <message> <source>Ignore count:</source> - <translation type="obsolete">Nombre de passages à ignorer&nbsp;:</translation> + <translation type="obsolete">Nombre de passages à ignorer :</translation> </message> <message> <source>File name:</source> - <translation type="obsolete">Nom du fichier&nbsp;:</translation> + <translation type="obsolete">Nom du fichier :</translation> </message> <message> <source>Line number:</source> - <translation type="obsolete">Numéro de ligne&nbsp;:</translation> + <translation type="obsolete">Numéro de ligne :</translation> </message> <message> <source>Function:</source> - <translation type="obsolete">Fonction&nbsp;:</translation> + <translation type="obsolete">Fonction :</translation> </message> <message> <source>Thread specification:</source> - <translation type="obsolete">Spécification de thread&nbsp;:</translation> + <translation type="obsolete">Spécification de thread :</translation> </message> </context> <context> @@ -441,7 +441,7 @@ </message> <message> <source>New configuration name:</source> - <translation>Nom de la nouvelle configuration&nbsp;:</translation> + <translation>Nom de la nouvelle configuration :</translation> </message> <message> <source>New configuration</source> @@ -449,7 +449,7 @@ </message> <message> <source>New Configuration Name:</source> - <translation type="obsolete">Nom de la nouvelle configuration&nbsp;:</translation> + <translation type="obsolete">Nom de la nouvelle configuration :</translation> </message> </context> <context> @@ -460,7 +460,7 @@ </message> <message> <source>Reconfigure project:</source> - <translation>Reconfigurer le projet&nbsp;:</translation> + <translation>Reconfigurer le projet :</translation> </message> <message> <source>&Change</source> @@ -468,7 +468,7 @@ </message> <message> <source>Build directory:</source> - <translation>Répertoire de compilation&nbsp;:</translation> + <translation>Répertoire de compilation :</translation> </message> <message> <source>CMake</source> @@ -486,7 +486,7 @@ <name>CMakeProjectManager::Internal::CMakeRunConfigurationWidget</name> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Select the working directory</source> @@ -502,11 +502,11 @@ </message> <message> <source>Working Directory:</source> - <translation type="obsolete">Répertoire de travail&nbsp;:</translation> + <translation type="obsolete">Répertoire de travail :</translation> </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Run in Terminal</source> @@ -514,7 +514,7 @@ </message> <message> <source>Debugger:</source> - <translation type="obsolete">Débogueur&nbsp;:</translation> + <translation type="obsolete">Débogueur :</translation> </message> <message> <source>Run Environment</source> @@ -534,7 +534,7 @@ </message> <message> <source>Running executable: <b>%1</b> %2</source> - <translation type="obsolete">Exécution en cours&nbsp;: <b>%1</b> %2</translation> + <translation type="obsolete">Exécution en cours : <b>%1</b> %2</translation> </message> <message> <source>Environment</source> @@ -542,7 +542,7 @@ </message> <message> <source>Base environment for this runconfiguration:</source> - <translation type="obsolete">Environnement de base pour cette configuration d'éxecution&nbsp;:</translation> + <translation type="obsolete">Environnement de base pour cette configuration d'éxecution :</translation> </message> </context> <context> @@ -580,11 +580,11 @@ </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Generator:</source> - <translation>Générateur&nbsp;: </translation> + <translation>Générateur : </translation> </message> <message> <source>Run CMake</source> @@ -596,7 +596,7 @@ </message> <message> <source>The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly</source> - <translatorcomment>toolchain -> chaîne de compilation&nbsp;? terminer ou terminez&nbsp;?</translatorcomment> + <translatorcomment>toolchain -> chaîne de compilation ? terminer ou terminez ?</translatorcomment> <translation type="obsolete">Le répertoire %1 contient déjà un fichier cbp qui est assez récent. Vous pouvez passer des arguments spéciaux ou changer la chaîne de compilation utilisée ici et réexécuter cmake. Vous pouvez aussi terminer l'assistant directement</translation> </message> <message> @@ -709,7 +709,7 @@ </message> <message> <source>Executable:</source> - <translation>Exécutable&nbsp;:</translation> + <translation>Exécutable :</translation> </message> <message> <source>Prefer Ninja generator (CMake 2.8.9 or higher required)</source> @@ -724,11 +724,11 @@ <name>CMakeProjectManager::Internal::MakeStepConfigWidget</name> <message> <source>Additional arguments:</source> - <translation>Arguments supplémentaires&nbsp;:</translation> + <translation>Arguments supplémentaires :</translation> </message> <message> <source>Kits:</source> - <translation type="obsolete">Kits&nbsp;:</translation> + <translation type="obsolete">Kits :</translation> </message> <message> <source><b>No build configuration found on this kit.</b></source> @@ -736,7 +736,7 @@ </message> <message> <source>Targets:</source> - <translation>Cibles&nbsp;:</translation> + <translation>Cibles :</translation> </message> <message> <source>Make</source> @@ -749,7 +749,7 @@ </message> <message> <source><b>Make:</b> %1 %2</source> - <translation type="obsolete"><b>Make&nbsp;: </b>%1 %2</translation> + <translation type="obsolete"><b>Make : </b>%1 %2</translation> </message> <message> <source><b>Unknown Toolchain</b></source> @@ -772,7 +772,7 @@ </message> <message> <source>Build directory:</source> - <translation>Répertoire de compilation&nbsp;:</translation> + <translation>Répertoire de compilation :</translation> </message> <message> <source>Build Location</source> @@ -810,7 +810,7 @@ </message> <message> <source>Path:</source> - <translation type="obsolete">Chemin&nbsp;:</translation> + <translation type="obsolete">Chemin :</translation> </message> <message> <source>Debugger Paths</source> @@ -818,11 +818,11 @@ </message> <message> <source>Symbol paths:</source> - <translation type="obsolete">Chemins des symboles&nbsp;:</translation> + <translation type="obsolete">Chemins des symboles :</translation> </message> <message> <source>Source paths:</source> - <translation type="obsolete">Chemins des sources&nbsp;:</translation> + <translation type="obsolete">Chemins des sources :</translation> </message> <message> <source><html><body><p>Specify the path to the <a href="%1">Debugging Tools for Windows</a> (%2) here.</p><p><b>Note:</b> Restarting Qt Creator is required for these settings to take effect.</p></p></body></html></source> @@ -875,7 +875,7 @@ <name>ChangeSelectionDialog</name> <message> <source>Repository Location:</source> - <translation type="obsolete">Adresse du depôt&nbsp;:</translation> + <translation type="obsolete">Adresse du depôt :</translation> </message> <message> <source>Select</source> @@ -883,11 +883,11 @@ </message> <message> <source>Change:</source> - <translation type="obsolete">Modification&nbsp;:</translation> + <translation type="obsolete">Modification :</translation> </message> <message> <source>Repository location:</source> - <translation type="obsolete">Emplacement du dépôt&nbsp;:</translation> + <translation type="obsolete">Emplacement du dépôt :</translation> </message> </context> <context> @@ -939,7 +939,7 @@ </message> <message> <source>Enter URL:</source> - <translation>Entrer l'URL&nbsp;:</translation> + <translation>Entrer l'URL :</translation> </message> <message> <source>Empty snippet received for "%1".</source> @@ -981,11 +981,11 @@ <message> <source>Paste:</source> <translatorcomment>quelque chose de plus français pour la référence de paste?</translatorcomment> - <translation type="obsolete">Collage&nbsp;:</translation> + <translation type="obsolete">Collage :</translation> </message> <message> <source>Protocol:</source> - <translation type="obsolete">Protocole&nbsp;:</translation> + <translation type="obsolete">Protocole :</translation> </message> <message> <source>Refresh</source> @@ -1008,11 +1008,11 @@ </message> <message> <source>CodePaster Server:</source> - <translation type="obsolete">Serveur CodePaster&nbsp;:</translation> + <translation type="obsolete">Serveur CodePaster :</translation> </message> <message> <source>Username:</source> - <translation type="obsolete">Nom d'utilisateur&nbsp;:</translation> + <translation type="obsolete">Nom d'utilisateur :</translation> </message> <message> <source>Copy Paste URL to clipboard</source> @@ -1028,7 +1028,7 @@ </message> <message> <source>Default Protocol:</source> - <translation type="obsolete">Protocole par défaut&nbsp;:</translation> + <translation type="obsolete">Protocole par défaut :</translation> </message> <message> <source>Pastebin.ca</source> @@ -1052,7 +1052,7 @@ </message> <message> <source>Default protocol:</source> - <translation type="obsolete">Protocole par défaut&nbsp;:</translation> + <translation type="obsolete">Protocole par défaut :</translation> </message> </context> <context> @@ -1085,7 +1085,7 @@ </message> <message> <source>Checking this will enable tooltips for variable values during debugging. Since this can slow down debugging and does not provide reliable information as it does not use scope information, it is switched off by default.</source> - <translatorcomment>shunté le coup de la "scope information"...&nbsp;:/</translatorcomment> + <translatorcomment>shunté le coup de la "scope information"... :/</translatorcomment> <translation type="obsolete">Active les info-bulles sur les variables pendant le débogage. Comme ceci peut ralentir le débogage et ne fournit pas nécessairement des valeurs fiables, cette option est désactivée par défaut.</translation> </message> <message> @@ -1098,7 +1098,7 @@ </message> <message> <source>Maximal stack depth:</source> - <translation type="obsolete">Profondeur maximale de la pile&nbsp;:</translation> + <translation type="obsolete">Profondeur maximale de la pile :</translation> </message> <message> <source><unlimited></source> @@ -1106,7 +1106,7 @@ </message> <message> <source>Show a message box when receiving a signal</source> - <translatorcomment>message box -> message, boîte de message, fenêtre de message&nbsp;?</translatorcomment> + <translatorcomment>message box -> message, boîte de message, fenêtre de message ?</translatorcomment> <translation type="obsolete">Afficher un message à la réception d'un signal</translation> </message> <message> @@ -1171,7 +1171,7 @@ </message> <message> <source>Maximum stack depth:</source> - <translation type="obsolete">Profondeur maximale de la pile&nbsp;:</translation> + <translation type="obsolete">Profondeur maximale de la pile :</translation> </message> </context> <context> @@ -1210,7 +1210,7 @@ </message> <message> <source>&Case-sensitivity:</source> - <translation type="obsolete">Sensibilité à la &casse&nbsp;:</translation> + <translation type="obsolete">Sensibilité à la &casse :</translation> </message> <message> <source>Full</source> @@ -1230,7 +1230,7 @@ </message> <message> <source>Activate completion:</source> - <translation type="obsolete">Activer la complétion&nbsp;:</translation> + <translation type="obsolete">Activer la complétion :</translation> </message> <message> <source>Manually</source> @@ -1288,11 +1288,11 @@ </message> <message> <source>Unable to open %1 for writing: %2</source> - <translation type="obsolete">Impossible d'ouvrir %1 pour écrire&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir %1 pour écrire : %2</translation> </message> <message> <source>Error while writing to %1: %2</source> - <translation type="obsolete">Erreur pendant l'écriture de %1&nbsp;: %2</translation> + <translation type="obsolete">Erreur pendant l'écriture de %1 : %2</translation> </message> <message> <source>File Generation Failure</source> @@ -1337,16 +1337,16 @@ <message> <source>The project directory %1 contains files which cannot be overwritten: %2.</source> - <translation>Le répertoire du projet %1 contient des fichiers qui ne peuvent être écrasés&nbsp;: + <translation>Le répertoire du projet %1 contient des fichiers qui ne peuvent être écrasés : %2.</translation> </message> <message> <source>The following files already exist in the directory %1: %2. Would you like to overwrite them?</source> - <translation type="obsolete">Les fichiers suivants existent déjà dans le répertoire %1&nbsp;: + <translation type="obsolete">Les fichiers suivants existent déjà dans le répertoire %1 : %2. -Voulez vous les écraser&nbsp;?</translation> +Voulez vous les écraser ?</translation> </message> </context> <context> @@ -1685,7 +1685,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Failed!</source> - <translation type="obsolete">Échec&nbsp;!</translation> + <translation type="obsolete">Échec !</translation> </message> <message> <source>Could not open the file for editing with SCC.</source> @@ -1701,7 +1701,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source><b>Warning:</b> This file was not opened in %1 yet.</source> - <translation><b>Attention&nbsp;:</b> le fichier n'est pas encore ouvert dans %1. </translation> + <translation><b>Attention :</b> le fichier n'est pas encore ouvert dans %1. </translation> </message> <message> <source>Open</source> @@ -1756,7 +1756,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Can't save changes to '%1'. Do you want to continue and loose your changes?</source> - <translation type="obsolete">Impossible de sauvegarder les modifications dans "%1". Voulez vous continuer et perdre vos modifications&nbsp;?</translation> + <translation type="obsolete">Impossible de sauvegarder les modifications dans "%1". Voulez vous continuer et perdre vos modifications ?</translation> </message> <message> <source>Cannot save file</source> @@ -1764,7 +1764,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Cannot save changes to '%1'. Do you want to continue and lose your changes?</source> - <translation type="obsolete">Impossible d'enregistrer les modifications dans "%1". Voulez-vous continuer et perdre vos modifications&nbsp;?</translation> + <translation type="obsolete">Impossible d'enregistrer les modifications dans "%1". Voulez-vous continuer et perdre vos modifications ?</translation> </message> <message> <source>File Error</source> @@ -1772,11 +1772,11 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Overwrite?</source> - <translation type="obsolete">Écraser&nbsp;?</translation> + <translation type="obsolete">Écraser ?</translation> </message> <message> <source>An item named '%1' already exists at this location. Do you want to overwrite it?</source> - <translation type="obsolete">Un élément nommé "%1' existe déjà . Voulez-vous l"écraser&nbsp;?</translation> + <translation type="obsolete">Un élément nommé "%1' existe déjà . Voulez-vous l"écraser ?</translation> </message> <message> <source>Save File As</source> @@ -1927,7 +1927,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>User &interface color:</source> - <translation type="obsolete">Couleur de l'&interface utilisateur&nbsp;:</translation> + <translation type="obsolete">Couleur de l'&interface utilisateur :</translation> </message> <message> <source>Reset to default</source> @@ -1939,11 +1939,11 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Terminal:</source> - <translation>Terminal&nbsp;:</translation> + <translation>Terminal :</translation> </message> <message> <source>External editor:</source> - <translation type="obsolete">Éditeur externe&nbsp;:</translation> + <translation type="obsolete">Éditeur externe :</translation> </message> <message> <source>?</source> @@ -1975,7 +1975,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>When files are externally modified:</source> - <translation>Quand des fichiers ont été modifiés en dehors de Qt Creator&nbsp;:</translation> + <translation>Quand des fichiers ont été modifiés en dehors de Qt Creator :</translation> </message> <message> <source>Always ask</source> @@ -1995,15 +1995,15 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Color:</source> - <translation>Couleur&nbsp;:</translation> + <translation>Couleur :</translation> </message> <message> <source>Default file encoding: </source> - <translation type="obsolete">Encodage de fichier par défaut&nbsp;:</translation> + <translation type="obsolete">Encodage de fichier par défaut :</translation> </message> <message> <source>Language:</source> - <translation>Langue&nbsp;:</translation> + <translation>Langue :</translation> </message> <message> <source>System</source> @@ -2011,7 +2011,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>External file browser:</source> - <translation>Navigateur de fichiers externe&nbsp;:</translation> + <translation>Navigateur de fichiers externe :</translation> </message> <message> <source>Always Ask</source> @@ -2054,7 +2054,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Interval:</source> - <translation>Intervale&nbsp;:</translation> + <translation>Intervale :</translation> </message> <message> <source>min</source> @@ -2368,7 +2368,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Choose a template:</source> - <translation>Choisir un modèle&nbsp;:</translation> + <translation>Choisir un modèle :</translation> </message> <message> <source>&Choose...</source> @@ -2446,7 +2446,7 @@ Voulez vous les écraser&nbsp;?</translation> <name>Core::Internal::OpenWithDialog</name> <message> <source>Open file '%1' with:</source> - <translation>Ouvrir le fichier %1 avec&nbsp;:</translation> + <translation>Ouvrir le fichier %1 avec :</translation> </message> <message> <source>Open File With...</source> @@ -2454,7 +2454,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Open file extension with:</source> - <translation>Ouvrir ce type d'extension avec&nbsp;:</translation> + <translation>Ouvrir ce type d'extension avec :</translation> </message> </context> <context> @@ -2528,7 +2528,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Plugin Details of %1</source> - <translatorcomment>Détail sur le plug-in %1&nbsp;?</translatorcomment> + <translatorcomment>Détail sur le plug-in %1 ?</translatorcomment> <translation>Détails du plug-in %1</translation> </message> <message> @@ -2571,7 +2571,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>The following files have unsaved changes:</source> - <translation>Les fichiers suivants contiennent des modifications non enregistrées&nbsp;:</translation> + <translation>Les fichiers suivants contiennent des modifications non enregistrées :</translation> </message> <message> <source>Automatically save all files before building</source> @@ -2594,7 +2594,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Key sequence:</source> - <translation>Combinaison de touches&nbsp;:</translation> + <translation>Combinaison de touches :</translation> </message> <message> <source>Shortcut</source> @@ -2654,7 +2654,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source><h3>Qt Creator %1</h3>Based on Qt %2 (%3 bit)<br/><br/>Built on %4 at %5<br /><br/>%8<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/></source> - <translatorcomment>%4 == __DATE__ et %5 ==__TIME__. Pour les formulations légales, dans le doute, mieux vaut laisser l'anglais... (legal m'a l'air correct, enfin chuis pas avocat&nbsp;!)</translatorcomment> + <translatorcomment>%4 == __DATE__ et %5 ==__TIME__. Pour les formulations légales, dans le doute, mieux vaut laisser l'anglais... (legal m'a l'air correct, enfin chuis pas avocat !)</translatorcomment> <translation type="obsolete"><h3>Qt Creator %1</h3>Basé sur Qt %2 (%3 bit)<br/><br/>Compilé le %4 à %5<br /><br/>%8<br/>Copyright 2008-%6 %7. Tous droits réservés.<br/><br/>Ce programme est fourni « EN L'ÉTAT », SANS GARANTIE D'AUCUNE SORTE, INCLUANT, SANS S'Y LIMITER, LES GARANTIES D'ABSENCE DE DÉFAUT, DE QUALITÉ MARCHANDE, D'ADÉQUATION À UN USAGE PARTICULIER.<br/></translation> </message> </context> @@ -2678,7 +2678,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Did You Know?</source> - <translation type="obsolete">Le saviez-vous&nbsp;?</translation> + <translation type="obsolete">Le saviez-vous ?</translation> </message> <message> <source>News From the Qt Labs</source> @@ -2814,7 +2814,7 @@ Voulez vous les écraser&nbsp;?</translation> <message> <source>Exception at line %1: %2 %3</source> - <translation>Exception à la ligne %1&nbsp;: %2 + <translation>Exception à la ligne %1 : %2 %3</translation> </message> <message> @@ -2871,7 +2871,7 @@ Voulez vous les écraser&nbsp;?</translation> <name>Utils::ConsoleProcess</name> <message> <source>Cannot set up communication channel: %1</source> - <translation>Impossible d'établir le canal de communication&nbsp;: %1</translation> + <translation>Impossible d'établir le canal de communication : %1</translation> </message> <message> <source>Press <RETURN> to close this window...</source> @@ -2879,15 +2879,15 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Cannot create temporary file: %1</source> - <translation>Impossible de créer un fichier temporaire&nbsp;: %1</translation> + <translation>Impossible de créer un fichier temporaire : %1</translation> </message> <message> <source>Cannot write temporary file. Disk full?</source> - <translation>Impossible d'écrire le fichier temporaire. Disque plein&nbsp;? </translation> + <translation>Impossible d'écrire le fichier temporaire. Disque plein ? </translation> </message> <message> <source>Cannot create temporary directory '%1': %2</source> - <translation>Impossible de créer un dossier temporaire "%1"&nbsp;: %2</translation> + <translation>Impossible de créer un dossier temporaire "%1" : %2</translation> </message> <message> <source>Unexpected output from helper program (%1).</source> @@ -2899,7 +2899,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Cannot change to working directory '%1': %2</source> - <translation>Impossible de changer le répertoire de travail "%1"&nbsp;: %2</translation> + <translation>Impossible de changer le répertoire de travail "%1" : %2</translation> </message> <message> <source>Cannot execute '%1': %2</source> @@ -2935,15 +2935,15 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>The process '%1' could not be started: %2</source> - <translation>Le processus "%1" ne peut pas être démarré&nbsp;: %2</translation> + <translation>Le processus "%1" ne peut pas être démarré : %2</translation> </message> <message> <source>Cannot obtain a handle to the inferior: %1</source> - <translation>Impossible d'obtenir le descripteur du processus&nbsp;: %1</translation> + <translation>Impossible d'obtenir le descripteur du processus : %1</translation> </message> <message> <source>Cannot obtain exit status from inferior: %1</source> - <translation>Impossible d'obtenir la valeur de retour du processus&nbsp;: %1</translation> + <translation>Impossible d'obtenir la valeur de retour du processus : %1</translation> </message> </context> <context> @@ -2954,7 +2954,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>The name must not contain any of the characters '%1'.</source> - <translation type="obsolete">Le nom ne peut pas contenir un des caractères suivant&nbsp;: "%1".</translation> + <translation type="obsolete">Le nom ne peut pas contenir un des caractères suivant : "%1".</translation> </message> <message> <source>The name must not contain '%1'.</source> @@ -2986,11 +2986,11 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>File extension %1 is required:</source> - <translation>L'extension de fichier %1 est nécessaire&nbsp;: </translation> + <translation>L'extension de fichier %1 est nécessaire : </translation> </message> <message> <source>File extensions %1 are required:</source> - <translation>Les extensions de fichier %1 sont nécessaires&nbsp;: </translation> + <translation>Les extensions de fichier %1 sont nécessaires : </translation> </message> </context> <context> @@ -2998,22 +2998,22 @@ Voulez vous les écraser&nbsp;?</translation> <message numerus="yes"> <source>%1: canceled. %n occurrences found in %2 files.</source> <translation> - <numerusform>%1&nbsp;: annulé. %n entrée trouvée dans %2 fichiers.</numerusform> - <numerusform>%1&nbsp;: annulé. %n entrées trouvées dans %2 fichiers.</numerusform> + <numerusform>%1 : annulé. %n entrée trouvée dans %2 fichiers.</numerusform> + <numerusform>%1 : annulé. %n entrées trouvées dans %2 fichiers.</numerusform> </translation> </message> <message numerus="yes"> <source>%1: %n occurrences found in %2 files.</source> <translation> - <numerusform>%1&nbsp;: %n occurrence trouvée dans %2 fichiers.</numerusform> - <numerusform>%1&nbsp;: %n occurrences trouvées dans %2 fichiers.</numerusform> + <numerusform>%1 : %n occurrence trouvée dans %2 fichiers.</numerusform> + <numerusform>%1 : %n occurrences trouvées dans %2 fichiers.</numerusform> </translation> </message> <message numerus="yes"> <source>%1: %n occurrences found in %2 of %3 files.</source> <translation> - <numerusform>%1&nbsp;: %n occurence trouvé dans %2 de %3 fichiers.</numerusform> - <numerusform>%1&nbsp;: %n occurences trouvés dans %2 de %3 fichiers.</numerusform> + <numerusform>%1 : %n occurence trouvé dans %2 de %3 fichiers.</numerusform> + <numerusform>%1 : %n occurences trouvés dans %2 de %3 fichiers.</numerusform> </translation> </message> </context> @@ -3021,31 +3021,31 @@ Voulez vous les écraser&nbsp;?</translation> <name>Utils::NewClassWidget</name> <message> <source>Class name:</source> - <translation type="obsolete">Nom de la classe&nbsp;:</translation> + <translation type="obsolete">Nom de la classe :</translation> </message> <message> <source>Base class:</source> - <translation type="obsolete">Classe parent&nbsp;:</translation> + <translation type="obsolete">Classe parent :</translation> </message> <message> <source>Header file:</source> - <translation type="obsolete">Fichier d'en-tête&nbsp;:</translation> + <translation type="obsolete">Fichier d'en-tête :</translation> </message> <message> <source>Source file:</source> - <translation type="obsolete">Fichier source&nbsp;:</translation> + <translation type="obsolete">Fichier source :</translation> </message> <message> <source>Generate form:</source> - <translation type="obsolete">Générer l'interface graphique&nbsp;:</translation> + <translation type="obsolete">Générer l'interface graphique :</translation> </message> <message> <source>Form file:</source> - <translation type="obsolete">Fichier d'interface&nbsp;:</translation> + <translation type="obsolete">Fichier d'interface :</translation> </message> <message> <source>Path:</source> - <translation type="obsolete">Chemin&nbsp;:</translation> + <translation type="obsolete">Chemin :</translation> </message> <message> <source>Invalid base class name</source> @@ -3053,15 +3053,15 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Invalid header file name: '%1'</source> - <translation>Nom du fichier d'en-tête invalide&nbsp;: "%1"</translation> + <translation>Nom du fichier d'en-tête invalide : "%1"</translation> </message> <message> <source>Invalid source file name: '%1'</source> - <translation>Nom du fichier source invalide&nbsp;: "%1"</translation> + <translation>Nom du fichier source invalide : "%1"</translation> </message> <message> <source>Invalid form file name: '%1'</source> - <translation>Nom du fichier d'interface invalide&nbsp;: "%1"</translation> + <translation>Nom du fichier d'interface invalide : "%1"</translation> </message> <message> <source>Inherits QObject</source> @@ -3069,7 +3069,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Type information:</source> - <translation type="obsolete">Information de type&nbsp;:</translation> + <translation type="obsolete">Information de type :</translation> </message> <message> <source>None</source> @@ -3081,15 +3081,15 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>&Class name:</source> - <translation>Nom de la &classe&nbsp;:</translation> + <translation>Nom de la &classe :</translation> </message> <message> <source>&Base class:</source> - <translation>Classe &parent&nbsp;:</translation> + <translation>Classe &parent :</translation> </message> <message> <source>&Type information:</source> - <translation>Information de &type&nbsp;:</translation> + <translation>Information de &type :</translation> </message> <message> <source>Based on QSharedData</source> @@ -3098,23 +3098,23 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>&Header file:</source> - <translation>Fichier d'&en-tête&nbsp;:</translation> + <translation>Fichier d'&en-tête :</translation> </message> <message> <source>&Source file:</source> - <translation>Fichier &source&nbsp;:</translation> + <translation>Fichier &source :</translation> </message> <message> <source>&Generate form:</source> - <translation>&Générer l'interface graphique&nbsp;:</translation> + <translation>&Générer l'interface graphique :</translation> </message> <message> <source>&Form file:</source> - <translation>&Fichier d'interface&nbsp;:</translation> + <translation>&Fichier d'interface :</translation> </message> <message> <source>&Path:</source> - <translation>Che&min&nbsp;:</translation> + <translation>Che&min :</translation> </message> <message> <source>Inherits QDeclarativeItem</source> @@ -3202,7 +3202,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Full path: <b>%1</b></source> - <translation>Chemin complet&nbsp;: <b>%1</b></translation> + <translation>Chemin complet : <b>%1</b></translation> </message> <message> <source>The path '%1' is not a directory.</source> @@ -3214,7 +3214,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> </context> <context> @@ -3252,11 +3252,11 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>Create in:</source> - <translation>Créer dans&nbsp;:</translation> + <translation>Créer dans :</translation> </message> <message> <source><Enter_Name></source> @@ -3280,7 +3280,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Project:</source> - <translation>Projet&nbsp;:</translation> + <translation>Projet :</translation> </message> </context> <context> @@ -3362,11 +3362,11 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> <message> <source>Choose the Location</source> @@ -3381,23 +3381,23 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>The unsaved file <i>%1</i> has changed outside Qt Creator. Do you want to reload it and discard your changes?</source> - <translation>Le fichier <i>%1</i> n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements&nbsp;?</translation> + <translation>Le fichier <i>%1</i> n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements ?</translation> </message> <message> <source>The unsaved file <i>%1</i> has been changed outside Qt Creator. Do you want to reload it and discard your changes?</source> - <translation>Le fichier <i>%1</i> n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements&nbsp;?</translation> + <translation>Le fichier <i>%1</i> n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements ?</translation> </message> <message> <source>The file <i>%1</i> has changed outside Qt Creator. Do you want to reload it?</source> - <translation>Le fichier <i>%1</i> a été modifié en dehors de Qt Creator. Voulez-vous le charger à nouveau&nbsp;?</translation> + <translation>Le fichier <i>%1</i> a été modifié en dehors de Qt Creator. Voulez-vous le charger à nouveau ?</translation> </message> <message> <source>The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes?</source> - <translation type="obsolete">Le fichier %1 n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements&nbsp;?</translation> + <translation type="obsolete">Le fichier %1 n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements ?</translation> </message> <message> <source>The file %1 has changed outside Qt Creator. Do you want to reload it?</source> - <translation type="obsolete">Le fichier %1 a été modifié en dehors de Qt Creator. Voulez-vous le charger à nouveau&nbsp;?</translation> + <translation type="obsolete">Le fichier %1 a été modifié en dehors de Qt Creator. Voulez-vous le charger à nouveau ?</translation> </message> </context> <context> @@ -3582,11 +3582,11 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Header suffix:</source> - <translation type="obsolete">Suffixe des fichier d'en-tête&nbsp;:</translation> + <translation type="obsolete">Suffixe des fichier d'en-tête :</translation> </message> <message> <source>Source suffix:</source> - <translation type="obsolete">Suffixe des fichiers source&nbsp;:</translation> + <translation type="obsolete">Suffixe des fichiers source :</translation> </message> <message> <source>Lower case file names</source> @@ -3594,25 +3594,25 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>License Template:</source> - <translation type="obsolete">Modèle de licence&nbsp;:</translation> + <translation type="obsolete">Modèle de licence :</translation> </message> <message> <source>License template:</source> - <translation type="obsolete">Modèle de licence&nbsp;:</translation> + <translation type="obsolete">Modèle de licence :</translation> </message> </context> <context> <name>CppPreprocessor</name> <message> <source>%1: No such file or directory</source> - <translation>%1&nbsp;: aucun fichier ou répertoire de ce type</translation> + <translation>%1 : aucun fichier ou répertoire de ce type</translation> </message> </context> <context> <name>CppTools::Internal::CppModelManager</name> <message> <source>Scanning</source> - <translatorcomment>Balayage&nbsp;? (Numérisation ça fait franchement scanner)</translatorcomment> + <translatorcomment>Balayage ? (Numérisation ça fait franchement scanner)</translatorcomment> <translation type="obsolete">Analyse</translation> </message> <message> @@ -3668,7 +3668,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>&Case-sensitivity:</source> - <translation>Sensibilité à la &casse&nbsp;:</translation> + <translation>Sensibilité à la &casse :</translation> </message> <message> <source>Full</source> @@ -3684,7 +3684,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Activate completion:</source> - <translation>Activer la complétion&nbsp;:</translation> + <translation>Activer la complétion :</translation> </message> <message> <source>Manually</source> @@ -3740,7 +3740,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Generate a <i>brief</i> command with an initial description for the corresponding declaration</source> - <translatorcomment>on garde vraiment le mot initiale&nbsp;?</translatorcomment> + <translatorcomment>on garde vraiment le mot initiale ?</translatorcomment> <translation>Générer une commande <i>brief</i> avec une description initiale pour la déclaration correspondante</translation> </message> <message> @@ -3798,8 +3798,8 @@ Voulez vous les écraser&nbsp;?</translation> </source> <translation>/************************************************************************** ** Modèle de licence Qt Creator -** Mots-clés spéciaux&nbsp;: %USER% %DATE% %YEAR% -** Variables d'environnement&nbsp;: %$VARIABLE% +** Mots-clés spéciaux : %USER% %DATE% %YEAR% +** Variables d'environnement : %$VARIABLE% ** Pour échaper un caractère pourcentage, utilisez '%%'. **************************************************************************/</translation> </message> @@ -3829,7 +3829,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Cannot write to %1: %2</source> - <translation type="obsolete">Impossible d'écrire %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'écrire %1 : %2</translation> </message> </context> <context> @@ -3948,7 +3948,7 @@ Voulez vous les écraser&nbsp;?</translation> <message> <source>Starting executable failed: </source> - <translation type="obsolete">Échec du lancement de l'exécutable&nbsp;: + <translation type="obsolete">Échec du lancement de l'exécutable : </translation> </message> <message> @@ -3961,7 +3961,7 @@ Voulez vous les écraser&nbsp;?</translation> </message> <message> <source>Try to specify the binary using the <i>Debug->Start Debugging->Attach to Core</i> dialog.</source> - <translatorcomment>core&nbsp;? pas sur des menus</translatorcomment> + <translatorcomment>core ? pas sur des menus</translatorcomment> <translation type="obsolete">Essayez de spécifier le binaire en utilisant la boîte de dialogue <i>Débogage > Démarrer le débogage > Attacher au core</i>.</translation> </message> <message> @@ -3995,12 +3995,12 @@ Voulez vous les écraser&nbsp;?</translation> <message> <source>Attach to core "%1" failed: </source> - <translation type="obsolete">Échec de liaison au core "%1"&nbsp;: + <translation type="obsolete">Échec de liaison au core "%1" : </translation> </message> <message> <source>The upload process failed to start. Shell missing?</source> - <translation type="obsolete">Le processus d'upload n'a pas pu démarrer. Le shell serait-il manquant&nbsp;?</translation> + <translation type="obsolete">Le processus d'upload n'a pas pu démarrer. Le shell serait-il manquant ?</translation> </message> <message> <source>The upload process crashed some time after starting successfully.</source> @@ -4033,7 +4033,7 @@ Voulez vous les écraser&nbsp;?</translation> <message> <source>Reading debug information failed: </source> - <translation type="obsolete">La lecture des informations de débogage a échoué&nbsp;: </translation> + <translation type="obsolete">La lecture des informations de débogage a échoué : </translation> </message> <message> <source>Debugger Error</source> @@ -4070,7 +4070,7 @@ Check the settings of /proc/sys/kernel/yama/ptrace_scope For more details, see /etc/sysctl.d/10-ptrace.conf </source> - <translation>ptrace&nbsp;: opération non permise. + <translation>ptrace : opération non permise. Impossible de s'attacher au processus. Vérifier qu'aucun autre débogueur ne suit ce processus. Vérifiez les paramètres de @@ -4087,7 +4087,7 @@ of the target process, check the settings of /proc/sys/kernel/yama/ptrace_scope For more details, see /etc/sysctl.d/10-ptrace.conf </source> - <translation>ptrace&nbsp;: opération non permise. + <translation>ptrace : opération non permise. Impossible de s'attacher au processus. Vérifier qu'aucun autre débogueur ne suit ce processus. Si votre uid correspond au uid @@ -4103,7 +4103,7 @@ Could not attach to the process. Check the settings of /proc/sys/kernel/yama/ptrace_scope For more details, see/etc/sysctl.d/10-ptrace.conf </source> - <translation type="obsolete">ptrace&nbsp;: opération non permise. + <translation type="obsolete">ptrace : opération non permise. Impossible de s'attacher à ce processus. Vérifiez les paramètres de /proc/sys/kernel/yama/ptrace_scope @@ -4117,7 +4117,7 @@ of the target process, check the settings of /proc/sys/kernel/yama/ptrace_scope For more details, see/etc/sysctl.d/10-ptrace.conf </source> - <translation type="obsolete">ptrace&nbsp;: opération non permise. + <translation type="obsolete">ptrace : opération non permise. Impossible de s'attacher à ce processus. Si votre uid correspond au uid du processus cible, vérifiez les paramètres de @@ -4127,8 +4127,8 @@ Pour plus de détails, voir /etc/sysctl.d/10-ptrace.conf</translation> <message numerus="yes"> <source>%n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3</source> <translation> - <numerusform>%n type connu, version de Qt&nbsp;: %1, espace de noms Qt&nbsp;: %2, version du collecteur&nbsp;: %3</numerusform> - <numerusform>%n types connus, version de Qt&nbsp;: %1, espace de noms Qt&nbsp;: %2, version du collecteur&nbsp;: %3</numerusform> + <numerusform>%n type connu, version de Qt : %1, espace de noms Qt : %2, version du collecteur : %3</numerusform> + <numerusform>%n types connus, version de Qt : %1, espace de noms Qt : %2, version du collecteur : %3</numerusform> </translation> </message> <message> @@ -4148,7 +4148,7 @@ Pour plus de détails, voir /etc/sysctl.d/10-ptrace.conf</translation> </message> <message> <source>Use local core file:</source> - <translation>Utiliser un fichier core local&nbsp;:</translation> + <translation>Utiliser un fichier core local :</translation> </message> <message> <source>Select Executable</source> @@ -4156,11 +4156,11 @@ Pour plus de détails, voir /etc/sysctl.d/10-ptrace.conf</translation> </message> <message> <source>Kit:</source> - <translation>Kit&nbsp;:</translation> + <translation>Kit :</translation> </message> <message> <source>Core file:</source> - <translation>Fichier core&nbsp;:</translation> + <translation>Fichier core :</translation> </message> <message> <source>Select Remote Core File</source> @@ -4172,7 +4172,7 @@ Pour plus de détails, voir /etc/sysctl.d/10-ptrace.conf</translation> </message> <message> <source>Select Sysroot</source> - <translatorcomment>ou racine système&nbsp;? quel est le contexte&nbsp;?</translatorcomment> + <translatorcomment>ou racine système ? quel est le contexte ?</translatorcomment> <translation type="obsolete">Sélectionner la racine système</translation> </message> <message> @@ -4185,23 +4185,23 @@ Pour plus de détails, voir /etc/sysctl.d/10-ptrace.conf</translation> </message> <message> <source>&Executable:</source> - <translation>&Exécutable&nbsp;:</translation> + <translation>&Exécutable :</translation> </message> <message> <source>&Core file:</source> - <translation type="obsolete">Fichier &core&nbsp;:</translation> + <translation type="obsolete">Fichier &core :</translation> </message> <message> <source>&Tool chain:</source> - <translation type="obsolete">Chaîne de &compilation&nbsp;:</translation> + <translation type="obsolete">Chaîne de &compilation :</translation> </message> <message> <source>Sys&root:</source> - <translation type="obsolete">&Racine système&nbsp;: </translation> + <translation type="obsolete">&Racine système : </translation> </message> <message> <source>Override &start script:</source> - <translation>Surcharger le &script de démarrage&nbsp;:</translation> + <translation>Surcharger le &script de démarrage :</translation> </message> </context> <context> @@ -4238,11 +4238,11 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Attach to &process ID:</source> - <translation type="obsolete">Attacher au &processus de PID&nbsp;:</translation> + <translation type="obsolete">Attacher au &processus de PID :</translation> </message> <message> <source>&Tool chain:</source> - <translation type="obsolete">Chaîne de &compilation&nbsp;:</translation> + <translation type="obsolete">Chaîne de &compilation :</translation> </message> </context> <context> @@ -4257,11 +4257,11 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Enter an address:</source> - <translation>Entrer une adresse&nbsp;:</translation> + <translation>Entrer une adresse :</translation> </message> <message> <source>Enter an address: </source> - <translation>Entrer une adresse&nbsp;:</translation> + <translation>Entrer une adresse :</translation> </message> </context> <context> @@ -4276,20 +4276,20 @@ Qt Creator ne peut pas s'y attacher. </translation> <message> <source>Marker File:</source> <translatorcomment>Alternative "Fichier ayant le marqueur"</translatorcomment> - <translation>Fichier marqué&nbsp;:</translation> + <translation>Fichier marqué :</translation> </message> <message> <source>Marker Line:</source> <translatorcomment>idem</translatorcomment> - <translation>Ligne marquée&nbsp;:</translation> + <translation>Ligne marquée :</translation> </message> <message> <source>Breakpoint Number:</source> - <translation>Numéro du point d'arrêt&nbsp;:</translation> + <translation>Numéro du point d'arrêt :</translation> </message> <message> <source>Breakpoint Address:</source> - <translation>Adresse du point d'arrêt&nbsp;:</translation> + <translation>Adresse du point d'arrêt :</translation> </message> <message> <source>Property</source> @@ -4297,7 +4297,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Breakpoint Type:</source> - <translation>Type de point d'arrêt&nbsp;: </translation> + <translation>Type de point d'arrêt : </translation> </message> <message> <source>Breakpoint</source> @@ -4313,7 +4313,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>State:</source> - <translation>État&nbsp;:</translation> + <translation>État :</translation> </message> <message> <source>Requested</source> @@ -4325,15 +4325,15 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Internal Number:</source> - <translation>Numéro interne&nbsp;:</translation> + <translation>Numéro interne :</translation> </message> <message> <source>File Name:</source> - <translation>Nom du fichier&nbsp;:</translation> + <translation>Nom du fichier :</translation> </message> <message> <source>Function Name:</source> - <translation>Nom de la fonction&nbsp;:</translation> + <translation>Nom de la fonction :</translation> </message> <message> <source>Breakpoint on QML Signal Emit</source> @@ -4349,7 +4349,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Enabled</source> - <translatorcomment>ou activé&nbsp;? modifier en conséquence disabled plus haut. </translatorcomment> + <translatorcomment>ou activé ? modifier en conséquence disabled plus haut. </translatorcomment> <translation>Activé</translation> </message> <message> @@ -4362,47 +4362,47 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Engine:</source> - <translation>Moteur&nbsp;: </translation> + <translation>Moteur : </translation> </message> <message> <source>Extra Information:</source> - <translation type="obsolete">Informations supplémentaires&nbsp;: </translation> + <translation type="obsolete">Informations supplémentaires : </translation> </message> <message> <source>Line Number:</source> - <translation>Numéro de ligne&nbsp;:</translation> + <translation>Numéro de ligne :</translation> </message> <message> <source>Corrected Line Number:</source> - <translation>Numéro de la ligne corrigée&nbsp;:</translation> + <translation>Numéro de la ligne corrigée :</translation> </message> <message> <source>Module:</source> - <translation>Module&nbsp;: </translation> + <translation>Module : </translation> </message> <message> <source>Multiple Addresses:</source> - <translation>Adresses multiples&nbsp;: </translation> + <translation>Adresses multiples : </translation> </message> <message> <source>Command:</source> - <translation>Commande&nbsp;:</translation> + <translation>Commande :</translation> </message> <message> <source>Message:</source> - <translation>Message&nbsp;:</translation> + <translation>Message :</translation> </message> <message> <source>Condition:</source> - <translation>Condition&nbsp;:</translation> + <translation>Condition :</translation> </message> <message> <source>Ignore Count:</source> - <translation>Nombre de passages à ignorer&nbsp;:</translation> + <translation>Nombre de passages à ignorer :</translation> </message> <message> <source>Thread Specification:</source> - <translation>Spécification de thread&nbsp;:</translation> + <translation>Spécification de thread :</translation> </message> <message> <source>Number</source> @@ -4702,7 +4702,7 @@ Qt Creator ne peut pas s'y attacher. </translation> <message> <source>The function "%1()" failed: %2</source> <extracomment>Function call failed</extracomment> - <translation type="obsolete">La fonction "%1()" a échoué&nbsp;: %2</translation> + <translation type="obsolete">La fonction "%1()" a échoué : %2</translation> </message> <message> <source>Unable to resolve '%1' in the debugger engine library '%2'</source> @@ -4710,7 +4710,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Version: %1</source> - <translation type="obsolete">Version&nbsp;: %1</translation> + <translation type="obsolete">Version : %1</translation> </message> <message> <source><html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html></source> @@ -4730,8 +4730,8 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Attaching to core files is not supported!</source> - <translatorcomment>A noun could be better instead of Attacher ↠attachement&nbsp;?</translatorcomment> - <translation type="obsolete">Attacher le débogueur à un fichier core n'est pas supporté&nbsp;!</translation> + <translatorcomment>A noun could be better instead of Attacher ↠attachement ?</translatorcomment> + <translation type="obsolete">Attacher le débogueur à un fichier core n'est pas supporté !</translation> </message> <message> <source>Debugger running</source> @@ -4739,11 +4739,11 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Attaching to a process failed for process id %1: %2</source> - <translation type="obsolete">Impossible d'attacher au processsus d'id %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'attacher au processsus d'id %1 : %2</translation> </message> <message> <source>Unable to set the image path to %1: %2</source> - <translation type="obsolete">Impossible de définir le chemin de l'image %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible de définir le chemin de l'image %1 : %2</translation> </message> <message> <source>Unable to create a process '%1': %2</source> @@ -4759,7 +4759,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Unable to continue: %1</source> - <translation type="obsolete">Impossible de continuer&nbsp;: %1</translation> + <translation type="obsolete">Impossible de continuer : %1</translation> </message> <message> <source>Reverse stepping is not implemented.</source> @@ -4783,7 +4783,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Running up to %1:%2...</source> - <translation type="obsolete">Exécution jusqu'à %1&nbsp;: %2…</translation> + <translation type="obsolete">Exécution jusqu'à %1 : %2…</translation> </message> <message> <source>Running up to function '%1()'...</source> @@ -4799,7 +4799,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Unable to retrieve %1 bytes of memory at 0x%2: %3</source> - <translation type="obsolete">Impossible de récupérer %1 octets de mémoire sur 0x%2&nbsp;: %3</translation> + <translation type="obsolete">Impossible de récupérer %1 octets de mémoire sur 0x%2 : %3</translation> </message> <message> <source>Cannot retrieve symbols while the debuggee is running.</source> @@ -4816,11 +4816,11 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Interrupted in thread %1, current thread: %2</source> - <translation type="obsolete">Interruption dans le thread %1, thread courant&nbsp;: %2</translation> + <translation type="obsolete">Interruption dans le thread %1, thread courant : %2</translation> </message> <message> <source>Stopped, current thread: %1</source> - <translation type="obsolete">Arrêté, thread courant&nbsp;: %1</translation> + <translation type="obsolete">Arrêté, thread courant : %1</translation> </message> <message> <source>Changing threads: %1 -> %2</source> @@ -4828,7 +4828,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Stopped at %1:%2 in thread %3.</source> - <translation type="obsolete">Arrêté a %1&nbsp;: %2dans le thread %3.</translation> + <translation type="obsolete">Arrêté a %1 : %2dans le thread %3.</translation> </message> <message> <source>Stopped at %1 in thread %2 (missing debug information).</source> @@ -4844,15 +4844,15 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Breakpoint: %1</source> - <translation type="obsolete">Point d'arrêt&nbsp;: %1</translation> + <translation type="obsolete">Point d'arrêt : %1</translation> </message> <message> <source>Thread %1: Missing debug information for top stack frame (%2).</source> - <translation type="obsolete">Thread %1&nbsp;: informations de débogage manquantes sur la frame en haut de la pile (%2).</translation> + <translation type="obsolete">Thread %1 : informations de débogage manquantes sur la frame en haut de la pile (%2).</translation> </message> <message> <source>Thread %1: No debug information available (%2).</source> - <translation type="obsolete">Thread %1&nbsp;: aucune information de débogage disponible (%2).</translation> + <translation type="obsolete">Thread %1 : aucune information de débogage disponible (%2).</translation> </message> </context> <context> @@ -4871,7 +4871,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Loading of the custom dumper library '%1' (%2) failed: %3</source> - <translation type="obsolete">Échec du chargement de la bibliothèque du collecteur de données personnalisé "%1" (%2)&nbsp;: %3</translation> + <translation type="obsolete">Échec du chargement de la bibliothèque du collecteur de données personnalisé "%1" (%2) : %3</translation> </message> <message> <source>Loaded the custom dumper library '%1' (%2).</source> @@ -4896,7 +4896,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>The custom dumper library could not be initialized: %1</source> - <translation type="obsolete">La bibliothèque de collecteurs de données personnalisé n'a pas pu être initialisé&nbsp;: %1</translation> + <translation type="obsolete">La bibliothèque de collecteurs de données personnalisé n'a pas pu être initialisé : %1</translation> </message> <message> <source>Querying dumpers for '%1'/'%2' (%3)</source> @@ -4933,7 +4933,7 @@ Qt Creator ne peut pas s'y attacher. </translation> <message> <source>Checked: %1</source> - <translation type="obsolete">Coché&nbsp;: + <translation type="obsolete">Coché : %1</translation> </message> <message> @@ -4947,7 +4947,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Additional &arguments:</source> - <translation>&Arguments supplémentaires&nbsp;:</translation> + <translation>&Arguments supplémentaires :</translation> </message> <message> <source>Debugger Paths</source> @@ -4955,15 +4955,15 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>&Symbol paths:</source> - <translation type="obsolete">Chemins des &symboles&nbsp;:</translation> + <translation type="obsolete">Chemins des &symboles :</translation> </message> <message> <source>S&ource paths:</source> - <translation type="obsolete">Chemins des s&ources&nbsp;:</translation> + <translation type="obsolete">Chemins des s&ources :</translation> </message> <message> <source>Break on:</source> - <translation>Point d'arrêt&nbsp;:</translation> + <translation>Point d'arrêt :</translation> </message> <message> <source><html><head/><body><p>Use CDB's native console instead of Qt Creator's console for console applications. The native console does not prompt on application exit. It is suitable for diagnosing cases in which the application does not start up properly in Qt Creator's console and the subsequent attach fails.</p></body></html></source> @@ -4987,7 +4987,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Break on functions:</source> - <translation type="obsolete">Arrêt sur les fonctions&nbsp;:</translation> + <translation type="obsolete">Arrêt sur les fonctions :</translation> </message> <message> <source>This is useful to catch runtime error messages, for example caused by assert().</source> @@ -5022,11 +5022,11 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source><html><head/><body><p>The debugger is not configured to use the public <a href="%1">Microsoft Symbol Server</a>. This is recommended for retrieval of the symbols of the operating system libraries.</p><p><i>Note:</i> A fast internet connection is required for this to work smoothly. Also, a delay might occur when connecting for the first time.</p><p>Would you like to set it up?</p></body></html></source> - <translation type="obsolete"><html><head/><body><p>Le débogueur n'est pas configuré pour utiliser le <a href="%1">serveur de symbole de Microsoft</a> public. Cela est recommandé pour récupérer les symboles des bibliothèques du système d'exploitation.</p><p><i>Remarque&nbsp;:</i> une connexion internet rapide est nécessaire pour que cela fonctionne correctement. En outre, un retard peut se produire lors de la première connexion.</p><p>Voulez-vous le configurer&nbsp;?</p></body></html></translation> + <translation type="obsolete"><html><head/><body><p>Le débogueur n'est pas configuré pour utiliser le <a href="%1">serveur de symbole de Microsoft</a> public. Cela est recommandé pour récupérer les symboles des bibliothèques du système d'exploitation.</p><p><i>Remarque :</i> une connexion internet rapide est nécessaire pour que cela fonctionne correctement. En outre, un retard peut se produire lors de la première connexion.</p><p>Voulez-vous le configurer ?</p></body></html></translation> </message> <message> <source><html><head/><body><p>The debugger is not configured to use the public <a href="%1">Microsoft Symbol Server</a>. This is recommended for retrieval of the symbols of the operating system libraries.</p><p><i>Note:</i> A fast internet connection is required for this to work smoothly. Also, a delay might occur when connecting for the first time.</p><p>Would you like to set it up?</p></br></body></html></source> - <translation type="obsolete"><html><head/><body><p>Le débogueur n'est pas configuré pour utiliser le <a href="%1">serveur de symbole Microsoft</a> public. Ceci est recommandé pour récupérer les symboles des bibliothèques du système d'exploitation.</p><p><i>Note&nbsp;:</i> une connexion internet rapide est requise pour que cela fonctione en douceur. Une attente peut également avoir lieu lors de la première connexion.</p><p>Souhaitez-vous le configurer&nbsp;?</p></br></body></html></translation> + <translation type="obsolete"><html><head/><body><p>Le débogueur n'est pas configuré pour utiliser le <a href="%1">serveur de symbole Microsoft</a> public. Ceci est recommandé pour récupérer les symboles des bibliothèques du système d'exploitation.</p><p><i>Note :</i> une connexion internet rapide est requise pour que cela fonctione en douceur. Une attente peut également avoir lieu lors de la première connexion.</p><p>Souhaitez-vous le configurer ?</p></br></body></html></translation> </message> <message> <source>Symbol Server</source> @@ -5073,7 +5073,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Step Out</source> - <translatorcomment>Pas sur&nbsp;???</translatorcomment> + <translatorcomment>Pas sur ???</translatorcomment> <translation type="obsolete">Sortir de</translation> </message> <message> @@ -5087,8 +5087,8 @@ Qt Creator ne peut pas s'y attacher. </translation> <message> <source>Immediately Return From Inner Function</source> <translatorcomment>Pas très francais... Mais je n'arrive pas à saisir le sens de la phrase. -francis&nbsp;: nouvelle proposition. -cédric&nbsp;: Je pense que "retourner immédiatement" est mieux que dans l'autre sens non&nbsp;? +francis : nouvelle proposition. +cédric : Je pense que "retourner immédiatement" est mieux que dans l'autre sens non ? john: je pense que c'est dans le sens return ce qui ne comprends pas toujours une valeur, j'ai simplifié la phrase. (globalement on a le problème de trad de return en retourne qui ce dit moyen...)</translatorcomment> <translation type="obsolete">Retourne immédiatement d'une fonction interne</translation> @@ -5107,7 +5107,7 @@ john: je pense que c'est dans le sens return ce qui ne comprends pas toujou </message> <message> <source>Snapshot</source> - <translatorcomment>mieux que cliché ou instantané non&nbsp;?</translatorcomment> + <translatorcomment>mieux que cliché ou instantané non ?</translatorcomment> <translation type="obsolete">Snapshot</translation> </message> <message> @@ -5128,17 +5128,17 @@ john: je pense que c'est dans le sens return ce qui ne comprends pas toujou </message> <message> <source>Changing breakpoint state requires either a fully running or fully stopped application.</source> - <translatorcomment>fully&nbsp;?</translatorcomment> + <translatorcomment>fully ?</translatorcomment> <translation type="obsolete">Changer l'état d'un point d'arrêt nécessite soit une application en cours d'éxecution soit une application totalement arrêté.</translation> </message> <message> <source>The application requires the debugger engine '%1', which is disabled.</source> - <translatorcomment>On traduit engine ou pas&nbsp;?</translatorcomment> + <translatorcomment>On traduit engine ou pas ?</translatorcomment> <translation type="obsolete">L'application nécessite le débogueur "%1" qui est desactivé.</translation> </message> <message> <source>Debugging VS executables is currently not enabled.</source> - <translatorcomment>On traduit VS&nbsp;?</translatorcomment> + <translatorcomment>On traduit VS ?</translatorcomment> <translation type="obsolete">Le débogage contre l'exécutable n'est actuellement pas activé.</translation> </message> <message> @@ -5151,7 +5151,7 @@ john: je pense que c'est dans le sens return ce qui ne comprends pas toujou </message> <message> <source>Cannot debug '%1' (tool chain: '%2'): %3</source> - <translation type="obsolete">Impossible de déboguer '%1' (chaîne d'outils&nbsp;: "%2")&nbsp;: %3</translation> + <translation type="obsolete">Impossible de déboguer '%1' (chaîne d'outils : "%2") : %3</translation> </message> <message> <source>Save Debugger Log</source> @@ -5247,7 +5247,7 @@ john: je pense que c'est dans le sens return ce qui ne comprends pas toujou <source>A debugging session is still in progress. Would you like to terminate it?</source> <translation type="obsolete">Une session de débogage est en cours. -Voulez vous la terminer&nbsp;?</translation> +Voulez vous la terminer ?</translation> </message> <message> <source>Close Debugging Session</source> @@ -5255,18 +5255,18 @@ Voulez vous la terminer&nbsp;?</translation> </message> <message> <source>A debugging session is still in progress. Would you like to terminate it?</source> - <translation type="obsolete">Une session de débogage est en cours. Voulez vous la terminer&nbsp;?</translation> + <translation type="obsolete">Une session de débogage est en cours. Voulez vous la terminer ?</translation> </message> <message> <source>A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it?</source> - <translation type="obsolete">Une session de débogage est en cours. Terminer la session dans l'état courant (%1) risque de laisser la cible dans un état incohérent. Êtes-vous sûr de vouloir terminer la session&nbsp;?</translation> + <translation type="obsolete">Une session de débogage est en cours. Terminer la session dans l'état courant (%1) risque de laisser la cible dans un état incohérent. Êtes-vous sûr de vouloir terminer la session ?</translation> </message> </context> <context> <name>Debugger::Internal::DebuggerPlugin</name> <message> <source>Option '%1' is missing the parameter.</source> - <translation type="obsolete">Option "%1"&nbsp;: le paramètre est manquant.</translation> + <translation type="obsolete">Option "%1" : le paramètre est manquant.</translation> </message> <message> <source>The parameter '%1' of option '%2' is not a number.</source> @@ -5274,11 +5274,11 @@ Voulez vous la terminer&nbsp;?</translation> </message> <message> <source>Invalid debugger option: %1</source> - <translation type="obsolete">Option du débogueur invalide&nbsp;: %1</translation> + <translation type="obsolete">Option du débogueur invalide : %1</translation> </message> <message> <source>Error evaluating command line arguments: %1</source> - <translation type="obsolete">Erreur durant l'évaluation des arguments de la ligne de commande&nbsp;: %1</translation> + <translation type="obsolete">Erreur durant l'évaluation des arguments de la ligne de commande : %1</translation> </message> <message> <source>Start and Debug External Application...</source> @@ -5323,11 +5323,11 @@ Voulez vous la terminer&nbsp;?</translation> </message> <message> <source>Threads:</source> - <translation type="obsolete">Threads&nbsp;:</translation> + <translation type="obsolete">Threads :</translation> </message> <message> <source>Attaching to PID %1.</source> - <translatorcomment>Attachement&nbsp;?</translatorcomment> + <translatorcomment>Attachement ?</translatorcomment> <translation type="obsolete">Attachement au PID %1.</translation> </message> <message> @@ -5353,7 +5353,7 @@ Voulez vous la terminer&nbsp;?</translation> </message> <message> <source>Cannot attach to PID 0</source> - <translatorcomment>de s'attacher&nbsp;? Pas sur</translatorcomment> + <translatorcomment>de s'attacher ? Pas sur</translatorcomment> <translation type="obsolete">Impossible de s'attacher au PID 0</translation> </message> <message> @@ -5878,7 +5878,7 @@ Voulez vous la terminer&nbsp;?</translation> </message> <message> <source>Executable failed: %1</source> - <translation>Échec de l'exécutable&nbsp;: %1</translation> + <translation>Échec de l'exécutable : %1</translation> </message> <message> <source>Program exited with exit code %1.</source> @@ -5893,8 +5893,8 @@ Voulez vous la terminer&nbsp;?</translation> <translation type="obsolete">Le programme s'est terminé normallement.</translation> </message> <message> - <source><p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name&nbsp;: </td><td>%1</td></tr><tr><td>Signal meaning&nbsp;: </td><td>%2</td></tr></table></source> - <translation type="obsolete"><p>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal&nbsp;: </td><td>%1</td></tr><tr><td>Signification du signal&nbsp;: </td><td>%2</td></tr></table></translation> + <source><p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table></source> + <translation type="obsolete"><p>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal : </td><td>%1</td></tr><tr><td>Signification du signal : </td><td>%2</td></tr></table></translation> </message> <message> <source> <Unknown> </source> @@ -5906,11 +5906,11 @@ Voulez vous la terminer&nbsp;?</translation> </message> <message> <source>Stopped: "%1"</source> - <translation type="obsolete">Arrêté&nbsp;: "%1"</translation> + <translation type="obsolete">Arrêté : "%1"</translation> </message> <message> <source>The debugger you are using identifies itself as:</source> - <translation type="obsolete">Le débogueur que vous utilisez s'identifie comme&nbsp;:</translation> + <translation type="obsolete">Le débogueur que vous utilisez s'identifie comme :</translation> </message> <message> <source>This version is not officially supported by Qt Creator. @@ -5979,7 +5979,7 @@ L'utilisation de gdb 6.7 ou supérieur est recommandée.</translation> </message> <message> <source>Disassembler failed: %1</source> - <translation>Échec du désassemblage&nbsp;: %1</translation> + <translation>Échec du désassemblage : %1</translation> </message> <message> <source>GDB I/O Error</source> @@ -6013,7 +6013,7 @@ L'utilisation de gdb 6.7 ou supérieur est recommandée.</translation> </message> <message> <source>Unable to start gdb '%1': %2</source> - <translation type="obsolete">Impossible de démarrer gdb "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de démarrer gdb "%1" : %2</translation> </message> <message> <source>Gdb I/O Error</source> @@ -6042,7 +6042,7 @@ L'utilisation de gdb 6.7 ou supérieur est recommandée.</translation> <message> <source>Cannot create snapshot: </source> - <translation>Impossible de créer le snapshot&nbsp;: + <translation>Impossible de créer le snapshot : </translation> </message> <message> @@ -6053,7 +6053,7 @@ L'utilisation de gdb 6.7 ou supérieur est recommandée.</translation> <source>In order to load snapshots the debugged process needs to be stopped. Continuation will not be possible afterwards. Do you want to stop the debugged process and load the selected snapshot?</source> <translation type="obsolete">Pour charger des snapshots, le processus débogué doit être arrêté. Il sera impossible de continuer par la suite. -Voulez vous arrêter le processus débogué et charger le snapshot selectionné&nbsp;?</translation> +Voulez vous arrêter le processus débogué et charger le snapshot selectionné ?</translation> </message> <message> <source>Finished retrieving data</source> @@ -6147,7 +6147,7 @@ Vous devriez définir la variable d'environnement PYTHONPATH pour pointer s </message> <message> <source>Unable to run '%1': %2</source> - <translation type="obsolete">Impossible d'exécuter "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter "%1" : %2</translation> </message> <message> <source>The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. @@ -6161,7 +6161,7 @@ Vous devriez définir la variable d'environnement PYTHONPATH pour pointer s </message> <message> <source>An exception was triggered: </source> - <translation>Une exception a été déclenchée&nbsp;: </translation> + <translation>Une exception a été déclenchée : </translation> </message> <message> <source>Library %1 loaded</source> @@ -6195,7 +6195,7 @@ Vous devriez définir la variable d'environnement PYTHONPATH pour pointer s <source>Missing debug information for %1 Try: %2</source> <translation>Informations de débogage manquantes pour %1 -Essayez&nbsp;: %2</translation> +Essayez : %2</translation> </message> <message> <source>Stopping temporarily</source> @@ -6207,7 +6207,7 @@ Essayez&nbsp;: %2</translation> </message> <message> <source>Failed to start application:</source> - <translation>Impossible de démarrer l'application&nbsp;:</translation> + <translation>Impossible de démarrer l'application :</translation> </message> <message> <source>This does not seem to be a "Debug" build. @@ -6229,7 +6229,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <source> Section %1: %2</source> <translation type="obsolete"> -Section %1&nbsp;: %2</translation> +Section %1 : %2</translation> </message> <message> <source>Warning</source> @@ -6238,12 +6238,12 @@ Section %1&nbsp;: %2</translation> <message> <source>The gdb process could not be stopped: %1</source> - <translation>Le processus gdb ne peut être arrêté&nbsp;: %1</translation> + <translation>Le processus gdb ne peut être arrêté : %1</translation> </message> <message> <source>Application process could not be stopped: %1</source> - <translation>Le processus de l'application ne peut être arrêté&nbsp;: %1</translation> + <translation>Le processus de l'application ne peut être arrêté : %1</translation> </message> <message> <source>Application started</source> @@ -6260,7 +6260,7 @@ Section %1&nbsp;: %2</translation> <message> <source>Connecting to remote server failed: %1</source> - <translation>La connexion au serveur distant a échoué&nbsp;: + <translation>La connexion au serveur distant a échoué : %1</translation> </message> <message> @@ -6315,23 +6315,23 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.</ </message> <message> <source>Watchpoint %1 at %2 triggered:</source> - <translation type="obsolete">Observe %1 au déclenchement de %2&nbsp;:</translation> + <translation type="obsolete">Observe %1 au déclenchement de %2 :</translation> </message> <message> <source>Stopped at breakpoint %1 in thread %2</source> - <translation type="obsolete">Arrêté au point d'arrêt %1 dans le thread %2. {1&nbsp;?} {2?}</translation> + <translation type="obsolete">Arrêté au point d'arrêt %1 dans le thread %2. {1 ?} {2?}</translation> </message> <message> - <source><p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name&nbsp;: </td><td>%1</td></tr><tr><td>Signal meaning&nbsp;: </td><td>%2</td></tr></table></source> - <translation type="obsolete"><p>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal&nbsp;: </td><td>%1</td></tr><tr><td>Signification du signal&nbsp;: </td><td>%2</td></tr></table></translation> + <source><p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table></source> + <translation type="obsolete"><p>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal : </td><td>%1</td></tr><tr><td>Signification du signal : </td><td>%2</td></tr></table></translation> </message> <message> <source>Stopped: %1 by signal %2</source> - <translation type="obsolete">Arrêté&nbsp;: %1 par le signal %2</translation> + <translation type="obsolete">Arrêté : %1 par le signal %2</translation> </message> <message> <source>Raw structure</source> - <translatorcomment>ou brute&nbsp;?</translatorcomment> + <translatorcomment>ou brute ?</translatorcomment> <translation>Structure simple</translation> </message> <message> @@ -6349,7 +6349,7 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.</ <message> <source>Cannot continue debugged process: </source> - <translation>Impossible de continuer le processus débogué&nbsp;: + <translation>Impossible de continuer le processus débogué : </translation> </message> <message> @@ -6382,7 +6382,7 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.</ </message> <message> <source>Cannot read widget data: %1</source> - <translation>Impossible de lire les données du widget&nbsp;: %1</translation> + <translation>Impossible de lire les données du widget : %1</translation> </message> <message> <source>Could not find a widget.</source> @@ -6426,7 +6426,7 @@ Vous devriez définir la variable d'environnement PYTHONPATH pour pointer s </message> <message> <source>An exception was triggered:</source> - <translation>Une exception a été déclenchée&nbsp;:</translation> + <translation>Une exception a été déclenchée :</translation> </message> <message numerus="yes"> <source>The gdb process has not responded to a command within %n second(s). This could mean it is stuck in an endless loop or taking longer than expected to perform the operation. @@ -6440,7 +6440,7 @@ Vous pouvez décider d'attendre plus longtemps ou mettre fin au débogage.< </message> <message> <source>Cannot continue debugged process:</source> - <translation>Impossible de continuer le processus débogué&nbsp;:</translation> + <translation>Impossible de continuer le processus débogué :</translation> </message> <message> <source>There is no GDB binary available for binaries in format '%1'</source> @@ -6448,7 +6448,7 @@ Vous pouvez décider d'attendre plus longtemps ou mettre fin au débogage.< </message> <message> <source>Cannot create snapshot:</source> - <translation>Impossible de créer le snapshot&nbsp;:</translation> + <translation>Impossible de créer le snapshot :</translation> </message> <message> <source>The gdb process terminated.</source> @@ -6460,7 +6460,7 @@ Vous pouvez décider d'attendre plus longtemps ou mettre fin au débogage.< </message> <message> <source>Failed to start application: </source> - <translation>Impossible de démarrer l'application&nbsp;: </translation> + <translation>Impossible de démarrer l'application : </translation> </message> <message> <source>Failed to start application</source> @@ -6491,7 +6491,7 @@ Vous pouvez décider d'attendre plus longtemps ou mettre fin au débogage.< </message> <message> <source>Custom dumper setup: %1</source> - <translation>Configuration du collecteur pesonnalisé&nbsp;: %1</translation> + <translation>Configuration du collecteur pesonnalisé : %1</translation> </message> <message> <source><0 items></source> @@ -6512,7 +6512,7 @@ Vous pouvez décider d'attendre plus longtemps ou mettre fin au débogage.< </message> <message> <source>Debugging helpers: Qt version mismatch</source> - <translation>Assistants de débogage&nbsp;: les versions de Qt ne correspondent pas</translation> + <translation>Assistants de débogage : les versions de Qt ne correspondent pas</translation> </message> <message> <source>The Qt version used to build the debugging helpers (%1) does not match the Qt version used to build the debugged application (%2). @@ -6550,7 +6550,7 @@ Ceci pourrait amener à des résultats incorrects.</translation> </message> <message> <source>GDB timeout:</source> - <translation>Délai GDB&nbsp;:</translation> + <translation>Délai GDB :</translation> </message> <message> <source>This is the number of seconds Qt Creator will wait before @@ -6662,7 +6662,7 @@ par défaut de l'utilisateur au démarrage du débogueur.</translation> </message> <message> <source><html><head/><body><p>Attempts to identify missing debug info packages and lists them in the Issues output pane.</p><p><b>Note:</b> This feature needs special support from the Linux distribution and GDB build and is not available everywhere.</p></body></html></source> - <translation><html><head/><body><p>Tenter d'identifier les informations manquantes de débogage des paquets et les lister dans le panneau de sortie Problèmes.</p><p><b>Note&nbsp;:</b> cette fonctionnalité nécessite d'être supportée spécialement par la distribution Linux et par GDB et n'est pas disponible partout.</p></body></html></translation> + <translation><html><head/><body><p>Tenter d'identifier les informations manquantes de débogage des paquets et les lister dans le panneau de sortie Problèmes.</p><p><b>Note :</b> cette fonctionnalité nécessite d'être supportée spécialement par la distribution Linux et par GDB et n'est pas disponible partout.</p></body></html></translation> </message> <message> <source><p>To execute simple Python commands, prefix them with "python".</p><p>To execute sequences of Python commands spanning multiple lines prepend the block with "python" on a separate line, and append "end" on a separate line.</p><p>To execute arbitrary Python scripts, use <i>python execfile('/path/to/script.py')</i>.</p></source> @@ -6715,7 +6715,7 @@ par défaut de l'utilisateur au démarrage du débogueur.</translation> </message> <message> <source><html><head/><body><p>Enable stepping backwards.</p><p><b>Note:</b> This feature is very slow and unstable on the GDB side. It exhibits unpredictable behavior when going backwards over system calls and is very likely to destroy your debugging session.</p></body></html></source> - <translation><html><head/><body><p>Activer le mode pas-à -pas en arrière.</p><p><b>Remarque&nbsp;:</b> cette fonction est très lente et instable du côté de GDB. Elle présente un comportement imprévisible lors d'un retour sur les appels système et est fortement susceptible de détruire votre session de débogage.</p></body></html></translation> + <translation><html><head/><body><p>Activer le mode pas-à -pas en arrière.</p><p><b>Remarque :</b> cette fonction est très lente et instable du côté de GDB. Elle présente un comportement imprévisible lors d'un retour sur les appels système et est fortement susceptible de détruire votre session de débogage.</p></body></html></translation> </message> <message> <source>Attempt quick start</source> @@ -6777,7 +6777,7 @@ at debugger startup.</source> </message> <message> <source><html><head/><body><p>Selecting this enables reverse debugging.</p><.p><b>Note:</b> This feature is very slow and unstable on the GDB side.It exhibits unpredictable behavior when going backwards over system calls and is very likely to destroy your debugging session.</p><body></html></source> - <translation type="obsolete"><html><head/><body><p>Sélectionner cette option active le débogage inverse.</p><.p><b>Note&nbsp;:</b> Cette fonctionnalité est très lente et instable pour GDB. Elle présente des comportements imprévisible lors d'un retour sur des appel système et peut détruire votre session de débogage.</p><body></html></translation> + <translation type="obsolete"><html><head/><body><p>Sélectionner cette option active le débogage inverse.</p><.p><b>Note :</b> Cette fonctionnalité est très lente et instable pour GDB. Elle présente des comportements imprévisible lors d'un retour sur des appel système et peut détruire votre session de débogage.</p><body></html></translation> </message> <message> <source>Additional Startup Commands</source> @@ -6976,15 +6976,15 @@ at debugger startup.</source> <name>Debugger::Internal::OutputCollector</name> <message> <source>Cannot create temporary file: %1</source> - <translation>Impossible de créer le fichier temporaire&nbsp;: %1</translation> + <translation>Impossible de créer le fichier temporaire : %1</translation> </message> <message> <source>Cannot create FiFo %1: %2</source> - <translation>Impossible de créer le FiFo %1&nbsp;: %2</translation> + <translation>Impossible de créer le FiFo %1 : %2</translation> </message> <message> <source>Cannot open FiFo %1: %2</source> - <translation>Impossible d'ouvrir le FiFo %1&nbsp;: %2</translation> + <translation>Impossible d'ouvrir le FiFo %1 : %2</translation> </message> </context> <context> @@ -7093,7 +7093,7 @@ at debugger startup.</source> <name>Debugger::Internal::ScriptEngine</name> <message> <source>Error:</source> - <translation>Erreur&nbsp;: </translation> + <translation>Erreur : </translation> </message> <message> <source>Running requested...</source> @@ -7125,7 +7125,7 @@ at debugger startup.</source> </message> <message> <source>Stopped at %1:%2.</source> - <translation>Arrêté à %1&nbsp;: %2.</translation> + <translation>Arrêté à %1 : %2.</translation> </message> <message> <source>Stopped.</source> @@ -7178,31 +7178,31 @@ at debugger startup.</source> <name>Debugger::Internal::StackHandler</name> <message> <source>Address:</source> - <translation>Adresse&nbsp;:</translation> + <translation>Adresse :</translation> </message> <message> <source>Function:</source> - <translation>Fonction&nbsp;:</translation> + <translation>Fonction :</translation> </message> <message> <source>File:</source> - <translation>Fichier&nbsp;:</translation> + <translation>Fichier :</translation> </message> <message> <source>Line:</source> - <translation>Ligne&nbsp;:</translation> + <translation>Ligne :</translation> </message> <message> <source>From:</source> - <translation>À partir de&nbsp;:</translation> + <translation>À partir de :</translation> </message> <message> <source>To:</source> - <translation>Vers&nbsp;:</translation> + <translation>Vers :</translation> </message> <message> <source>Note:</source> - <translation>Note&nbsp;:</translation> + <translation>Note :</translation> </message> <message> <source>Sources for this frame are available.<br>Double-click on the file name to open an editor.</source> @@ -7222,12 +7222,12 @@ at debugger startup.</source> </message> <message> <source>Binary debug information is not accessible for this frame. This either means the core was not compiled with debug information, or the debug information is not accessible. Note that most distributions ship debug information in separate packages.</source> - <translatorcomment>Binary se rapporte à quoi&nbsp;??? -> je pense que tu es ok avec ta phrase&nbsp;:)</translatorcomment> + <translatorcomment>Binary se rapporte à quoi ??? -> je pense que tu es ok avec ta phrase :)</translatorcomment> <translation type="obsolete">Les informations de débogage du fichier binaire ne sont pas accessibles dans ce cadre. Cela signifie soit que le noyau n'a pas été compilé avec les informations de débogage, soit que les informations de débogage ne sont pas accessibles. Notez que la plupart des distributions fournissent les informations de débogage dans des paquets séparés.</translation> </message> <message> <source>Binary debug information is accessible for this frame. However, matching sources have not been found. Note that some distributions ship debug sources in separate packages.</source> - <translatorcomment>Binary se rapporte à quoi&nbsp;???</translatorcomment> + <translatorcomment>Binary se rapporte à quoi ???</translatorcomment> <translation type="obsolete">Les informations de débogage sont accessible dans ce cadre. Cependant, les sources correspondantes n'ont pas été trouvées. Notez que certaines distributions fournissent des sources de débogage dans des paquets séparés.</translation> </message> <message> @@ -7262,32 +7262,32 @@ at debugger startup.</source> <context> <name>Debugger::Internal::ThreadsHandler</name> <message> - <source>Thread&nbsp;id:</source> - <translation>ID du thread&nbsp;: </translation> + <source>Thread id:</source> + <translation>ID du thread : </translation> </message> <message> - <source>Target&nbsp;id:</source> - <translation>Identifiant de la cible&nbsp;: </translation> + <source>Target id:</source> + <translation>Identifiant de la cible : </translation> </message> <message> - <source>Group&nbsp;id:</source> - <translation>ID du groupes&nbsp;:</translation> + <source>Group id:</source> + <translation>ID du groupes :</translation> </message> <message> <source>Name:</source> - <translation>Nom&nbsp;: </translation> + <translation>Nom : </translation> </message> <message> <source>State:</source> - <translation>État&nbsp;: </translation> + <translation>État : </translation> </message> <message> <source>Core:</source> - <translation>Core&nbsp;: </translation> + <translation>Core : </translation> </message> <message> - <source>Stopped&nbsp;at:</source> - <translation>Arrêté à &nbsp;: </translation> + <source>Stopped at:</source> + <translation>Arrêté à : </translation> </message> <message> <source>ID</source> @@ -7354,7 +7354,7 @@ at debugger startup.</source> </message> <message> <source>Function:</source> - <translation type="obsolete">Fonction&nbsp;:</translation> + <translation type="obsolete">Fonction :</translation> </message> <message> <source>Disassemble Function</source> @@ -7461,11 +7461,11 @@ at debugger startup.</source> </message> <message> <source>Executable:</source> - <translation type="obsolete">Exécutable&nbsp;:</translation> + <translation type="obsolete">Exécutable :</translation> </message> <message> <source>Arguments:</source> - <translation type="obsolete">Arguments&nbsp;:</translation> + <translation type="obsolete">Arguments :</translation> </message> <message> <source>Start Debugger</source> @@ -7473,31 +7473,31 @@ at debugger startup.</source> </message> <message> <source>&Executable:</source> - <translation type="obsolete">&Exécutable&nbsp;:</translation> + <translation type="obsolete">&Exécutable :</translation> </message> <message> <source>&Arguments:</source> - <translation type="obsolete">&Arguments&nbsp;: </translation> + <translation type="obsolete">&Arguments : </translation> </message> <message> <source>Run in &terminal:</source> - <translation type="obsolete">Lancer en &terminal&nbsp;: </translation> + <translation type="obsolete">Lancer en &terminal : </translation> </message> <message> <source>&Working directory:</source> - <translation type="obsolete">&Répertoire de travail&nbsp;: </translation> + <translation type="obsolete">&Répertoire de travail : </translation> </message> <message> <source>&Tool chain:</source> - <translation type="obsolete">Chaîne de &compilation&nbsp;:</translation> + <translation type="obsolete">Chaîne de &compilation :</translation> </message> <message> <source>Break at '&main':</source> - <translation type="obsolete">Arrêt à '&main'&nbsp;: </translation> + <translation type="obsolete">Arrêt à '&main' : </translation> </message> <message> <source>&Recent:</source> - <translation type="obsolete">&Récent&nbsp;:</translation> + <translation type="obsolete">&Récent :</translation> </message> </context> <context> @@ -7528,7 +7528,7 @@ at debugger startup.</source> </message> <message> <source>Remote: "%1"</source> - <translation type="obsolete">Distant&nbsp;: "%1"</translation> + <translation type="obsolete">Distant : "%1"</translation> </message> <message> <source>Select Start Script</source> @@ -7540,43 +7540,43 @@ at debugger startup.</source> </message> <message> <source>Tool &chain:</source> - <translation type="obsolete">Chaîne d'ou&tils&nbsp;:</translation> + <translation type="obsolete">Chaîne d'ou&tils :</translation> </message> <message> <source>Local &executable:</source> - <translation type="obsolete">&Exécutable local&nbsp;: </translation> + <translation type="obsolete">&Exécutable local : </translation> </message> <message> <source>&Host and port:</source> - <translation type="obsolete">&Hôte et port&nbsp;: </translation> + <translation type="obsolete">&Hôte et port : </translation> </message> <message> <source>&Architecture:</source> - <translation type="obsolete">&Architecture&nbsp;: </translation> + <translation type="obsolete">&Architecture : </translation> </message> <message> <source>Sys&root:</source> - <translation type="obsolete">&Racine système&nbsp;: </translation> + <translation type="obsolete">&Racine système : </translation> </message> <message> <source>Location of debugging &information:</source> - <translation type="obsolete">Emplacement des &informations de débogage&nbsp;:</translation> + <translation type="obsolete">Emplacement des &informations de débogage :</translation> </message> <message> <source>Override host GDB s&tart script:</source> - <translation type="obsolete">Surchager le &script de démarrage du GDB hôte&nbsp;:</translation> + <translation type="obsolete">Surchager le &script de démarrage du GDB hôte :</translation> </message> <message> <source>&Use server start script:</source> - <translation type="obsolete">&Utiliser le script de démarrage du serveur&nbsp;:</translation> + <translation type="obsolete">&Utiliser le script de démarrage du serveur :</translation> </message> <message> <source>&Server start script:</source> - <translation type="obsolete">&Script de démarrage du serveur&nbsp;:</translation> + <translation type="obsolete">&Script de démarrage du serveur :</translation> </message> <message> <source>&Recent:</source> - <translation type="obsolete">&Récent&nbsp;:</translation> + <translation type="obsolete">&Récent :</translation> </message> </context> <context> @@ -7671,7 +7671,7 @@ at debugger startup.</source> </message> <message numerus="yes"> <source>%n bytes</source> - <translatorcomment>voir les récentes discussions sur Developpez.com sur la distinction byte&nbsp;!= octet</translatorcomment> + <translatorcomment>voir les récentes discussions sur Developpez.com sur la distinction byte != octet</translatorcomment> <translation> <numerusform>%n octet</numerusform> <numerusform>%n octets</numerusform> @@ -7727,7 +7727,7 @@ at debugger startup.</source> </message> <message numerus="yes"> <source><more than %n items></source> - <translatorcomment>singulier en français&nbsp;: entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> + <translatorcomment>singulier en français : entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> <translation> <numerusform><plus d'un item></numerusform> <numerusform><plus de %n items></numerusform> @@ -7973,7 +7973,7 @@ at debugger startup.</source> </message> <message> <source>Change Global Display Formats...</source> - <translatorcomment>format globaux ou affichage global&nbsp;? [Pierre] Je pense qu'il s'agit des formats, on va voir si quelqu'un râle...&nbsp;:)</translatorcomment> + <translatorcomment>format globaux ou affichage global ? [Pierre] Je pense qu'il s'agit des formats, on va voir si quelqu'un râle... :)</translatorcomment> <translation type="obsolete">Changer les formats d'affichage globaux...</translation> </message> <message> @@ -8046,11 +8046,11 @@ at debugger startup.</source> </message> <message> <source>Change Display for Type "%1":</source> - <translation type="obsolete">Changer l'affichage du type "%1"&nbsp;: </translation> + <translation type="obsolete">Changer l'affichage du type "%1" : </translation> </message> <message> <source>Change Display for Object Named "%1":</source> - <translation type="obsolete">Changer l'affichage de l'objet nommé "%1"&nbsp;: </translation> + <translation type="obsolete">Changer l'affichage de l'objet nommé "%1" : </translation> </message> <message> <source><i>%1</i> %2 at #%3</source> @@ -8241,7 +8241,7 @@ at debugger startup.</source> </message> <message> <source>Expression:</source> - <translation type="obsolete">Expression&nbsp;:</translation> + <translation type="obsolete">Expression :</translation> </message> <message> <source>Locals & Watchers</source> @@ -8335,7 +8335,7 @@ at debugger startup.</source> </message> <message> <source>This will enable nice display of Qt and Standard Library objects in the Locals&Watchers view</source> - <translatorcomment>Traduction de Locals&Watchers&nbsp;?</translatorcomment> + <translatorcomment>Traduction de Locals&Watchers ?</translatorcomment> <translation type="obsolete">Cela permettra un affichage correct des objets de Qt et de la bibliothèque standard dans a vue Variables locales et observateurs</translation> </message> <message> @@ -8352,7 +8352,7 @@ at debugger startup.</source> </message> <message> <source>Location: </source> - <translation type="obsolete">Emplacement&nbsp;:</translation> + <translation type="obsolete">Emplacement :</translation> </message> <message> <source>Debug debugging helper</source> @@ -8364,7 +8364,7 @@ at debugger startup.</source> </message> <message> <source>Use code model</source> - <translatorcomment>pas exactement ça&nbsp;?</translatorcomment> + <translatorcomment>pas exactement ça ?</translatorcomment> <translation type="obsolete">Utiliser le modèle de code</translation> </message> <message> @@ -8426,7 +8426,7 @@ at debugger startup.</source> </message> <message> <source>%1 depends on: %2.</source> - <translation type="obsolete">%1 dépend de&nbsp;: %2.</translation> + <translation type="obsolete">%1 dépend de : %2.</translation> </message> </context> <context> @@ -8437,7 +8437,7 @@ at debugger startup.</source> </message> <message> <source>XML error on line %1, col %2: %3</source> - <translation type="obsolete">Erreur XML à la ligne %1, col %2&nbsp;: %3</translation> + <translation type="obsolete">Erreur XML à la ligne %1, col %2 : %3</translation> </message> <message> <source>The <RCC> root element is missing.</source> @@ -8445,7 +8445,7 @@ at debugger startup.</source> </message> <message> <source>Cannot write file. Disk full?</source> - <translation type="obsolete">Impossible d'écrire le fichier. Disque plein&nbsp;?</translation> + <translation type="obsolete">Impossible d'écrire le fichier. Disque plein ?</translation> </message> <message> <source>Xml Editor</source> @@ -8697,7 +8697,7 @@ Regénérer le projet peut résoudre ce problème.</translation> </message> <message> <source>Signals && Slots Editor</source> - <translatorcomment>&&&nbsp;? typo in original&nbsp;?</translatorcomment> + <translatorcomment>&& ? typo in original ?</translatorcomment> <translation>Éditeur de signaux et slots</translation> </message> <message> @@ -8726,7 +8726,7 @@ Regénérer le projet peut résoudre ce problème.</translation> </message> <message> <source>The image could not be created: %1</source> - <translation>L'image ne peut pas être créée&nbsp;: %1</translation> + <translation>L'image ne peut pas être créée : %1</translation> </message> </context> <context> @@ -8752,11 +8752,11 @@ Regénérer le projet peut résoudre ce problème.</translation> </message> <message> <source>Unable to open %1: %2</source> - <translation type="obsolete">Impossible d'ouvrir %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir %1 : %2</translation> </message> <message> <source>Unable to write to %1: %2</source> - <translation type="obsolete">Impossible d'écrire dans %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'écrire dans %1 : %2</translation> </message> </context> <context> @@ -8783,12 +8783,12 @@ Please verify the #include-directives.</source> </message> <message> <source>Error finding/adding a slot.</source> - <translatorcomment>Erreur lors de la recherche/de l'ajout d'un slot.&nbsp;?</translatorcomment> + <translatorcomment>Erreur lors de la recherche/de l'ajout d'un slot. ?</translatorcomment> <translation>Erreur de la recherche/ajout de slot.</translation> </message> <message> <source>Internal error: No project could be found for %1.</source> - <translation>Erreur interne&nbsp;: Aucun projet n'a pu être trouvé pour %1.</translation> + <translation>Erreur interne : Aucun projet n'a pu être trouvé pour %1.</translation> </message> <message> <source>No documents matching '%1' could be found. @@ -8831,107 +8831,107 @@ Regénérer le projet peut résoudre ce problème.</translation> Note: This adds the toolchain to the build environment and runs the program inside a virtual machine. It also automatically sets the correct Qt version.</source> <translation type="obsolete">Utiliser Virtual Box -Note&nbsp;: ceci ajoute la chaîne d'outils à l'environnement de compilation et exécute le programme à l'intérieur d'une machine virtuelle. +Note : ceci ajoute la chaîne d'outils à l'environnement de compilation et exécute le programme à l'intérieur d'une machine virtuelle. La version de Qt est aussi définie automatiquement.</translation> </message> <message> <source>Skin:</source> - <translation type="obsolete">Revêtement&nbsp;:</translation> + <translation type="obsolete">Revêtement :</translation> </message> </context> <context> <name>ExtensionSystem::Internal::PluginDetailsView</name> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>Version:</source> - <translation>Version&nbsp;:</translation> + <translation>Version :</translation> </message> <message> <source>Compatibility Version:</source> - <translation type="obsolete">Version compatible&nbsp;:</translation> + <translation type="obsolete">Version compatible :</translation> </message> <message> <source>Vendor:</source> - <translation>Vendeur&nbsp;:</translation> + <translation>Vendeur :</translation> </message> <message> <source>Url:</source> - <translation type="obsolete">Url&nbsp;:</translation> + <translation type="obsolete">Url :</translation> </message> <message> <source>Location:</source> - <translation>Emplacement&nbsp;:</translation> + <translation>Emplacement :</translation> </message> <message> <source>Description:</source> - <translation>Description&nbsp;:</translation> + <translation>Description :</translation> </message> <message> <source>Copyright:</source> - <translatorcomment>Droit d'auteur&nbsp;?</translatorcomment> - <translation>Copyright&nbsp;:</translation> + <translatorcomment>Droit d'auteur ?</translatorcomment> + <translation>Copyright :</translation> </message> <message> <source>License:</source> - <translation>Licence&nbsp;:</translation> + <translation>Licence :</translation> </message> <message> <source>Dependencies:</source> - <translation>Dépendances&nbsp;:</translation> + <translation>Dépendances :</translation> </message> <message> <source>Group:</source> - <translation>Groupe&nbsp;:</translation> + <translation>Groupe :</translation> </message> <message> <source>Compatibility version:</source> - <translatorcomment>cf libs/extensionsystem/plugindetailsview.ui et PluginSpecPrivate::provides()&nbsp;: version minimum compatible</translatorcomment> - <translation>Version compatible&nbsp;: </translation> + <translatorcomment>cf libs/extensionsystem/plugindetailsview.ui et PluginSpecPrivate::provides() : version minimum compatible</translatorcomment> + <translation>Version compatible : </translation> </message> <message> <source>URL:</source> - <translation>URL&nbsp;: </translation> + <translation>URL : </translation> </message> <message> <source>Platforms:</source> - <translation>Plateformes&nbsp;:</translation> + <translation>Plateformes :</translation> </message> </context> <context> <name>ExtensionSystem::Internal::PluginErrorView</name> <message> <source>State:</source> - <translation>État&nbsp;:</translation> + <translation>État :</translation> </message> <message> <source>Error Message:</source> - <translation type="obsolete">Message d'erreur&nbsp;:</translation> + <translation type="obsolete">Message d'erreur :</translation> </message> <message> <source>Error message:</source> - <translation>Message d'erreur&nbsp;: </translation> + <translation>Message d'erreur : </translation> </message> </context> <context> <name>ExtensionSystem::Internal::PluginSpecPrivate</name> <message> <source>File does not exist: %1</source> - <translation type="obsolete">Le fichier n'existe pas&nbsp;: %1</translation> + <translation type="obsolete">Le fichier n'existe pas : %1</translation> </message> <message> <source>Could not open file for read: %1</source> - <translation type="obsolete">Impossible d'ouvrir le fichier en lecture&nbsp;: %1</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier en lecture : %1</translation> </message> <message> <source>Cannot open file %1 for reading: %2</source> - <translation>Impossible d'ouvrir le fichier %1 en lecture&nbsp;: %2</translation> + <translation>Impossible d'ouvrir le fichier %1 en lecture : %2</translation> </message> <message> <source>Error parsing file %1: %2, at line %3, column %4</source> - <translation>Erreur pendant l'analyse du fichier %1&nbsp;: %2, ligne %3, colonne %4</translation> + <translation>Erreur pendant l'analyse du fichier %1 : %2, ligne %3, colonne %4</translation> </message> </context> <context> @@ -9037,7 +9037,7 @@ La version de Qt est aussi définie automatiquement.</translation> <message> <source>Circular dependency detected: </source> - <translation>Dépendance circulaire détectée&nbsp;: + <translation>Dépendance circulaire détectée : </translation> </message> <message> @@ -9048,7 +9048,7 @@ La version de Qt est aussi définie automatiquement.</translation> </message> <message> <source>Circular dependency detected:</source> - <translation>Dépendance circulaire détectée&nbsp;:</translation> + <translation>Dépendance circulaire détectée :</translation> </message> <message> <source>%1(%2) depends on</source> @@ -9065,8 +9065,8 @@ La version de Qt est aussi définie automatiquement.</translation> <message> <source>Cannot load plugin because dependency failed to load: %1(%2) Reason: %3</source> - <translation>Impossible de charger le plug-in car une des dépendances n'a pas pu être chargé&nbsp;: %1(%2) -Raison&nbsp;: %3</translation> + <translation>Impossible de charger le plug-in car une des dépendances n'a pas pu être chargé : %1(%2) +Raison : %3</translation> </message> </context> <context> @@ -9100,7 +9100,7 @@ Raison&nbsp;: %3</translation> </message> <message> <source>E20: Mark '%1' not set</source> - <translation type="obsolete">E20&nbsp;: Marque "%1" non définie</translation> + <translation type="obsolete">E20 : Marque "%1" non définie</translation> </message> <message> <source>%1%2%</source> @@ -9111,8 +9111,8 @@ Raison&nbsp;: %3</translation> <translation>%1Tout</translation> </message> <message> - <source>File '%1' exists (add&nbsp;! to override)</source> - <translation type="obsolete">Le fichier "%1" existe déjà (ajoutez&nbsp;! pour écraser)</translation> + <source>File '%1' exists (add ! to override)</source> + <translation type="obsolete">Le fichier "%1" existe déjà (ajoutez ! pour écraser)</translation> </message> <message> <source>Cannot open file '%1' for writing</source> @@ -9146,7 +9146,7 @@ Raison&nbsp;: %3</translation> </message> <message> <source>E512: Unknown option: </source> - <translation type="obsolete">E512&nbsp;: option inconnue&nbsp;: </translation> + <translation type="obsolete">E512 : option inconnue : </translation> </message> <message> <source>search hit BOTTOM, continuing at TOP</source> @@ -9158,7 +9158,7 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Pattern not found: </source> - <translation type="obsolete">Motif non trouvé&nbsp;: </translation> + <translation type="obsolete">Motif non trouvé : </translation> </message> <message> <source>Mark '%1' not set</source> @@ -9174,11 +9174,11 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Unknown option: </source> - <translation>Option inconnue&nbsp;: </translation> + <translation>Option inconnue : </translation> </message> <message> <source>Unknown option:</source> - <translation>Option inconnue&nbsp;:</translation> + <translation>Option inconnue :</translation> </message> <message> <source>Move lines into themselves.</source> @@ -9192,8 +9192,8 @@ Raison&nbsp;: %3</translation> </translation> </message> <message> - <source>File "%1" exists (add&nbsp;! to override)</source> - <translation>Le fichier "%1" existe (ajouter&nbsp;! pour écraser)</translation> + <source>File "%1" exists (add ! to override)</source> + <translation>Le fichier "%1" existe (ajouter ! pour écraser)</translation> </message> <message> <source>Cannot open file "%1" for writing</source> @@ -9224,11 +9224,11 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Search hit BOTTOM without match for: %1</source> - <translation>La recherche a atteint la fin du document sans trouver de correspondance pour&nbsp;: %1</translation> + <translation>La recherche a atteint la fin du document sans trouver de correspondance pour : %1</translation> </message> <message> <source>Search hit TOP without match for: %1</source> - <translation>La recherche a atteint le début du document dans trouver de correspondance pour&nbsp;: %1</translation> + <translation>La recherche a atteint le début du document dans trouver de correspondance pour : %1</translation> </message> <message numerus="yes"> <source>%n lines indented.</source> @@ -9273,11 +9273,11 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Pattern not found: %1</source> - <translation>Motif non trouvé&nbsp;: %1</translation> + <translation>Motif non trouvé : %1</translation> </message> <message> <source>Invalid regular expression: %1</source> - <translation>Expression régulière invalide&nbsp;: %1</translation> + <translation>Expression régulière invalide : %1</translation> </message> <message> <source>Can't open file %1</source> @@ -9293,11 +9293,11 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Unknown option: %1</source> - <translation>Option inconnue&nbsp;: %1</translation> + <translation>Option inconnue : %1</translation> </message> <message> <source>Argument must be positive: %1=%2</source> - <translation>L'argument doit être positif&nbsp;: %1 = %2</translation> + <translation>L'argument doit être positif : %1 = %2</translation> </message> </context> <context> @@ -9312,7 +9312,7 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Default: %1</source> - <translation>Par défaut&nbsp;: %1</translation> + <translation>Par défaut : %1</translation> </message> <message> <source>Use FakeVim</source> @@ -9372,7 +9372,7 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Shift width:</source> - <translation>Largeur d'indentation&nbsp;:</translation> + <translation>Largeur d'indentation :</translation> </message> <message> <source>Vim tabstop option</source> @@ -9380,15 +9380,15 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Tabulator size:</source> - <translation>Taille des tabulations&nbsp;:</translation> + <translation>Taille des tabulations :</translation> </message> <message> <source>Backspace:</source> - <translation>Touche retour&nbsp;:</translation> + <translation>Touche retour :</translation> </message> <message> <source>Keyword characters:</source> - <translation>Caractères mot-clés&nbsp;:</translation> + <translation>Caractères mot-clés :</translation> </message> <message> <source>Copy Text Editor Settings</source> @@ -9428,11 +9428,11 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Scroll offset:</source> - <translation>Décalage du défilement&nbsp;:</translation> + <translation>Décalage du défilement :</translation> </message> <message> <source>Read .vimrc from location:</source> - <translation>Lire .vimrc depuis l'emplacement&nbsp;:</translation> + <translation>Lire .vimrc depuis l'emplacement :</translation> </message> <message> <source>Keep empty to use the default path, i.e. %USERPROFILE%\_vimrc on Windows, ~/.vimrc otherwise.</source> @@ -9494,7 +9494,7 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Not an editor command: %1</source> - <translation type="obsolete">Pas une commande de l'éditeur&nbsp;: %1</translation> + <translation type="obsolete">Pas une commande de l'éditeur : %1</translation> </message> <message> <source>FakeVim Information</source> @@ -9517,23 +9517,23 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Expand tabulators:</source> - <translation type="obsolete">Étendre les tabulations&nbsp;:</translation> + <translation type="obsolete">Étendre les tabulations :</translation> </message> <message> <source>Highlight search results:</source> - <translation type="obsolete">Surligner les résultats de recherche&nbsp;:</translation> + <translation type="obsolete">Surligner les résultats de recherche :</translation> </message> <message> <source>Shift width:</source> - <translation type="obsolete">Largeur d'indentation&nbsp;:</translation> + <translation type="obsolete">Largeur d'indentation :</translation> </message> <message> <source>Smart tabulators:</source> - <translation type="obsolete">Tabulation intelligente&nbsp;:</translation> + <translation type="obsolete">Tabulation intelligente :</translation> </message> <message> <source>Start of line:</source> - <translation type="obsolete">Début de ligne&nbsp;:</translation> + <translation type="obsolete">Début de ligne :</translation> </message> <message> <source>vim's "tabstop" option</source> @@ -9541,11 +9541,11 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Tabulator size:</source> - <translation type="obsolete">Taille des tabulations&nbsp;:</translation> + <translation type="obsolete">Taille des tabulations :</translation> </message> <message> <source>Backspace:</source> - <translation type="obsolete">Touche retour&nbsp;:</translation> + <translation type="obsolete">Touche retour :</translation> </message> <message> <source>VIM's "autoindent" option</source> @@ -9553,11 +9553,11 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Automatic indentation:</source> - <translation type="obsolete">Indentation automatique&nbsp;:</translation> + <translation type="obsolete">Indentation automatique :</translation> </message> <message> <source>Incremental search:</source> - <translation type="obsolete">Recherche incrémentale&nbsp;:</translation> + <translation type="obsolete">Recherche incrémentale :</translation> </message> <message> <source>Copy text editor settings</source> @@ -9573,9 +9573,9 @@ Raison&nbsp;: %3</translation> </message> <message> <source>Read .vimrc</source> - <translatorcomment>J'aurais proposer "lire les .vimrc" non&nbsp;? + <translatorcomment>J'aurais proposer "lire les .vimrc" non ? pierre: ouaip, je trouvais ça plus clair avec "prendre en compte" puisque pour le coup c'est des préférences -Francis&nbsp;: en effet, je n'avais pas pris en compte le contexte.</translatorcomment> +Francis : en effet, je n'avais pas pris en compte le contexte.</translatorcomment> <translation type="obsolete">prendre en compte .vimrc</translation> </message> <message> @@ -9620,7 +9620,7 @@ Francis&nbsp;: en effet, je n'avais pas pris en compte le contexte.</tr </message> <message> <source>Keyword characters:</source> - <translation type="obsolete">Caractères mot-clés&nbsp;:</translation> + <translation type="obsolete">Caractères mot-clés :</translation> </message> <message> <source>Copy Text Editor Settings</source> @@ -9659,7 +9659,7 @@ Francis&nbsp;: en effet, je n'avais pas pris en compte le contexte.</tr </message> <message> <source>Filter Name:</source> - <translation>Nom du filtre&nbsp;:</translation> + <translation>Nom du filtre :</translation> </message> </context> <context> @@ -9691,7 +9691,7 @@ Add, modify, and remove document filters, which determine the documentation set </p></body></html></source> <translation type="obsolete"><html><body> <p> -Ajouter, modifier et supprimer des filtres de documents, qui détermine l'ensemble des contenus affichés dans le mode Aide. Les attributs sont définis dans les documents. Sélectionnez les pour afficher la documentation appropriée. Note&nbsp;: certains attributs sont définis dans plusieurs documents. +Ajouter, modifier et supprimer des filtres de documents, qui détermine l'ensemble des contenus affichés dans le mode Aide. Les attributs sont définis dans les documents. Sélectionnez les pour afficher la documentation appropriée. Note : certains attributs sont définis dans plusieurs documents. </p></body></html></translation> </message> <message> @@ -9707,7 +9707,7 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e </message> <message> <source>Sc&ope:</source> - <translation type="obsolete">&Contexte&nbsp;:</translation> + <translation type="obsolete">&Contexte :</translation> </message> <message> <source>&Search</source> @@ -9715,7 +9715,7 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e </message> <message> <source>Search &for:</source> - <translation type="obsolete">Rec&herche&nbsp;:</translation> + <translation type="obsolete">Rec&herche :</translation> </message> <message> <source>Close</source> @@ -9743,11 +9743,11 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e </message> <message> <source>Sco&pe:</source> - <translation>&Contexte&nbsp;:</translation> + <translation>&Contexte :</translation> </message> <message> <source>Sear&ch for:</source> - <translation>Rec&herche&nbsp;:</translation> + <translation>Rec&herche :</translation> </message> <message> <source>Case sensiti&ve</source> @@ -9880,11 +9880,11 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e </message> <message> <source>Find:</source> - <translation>Rechercher&nbsp;:</translation> + <translation>Rechercher :</translation> </message> <message> <source>Replace with:</source> - <translation>Remplacer par&nbsp;:</translation> + <translation>Remplacer par :</translation> </message> <message> <source>All</source> @@ -9915,7 +9915,7 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e <name>Find::SearchResultWindow</name> <message> <source>No matches found!</source> - <translation type="obsolete">Aucun résultat&nbsp;!</translation> + <translation type="obsolete">Aucun résultat !</translation> </message> <message> <source>New Search</source> @@ -9931,7 +9931,7 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e </message> <message> <source>Replace with:</source> - <translation type="obsolete">Remplacer avec&nbsp;:</translation> + <translation type="obsolete">Remplacer avec :</translation> </message> <message> <source>Replace all occurrences</source> @@ -9970,11 +9970,11 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e </message> <message> <source>Gdb location:</source> - <translation type="obsolete">Emplacement de GDB&nbsp;:</translation> + <translation type="obsolete">Emplacement de GDB :</translation> </message> <message> <source>Environment:</source> - <translation type="obsolete">Environnement&nbsp;:</translation> + <translation type="obsolete">Environnement :</translation> </message> <message> <source>This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up.</source> @@ -9982,7 +9982,7 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e </message> <message> <source>Gdb startup script:</source> - <translation type="obsolete">Script de démarrage de Gdb&nbsp;:</translation> + <translation type="obsolete">Script de démarrage de Gdb :</translation> </message> <message> <source>Behaviour of breakpoint setting in plugins</source> @@ -10002,7 +10002,7 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e </message> <message> <source>Matching regular expression: </source> - <translation type="obsolete">Correspond à l'expression régulière&nbsp;: </translation> + <translation type="obsolete">Correspond à l'expression régulière : </translation> </message> <message> <source>Never set breakpoints in plugins automatically</source> @@ -10014,7 +10014,7 @@ Ajouter, modifier et supprimer des filtres de documents, qui détermine l'e </message> <message> <source>Gdb timeout:</source> - <translation type="obsolete">Timeout Gdb&nbsp;:</translation> + <translation type="obsolete">Timeout Gdb :</translation> </message> <message> <source>This is the number of seconds Qt Creator will wait before @@ -10063,8 +10063,8 @@ dans des fichiers ayant le même nom dans des répertoires différents.</transla </message> <message> <source>Behavior of Breakpoint Setting in Plugins</source> - <translatorcomment>Pierre&nbsp;: pour le coup c'est "breakpoint setting" qui se traduirait par "pose des points d'arrêt" ou qqchose du style mais je trouvais ça pompeux -francis: je propose "l'ajout" tout simplement&nbsp;?</translatorcomment> + <translatorcomment>Pierre : pour le coup c'est "breakpoint setting" qui se traduirait par "pose des points d'arrêt" ou qqchose du style mais je trouvais ça pompeux +francis: je propose "l'ajout" tout simplement ?</translatorcomment> <translation type="obsolete">Comportement lors de l'ajout des points d'arrêt dans les plug-ins</translation> </message> <message> @@ -10093,7 +10093,7 @@ francis: je propose "l'ajout" tout simplement&nbsp;?</transla </message> <message> <source>GDB startup script:</source> - <translation type="obsolete">Script de démarrage de GDB&nbsp;: </translation> + <translation type="obsolete">Script de démarrage de GDB : </translation> </message> <message> <source>This is the number of seconds Qt Creator will wait before @@ -10105,7 +10105,7 @@ on slow machines. In this case, the value should be increased.</source> </message> <message> <source>GDB timeout:</source> - <translation type="obsolete">Délai GDB&nbsp;:</translation> + <translation type="obsolete">Délai GDB :</translation> </message> <message> <source>Allows 'Step Into' to compress several steps into one step for less noisy debugging. For example, the atomic reference @@ -10127,7 +10127,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Enable reverse debugging Selecting this enables reverse debugging. NOTE: This feature is very slow and unstable on the GDB side. It exhibits unpredictable behaviour when going backwards over system calls and is very likely to destroy your debugging session.</source> - <translation type="obsolete">Active le débogage inversé. Sélectionner cette option active le débogage inversé. Note&nbsp;: cette fonction est très lente et instable du côté de GDB. Elle montre un comportement imprédictible lors du retour en arrière d'appels système et détruira très probablement votre session de débogage. </translation> + <translation type="obsolete">Active le débogage inversé. Sélectionner cette option active le débogage inversé. Note : cette fonction est très lente et instable du côté de GDB. Elle montre un comportement imprédictible lors du retour en arrière d'appels système et détruira très probablement votre session de débogage. </translation> </message> <message> <source>Try to set breakpoints in plugins always automatically</source> @@ -10143,7 +10143,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source><html><head/><body><p>Selecting this enables reverse debugging.</p><.p><b>Note:</b>This feature is very slow and unstable on the GDB side. It exhibits unpredictable behaviour when going backwards over system calls and is very likely to destroy your debugging session.</p><body></html></source> - <translation type="obsolete"><html><head/><body><p>Sélectionner ceci active le débogage inversé.</p><.p><b>Note&nbsp;: </b>cette fonctionnalité est très lente et non stable avec GDB. Elle montre des comportements non prédictibles lorsque vous revenez en arrière sur des appels systèmes et détruirera très certainement votre session de débogage.</p><body></html></translation> + <translation type="obsolete"><html><head/><body><p>Sélectionner ceci active le débogage inversé.</p><.p><b>Note : </b>cette fonctionnalité est très lente et non stable avec GDB. Elle montre des comportements non prédictibles lorsque vous revenez en arrière sur des appels systèmes et détruirera très certainement votre session de débogage.</p><body></html></translation> </message> <message> <source>Always try to set breakpoints in plugins automatically</source> @@ -10170,15 +10170,15 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un <name>GenericMakeStep</name> <message> <source>Override %1:</source> - <translation type="obsolete">Écraser %1&nbsp;:</translation> + <translation type="obsolete">Écraser %1 :</translation> </message> <message> <source>Make arguments:</source> - <translation type="obsolete">Arguments de Make&nbsp;:</translation> + <translation type="obsolete">Arguments de Make :</translation> </message> <message> <source>Targets:</source> - <translation type="obsolete">Cibles&nbsp;:</translation> + <translation type="obsolete">Cibles :</translation> </message> </context> <context> @@ -10209,7 +10209,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>New configuration name:</source> - <translation>Nom de la nouvelle configuration&nbsp;:</translation> + <translation>Nom de la nouvelle configuration :</translation> </message> <message> <source>New configuration</source> @@ -10217,22 +10217,22 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>New Configuration Name:</source> - <translation type="obsolete">Nom de la nouvelle configuration&nbsp;:</translation> + <translation type="obsolete">Nom de la nouvelle configuration :</translation> </message> </context> <context> <name>GenericProjectManager::Internal::GenericBuildSettingsWidget</name> <message> <source>Configuration Name:</source> - <translation type="obsolete">Nom de la configuration&nbsp;:</translation> + <translation type="obsolete">Nom de la configuration :</translation> </message> <message> <source>Build directory:</source> - <translation>Répertoire de compilation&nbsp;:</translation> + <translation>Répertoire de compilation :</translation> </message> <message> <source>Tool chain:</source> - <translation type="obsolete">Chaîne de compilation&nbsp;:</translation> + <translation type="obsolete">Chaîne de compilation :</translation> </message> <message> <source><Invalid tool chain></source> @@ -10240,7 +10240,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Tool Chain:</source> - <translation type="obsolete">Chaîne d'outils&nbsp;:</translation> + <translation type="obsolete">Chaîne d'outils :</translation> </message> <message> <source>Generic Manager</source> @@ -10256,11 +10256,11 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Override %1:</source> - <translation>Écraser %1&nbsp;:</translation> + <translation>Écraser %1 :</translation> </message> <message> <source><b>Make:</b> %1 %2</source> - <translation type="obsolete"><b>Make&nbsp;: </b>%1 %2</translation> + <translation type="obsolete"><b>Make : </b>%1 %2</translation> </message> </context> <context> @@ -10314,11 +10314,11 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Project name:</source> - <translation>Nom du projet&nbsp;:</translation> + <translation>Nom du projet :</translation> </message> <message> <source>Location:</source> - <translation>Emplacement&nbsp;:</translation> + <translation>Emplacement :</translation> </message> <message> <source>File Selection</source> @@ -10349,11 +10349,11 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Repository:</source> - <translation type="obsolete">Dépôt&nbsp;:</translation> + <translation type="obsolete">Dépôt :</translation> </message> <message> <source>Remote branches</source> - <translatorcomment>traduction de remote ici&nbsp;?</translatorcomment> + <translatorcomment>traduction de remote ici ?</translatorcomment> <translation type="obsolete">Branches distantes</translation> </message> <message> @@ -10386,15 +10386,15 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Checkout branch?</source> - <translation>Importer la branche&nbsp;?</translation> + <translation>Importer la branche ?</translation> </message> <message> <source>Would you like to delete the tag '%1'?</source> - <translation>Souhaitez-vous supprimer le tag "%1"&nbsp;?</translation> + <translation>Souhaitez-vous supprimer le tag "%1" ?</translation> </message> <message> <source>Would you like to delete the <b>unmerged</b> branch '%1'?</source> - <translation>Voulez-vous supprimer la branche <b>non mergée</b> "%1"&nbsp;?</translation> + <translation>Voulez-vous supprimer la branche <b>non mergée</b> "%1" ?</translation> </message> <message> <source>Delete Branch</source> @@ -10418,7 +10418,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Would you like to delete the branch '%1'?</source> - <translation>Souhaitez-vous supprimer la branche "%1"&nbsp;?</translation> + <translation>Souhaitez-vous supprimer la branche "%1" ?</translation> </message> <message> <source>Failed to delete branch</source> @@ -10438,7 +10438,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Would you like to create a local branch '%1' tracking the remote branch '%2'?</source> - <translation type="obsolete">Souhaitez-vous créer une branche locale '%1' pour la branche distante "%2"&nbsp;?</translation> + <translation type="obsolete">Souhaitez-vous créer une branche locale '%1' pour la branche distante "%2" ?</translation> </message> <message> <source>Create branch</source> @@ -10446,7 +10446,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Failed to create a tracking branch</source> - <translatorcomment>tracking branch&nbsp;?</translatorcomment> + <translatorcomment>tracking branch ?</translatorcomment> <translation type="obsolete">Échec de la création d'une branche de suivi</translation> </message> <message> @@ -10558,15 +10558,15 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Error: Unknown reference</source> - <translation>Erreur&nbsp;: référence inconnue</translation> + <translation>Erreur : référence inconnue</translation> </message> <message> <source>Error: Bad working directory.</source> - <translation>Erreur&nbsp;: répertoire de travail incorrect.</translation> + <translation>Erreur : répertoire de travail incorrect.</translation> </message> <message> <source>Error: Could not start Git.</source> - <translation>Erreur&nbsp;: ne peut pas démarrer Git.</translation> + <translation>Erreur : ne peut pas démarrer Git.</translation> </message> <message> <source>Fetching commit data...</source> @@ -10590,7 +10590,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Select</source> @@ -10598,7 +10598,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Change:</source> - <translation>Modification&nbsp;:</translation> + <translation>Modification :</translation> </message> <message> <source>HEAD</source> @@ -10609,7 +10609,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un <name>Git::Internal::GitClient</name> <message> <source>Note that the git plugin for QtCreator is not able to interact with the server so far. Thus, manual ssh-identification etc. will not work.</source> - <translatorcomment>marchera ou marcheront&nbsp;? Le etc laisse sous-entendre qu'il y aurait d'autres choses qui ne marcheraient pas.</translatorcomment> + <translatorcomment>marchera ou marcheront ? Le etc laisse sous-entendre qu'il y aurait d'autres choses qui ne marcheraient pas.</translatorcomment> <translation type="obsolete">Notez que le plug-in git pour Qt Creator n'est pas capable d'interagir directement avec le serveur. Ainsi, l'identification ssh manuelle et d'autres ne marcheront pas.</translation> </message> <message> @@ -10624,7 +10624,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un <source>Executing: %1 %2 </source> <extracomment>Executing: <executable> <arguments></extracomment> - <translation type="obsolete">Exécution de&nbsp;: %1 %2</translation> + <translation type="obsolete">Exécution de : %1 %2</translation> </message> <message> <source>Waiting for data...</source> @@ -10665,46 +10665,46 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un <message> <source>Unable to checkout %1 of %2: %3</source> <extracomment>Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message</extracomment> - <translation type="obsolete">Impossible de réaliser l'import %1 de %2&nbsp;: %3</translation> + <translation type="obsolete">Impossible de réaliser l'import %1 de %2 : %3</translation> </message> <message numerus="yes"> <source>Unable to add %n file(s) to %1: %2</source> <translation type="obsolete"> - <numerusform>Impossible d'ajouter %n fichier dans %1&nbsp;: %2</numerusform> - <numerusform>Impossible d'ajouter %n fichiers dans %1&nbsp;: %2</numerusform> + <numerusform>Impossible d'ajouter %n fichier dans %1 : %2</numerusform> + <numerusform>Impossible d'ajouter %n fichiers dans %1 : %2</numerusform> </translation> </message> <message numerus="yes"> <source>Unable to remove %n file(s) from %1: %2</source> <translation type="obsolete"> - <numerusform>Impossible de supprimer %n fichier de %1&nbsp;: %2</numerusform> - <numerusform>Impossible de supprimer %n fichiers de %1&nbsp;: %2</numerusform> + <numerusform>Impossible de supprimer %n fichier de %1 : %2</numerusform> + <numerusform>Impossible de supprimer %n fichiers de %1 : %2</numerusform> </translation> </message> <message> <source>Unable to move from %1 to %2: %3</source> - <translation type="obsolete">Impossible de déplacer de %1 vers %2&nbsp;: %3</translation> + <translation type="obsolete">Impossible de déplacer de %1 vers %2 : %3</translation> </message> <message> <source>Unable to reset %1: %2</source> - <translation type="obsolete">Impossible de réinitialiser %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible de réinitialiser %1 : %2</translation> </message> <message numerus="yes"> <source>Unable to reset %n file(s) in %1: %2</source> <translation type="obsolete"> - <numerusform>Impossible de réinitialiser %n fichier dans %1&nbsp;: %2</numerusform> - <numerusform>Impossible de réinitialiser %n fichiers dans %1&nbsp;: %2</numerusform> + <numerusform>Impossible de réinitialiser %n fichier dans %1 : %2</numerusform> + <numerusform>Impossible de réinitialiser %n fichiers dans %1 : %2</numerusform> </translation> </message> <message> <source>Unable to checkout %1 of %2 in %3: %4</source> <extracomment>Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message</extracomment> - <translation type="obsolete">Impossible de réaliser l'import %1 de %2 dans %3&nbsp;: %4</translation> + <translation type="obsolete">Impossible de réaliser l'import %1 de %2 dans %3 : %4</translation> </message> <message> <source>Unable to find parent revisions of %1 in %2: %3</source> <extracomment>Failed to find parent revisions of a SHA1 for "annotate previous"</extracomment> - <translation type="obsolete">Impossible de trouver la révision parente de %1 dans %2&nbsp;: %3</translation> + <translation type="obsolete">Impossible de trouver la révision parente de %1 dans %2 : %3</translation> </message> <message> <source>Invalid revision</source> @@ -10712,15 +10712,15 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Unable to retrieve branch of %1: %2</source> - <translation type="obsolete">Impossible d'obtenir la branche dans %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'obtenir la branche dans %1 : %2</translation> </message> <message> <source>Unable to retrieve top revision of %1: %2</source> - <translation type="obsolete">Impossible d'obtenir la dernière révision dans %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'obtenir la dernière révision dans %1 : %2</translation> </message> <message> <source>Unable to describe revision %1 in %2: %3</source> - <translation type="obsolete">Impossible de décrire la révision %1 dans %2&nbsp;: %3</translation> + <translation type="obsolete">Impossible de décrire la révision %1 dans %2 : %3</translation> </message> <message> <source>Stash Description</source> @@ -10728,7 +10728,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Description:</source> - <translation>Description&nbsp;:</translation> + <translation>Description :</translation> </message> <message> <source>Unable to resolve stash message '%1' in %2</source> @@ -10737,25 +10737,25 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Unable to run a 'git branch' command in %1: %2</source> - <translation type="obsolete">Impossible d'exécuter la commande 'git branch' dans %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter la commande 'git branch' dans %1 : %2</translation> </message> <message> <source>Unable to run 'git show' in %1: %2</source> - <translation type="obsolete">Impossible d'exécuter 'git show' dans %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter 'git show' dans %1 : %2</translation> </message> <message> <source>Unable to run 'git clean' in %1: %2</source> - <translation type="obsolete">Impossible d'exécuter 'git clean' dans %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter 'git clean' dans %1 : %2</translation> </message> <message> <source>There were warnings while applying %1 to %2: %3</source> - <translation type="obsolete">Avertissements lors de l'application du patch %1 dans %2&nbsp;: + <translation type="obsolete">Avertissements lors de l'application du patch %1 dans %2 : %3</translation> </message> <message> <source>Unable apply patch %1 to %2: %3</source> - <translation type="obsolete">Impossible d'appliquer le patch %1 dans %2&nbsp;: %3</translation> + <translation type="obsolete">Impossible d'appliquer le patch %1 dans %2 : %3</translation> </message> <message> <source>Cannot locate %1.</source> @@ -10785,46 +10785,46 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Unable to restore stash %1: %2</source> - <translation type="obsolete">Impossible de restaurer le stash %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible de restaurer le stash %1 : %2</translation> </message> <message> <source>Unable to restore stash %1 to branch %2: %3</source> - <translation type="obsolete">Impossible de restaurer le stash %1 dans la branche %2&nbsp;: %3</translation> + <translation type="obsolete">Impossible de restaurer le stash %1 dans la branche %2 : %3</translation> </message> <message> <source>Unable to remove stashes of %1: %2</source> - <translation type="obsolete">Impossible de supprimer des stashes de %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible de supprimer des stashes de %1 : %2</translation> </message> <message> <source>Unable to remove stash %1 of %2: %3</source> - <translation type="obsolete">Impossible de supprimer le stash %1 de %2&nbsp;: %3</translation> + <translation type="obsolete">Impossible de supprimer le stash %1 de %2 : %3</translation> </message> <message> <source>Unable retrieve stash list of %1: %2</source> - <translation type="obsolete">Impossible d'obtenir une liste des stashes dans %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'obtenir une liste des stashes dans %1 : %2</translation> </message> <message> <source>Unable to determine git version: %1</source> - <translation type="obsolete">impossible de déterminer la version git&nbsp;: %1</translation> + <translation type="obsolete">impossible de déterminer la version git : %1</translation> </message> <message numerus="yes"> <source>Unable to checkout %n file(s) in %1: %2</source> <translation type="obsolete"> - <numerusform>Impossible de réaliser le checkout de %n fichier dans %1&nbsp;: %2</numerusform> - <numerusform>Impossible de réaliser le checkout de %n fichiers dans %1&nbsp;: %2</numerusform> + <numerusform>Impossible de réaliser le checkout de %n fichier dans %1 : %2</numerusform> + <numerusform>Impossible de réaliser le checkout de %n fichiers dans %1 : %2</numerusform> </translation> </message> <message> <source>Unable stash in %1: %2</source> - <translation type="obsolete">Impossible d'utiliser stash dans %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'utiliser stash dans %1 : %2</translation> </message> <message> <source>Unable to run branch command: %1: %2</source> - <translation type="obsolete">Impossible d'exécuter la commande branch&nbsp;: %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter la commande branch : %1 : %2</translation> </message> <message> <source>Unable to run show: %1: %2</source> - <translation type="obsolete">Impossible d'exécuter show&nbsp;: %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter show : %1 : %2</translation> </message> <message> <source>Changes</source> @@ -10832,11 +10832,11 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>You have modified files. Would you like to stash your changes?</source> - <translation type="obsolete">Vous avez modifié des fichiers. Souhaitez-vous mettre vos changements dans le stash&nbsp;?</translation> + <translation type="obsolete">Vous avez modifié des fichiers. Souhaitez-vous mettre vos changements dans le stash ?</translation> </message> <message> <source>Unable to obtain the status: %1</source> - <translation type="obsolete">Impossible d'obtenir le statut&nbsp;: %1</translation> + <translation type="obsolete">Impossible d'obtenir le statut : %1</translation> </message> <message> <source>The repository %1 is not initialized yet.</source> @@ -10861,9 +10861,9 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un <source>Unable to commit %n file(s): %1 </source> <translation type="obsolete"> - <numerusform>Impossible de commiter %n fichier&nbsp;: %1 + <numerusform>Impossible de commiter %n fichier : %1 </numerusform> - <numerusform>Impossible de commiter %n fichiers&nbsp;: %1 + <numerusform>Impossible de commiter %n fichiers : %1 </numerusform> </translation> </message> @@ -10877,7 +10877,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Cannot run "%1 %2" in "%2": %3</source> - <translation>Impossible de lancer "%1 %2" in "%2"&nbsp;: %3</translation> + <translation>Impossible de lancer "%1 %2" in "%2" : %3</translation> </message> <message> <source>Git Diff "%1"</source> @@ -10910,65 +10910,65 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un <message> <source>Cannot checkout "%1" of "%2": %3</source> <extracomment>Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message</extracomment> - <translation>Impossible de réaliser l'import "%1" de "%2"&nbsp;: %3</translation> + <translation>Impossible de réaliser l'import "%1" de "%2" : %3</translation> </message> <message> <source>Cannot obtain log of "%1": %2</source> - <translation>Impossible d'obtenir le journal de "%1"&nbsp;: %2</translation> + <translation>Impossible d'obtenir le journal de "%1" : %2</translation> </message> <message numerus="yes"> <source>Cannot add %n file(s) to "%1": %2</source> - <translatorcomment>singulier en français&nbsp;: entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> + <translatorcomment>singulier en français : entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> <translation> - <numerusform>Impossible d'ajouter un fichier dans "%1"&nbsp;: %2</numerusform> - <numerusform>Impossible d'ajouter %n fichiers dans "%1"&nbsp;: %2</numerusform> + <numerusform>Impossible d'ajouter un fichier dans "%1" : %2</numerusform> + <numerusform>Impossible d'ajouter %n fichiers dans "%1" : %2</numerusform> </translation> </message> <message numerus="yes"> <source>Cannot remove %n file(s) from "%1": %2</source> - <translatorcomment>singulier en français&nbsp;: entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> + <translatorcomment>singulier en français : entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> <translation> - <numerusform>Impossible de supprimer un fichier de "%1"&nbsp;: %2</numerusform> - <numerusform>Impossible de supprimer %n fichiers de "%1"&nbsp;: %2</numerusform> + <numerusform>Impossible de supprimer un fichier de "%1" : %2</numerusform> + <numerusform>Impossible de supprimer %n fichiers de "%1" : %2</numerusform> </translation> </message> <message> <source>Cannot move from "%1" to "%2": %3</source> - <translation>Impossible de déplacer de "%1" vers "%2"&nbsp;: %3</translation> + <translation>Impossible de déplacer de "%1" vers "%2" : %3</translation> </message> <message> <source>Cannot reset "%1": %2</source> - <translation>Impossible de réinitialiser "%1"&nbsp;: %2</translation> + <translation>Impossible de réinitialiser "%1" : %2</translation> </message> <message numerus="yes"> <source>Cannot reset %n file(s) in "%1": %2</source> - <translatorcomment>singulier en français&nbsp;: entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> + <translatorcomment>singulier en français : entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> <translation> - <numerusform>Impossible de réinitialiser un fichier dans "%1"&nbsp;: %2</numerusform> - <numerusform>Impossible de réinitialiser %n fichiers dans "%1"&nbsp;: %2</numerusform> + <numerusform>Impossible de réinitialiser un fichier dans "%1" : %2</numerusform> + <numerusform>Impossible de réinitialiser %n fichiers dans "%1" : %2</numerusform> </translation> </message> <message> <source>Cannot checkout "%1" of %2 in "%3": %4</source> <extracomment>Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message</extracomment> - <translation>Impossible de réaliser l'import "%1" de %2 dans "%3"&nbsp;: %4</translation> + <translation>Impossible de réaliser l'import "%1" de %2 dans "%3" : %4</translation> </message> <message> <source>Cannot find parent revisions of "%1" in "%2": %3</source> <extracomment>Failed to find parent revisions of a SHA1 for "annotate previous"</extracomment> - <translation>Impossible de trouver la révision parente de "%1" dans "%2"&nbsp;: %3</translation> + <translation>Impossible de trouver la révision parente de "%1" dans "%2" : %3</translation> </message> <message> <source>Cannot execute "git %1" in "%2": %3</source> - <translation>Impossible d'exécuter "git %1" dans "%2"&nbsp;: %3</translation> + <translation>Impossible d'exécuter "git %1" dans "%2" : %3</translation> </message> <message> <source>Cannot retrieve branch of "%1": %2</source> - <translation>Impossible d'obtenir la branche dans "%1"&nbsp;: %2</translation> + <translation>Impossible d'obtenir la branche dans "%1" : %2</translation> </message> <message> <source>Cannot run "%1" in "%2": %3</source> - <translation type="obsolete">Impossible de lancer "%1" in "%2"&nbsp;: %3</translation> + <translation type="obsolete">Impossible de lancer "%1" in "%2" : %3</translation> </message> <message> <source>REBASING</source> @@ -10992,15 +10992,15 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Cannot retrieve top revision of "%1": %2</source> - <translation>Impossible d'obtenir la dernière révision dans "%1"&nbsp;: %2</translation> + <translation>Impossible d'obtenir la dernière révision dans "%1" : %2</translation> </message> <message> <source>Cannot describe revision "%1" in "%2": %3</source> - <translation>Impossible de décrire la révision "%1" dans "%2"&nbsp;: %3</translation> + <translation>Impossible de décrire la révision "%1" dans "%2" : %3</translation> </message> <message> <source>Cannot stash in "%1": %2</source> - <translation type="obsolete">Impossible d'utiliser la remise dans "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'utiliser la remise dans "%1" : %2</translation> </message> <message> <source>Cannot resolve stash message "%1" in "%2".</source> @@ -11009,7 +11009,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Cannot retrieve submodule status of "%1": %2</source> - <translation>Impossible d'obtenir le statut des sous-modules de "%1"&nbsp;: %2</translation> + <translation>Impossible d'obtenir le statut des sous-modules de "%1" : %2</translation> </message> <message> <source>Submodules Found</source> @@ -11017,7 +11017,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Would you like to update submodules?</source> - <translation>Souhaitez-vous mettre à jour les sous-modules&nbsp;?</translation> + <translation>Souhaitez-vous mettre à jour les sous-modules ?</translation> </message> <message> <source>Continue Rebase</source> @@ -11025,7 +11025,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un </message> <message> <source>Rebase is in progress. What do you want to do?</source> - <translation>Changement de base en cours. Que voulez-vous faire&nbsp;?</translation> + <translation>Changement de base en cours. Que voulez-vous faire ?</translation> </message> <message> <source>Continue</source> @@ -11039,7 +11039,7 @@ est ignorée, et un seul 'Entrer dans' pour l'émission d'un <source>You need to commit changes to finish merge. Commit now?</source> <translation>Vous devez soumettre vos changements pour terminer la fusion. -Soumettre maintenant&nbsp;?</translation> +Soumettre maintenant ?</translation> </message> <message> <source>Continue Revert</source> @@ -11049,7 +11049,7 @@ Soumettre maintenant&nbsp;?</translation> <source>You need to commit changes to finish revert. Commit now?</source> <translation>Vous devez soumettre vos changements pour terminer le rétablisssement. -Soumettre maintenant&nbsp;?</translation> +Soumettre maintenant ?</translation> </message> <message numerus="yes"> <source>Committed %n file(s).</source> @@ -11067,7 +11067,7 @@ Soumettre maintenant&nbsp;?</translation> </message> <message> <source>Cannot set tracking branch: %1</source> - <translation>Impossible de suivre la branche&nbsp;: %1</translation> + <translation>Impossible de suivre la branche : %1</translation> </message> <message> <source>Conflicts detected with commit %1.</source> @@ -11076,7 +11076,7 @@ Soumettre maintenant&nbsp;?</translation> <message> <source>Conflicts detected with files: %1</source> - <translation>Conflits détectés avec les fichiers&nbsp;: + <translation>Conflits détectés avec les fichiers : %1</translation> </message> <message> @@ -11111,7 +11111,7 @@ Soumettre maintenant&nbsp;?</translation> <source>You need to commit changes to finish cherry-picking. Commit now?</source> <translation>Vous devez valider les changements pour finir le cherry-picking. -Valider maintenant&nbsp;?</translation> +Valider maintenant ?</translation> </message> <message> <source>No changes found. </source> @@ -11147,7 +11147,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Cannot determine Git version: %1</source> - <translation>Impossible de déterminer la version de git&nbsp;: %1</translation> + <translation>Impossible de déterminer la version de git : %1</translation> </message> <message> <source>Uncommitted Changes Found</source> @@ -11155,7 +11155,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>What would you like to do with local changes in:</source> - <translation>Que souhaitez-vous faire avec les changements locaux dans&nbsp;:</translation> + <translation>Que souhaitez-vous faire avec les changements locaux dans :</translation> </message> <message> <source>Stash && Pop</source> @@ -11191,37 +11191,37 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Cannot run "git branch" in "%1": %2</source> - <translation type="obsolete">Impossible d'exécuter "git branch" dans "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter "git branch" dans "%1" : %2</translation> </message> <message> <source>Cannot run "git remote" in "%1": %2</source> - <translation type="obsolete">Impossible d'exécuter "git remote" dans "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter "git remote" dans "%1" : %2</translation> </message> <message> <source>Cannot run "git show" in "%1": %2</source> - <translation type="obsolete">Impossible d'exécuter "git show" dans "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter "git show" dans "%1" : %2</translation> </message> <message> <source>Cannot run "git clean" in "%1": %2</source> - <translation type="obsolete">Impossible d'exécuter "git clean" dans "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter "git clean" dans "%1" : %2</translation> </message> <message> <source>There were warnings while applying "%1" to "%2": %3</source> - <translation>Avertissements lors de l'application du patch "%1" dans "%2"&nbsp;: + <translation>Avertissements lors de l'application du patch "%1" dans "%2" : %3</translation> </message> <message> <source>Cannot apply patch "%1" to "%2": %3</source> - <translation>Impossible d'appliquer le patch "%1" dans "%2"&nbsp;: %3</translation> + <translation>Impossible d'appliquer le patch "%1" dans "%2" : %3</translation> </message> <message> <source>Would you like to stash your changes?</source> - <translation type="obsolete">Souhaitez-vous remiser vos changements&nbsp;?</translation> + <translation type="obsolete">Souhaitez-vous remiser vos changements ?</translation> </message> <message> <source>Cannot obtain status: %1</source> - <translation>Impossible d'obtenir le statut&nbsp;: %1</translation> + <translation>Impossible d'obtenir le statut : %1</translation> </message> <message> <source>Cannot locate "%1".</source> @@ -11268,11 +11268,11 @@ Valider maintenant&nbsp;?</translation> <message numerus="yes"> <source>Cannot commit %n file(s): %1 </source> - <translatorcomment>singulier en français&nbsp;: entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> + <translatorcomment>singulier en français : entre zéro et un uniquement, d'où l'absence de %n au singulier</translatorcomment> <translation> - <numerusform>Impossible de commiter un fichier&nbsp;: %1 + <numerusform>Impossible de commiter un fichier : %1 </numerusform> - <numerusform>Impossible de commiter %n fichiers&nbsp;: %1 + <numerusform>Impossible de commiter %n fichiers : %1 </numerusform> </translation> </message> @@ -11282,7 +11282,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>The file has been changed. Do you want to revert it?</source> - <translation>Le fichier a été modifié. Voulez-vous le rétablir&nbsp;?</translation> + <translation>Le fichier a été modifié. Voulez-vous le rétablir ?</translation> </message> <message> <source>The file is not modified.</source> @@ -11314,27 +11314,27 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Cannot restore stash "%1": %2</source> - <translation type="obsolete">Impossible de restaurer la remise "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de restaurer la remise "%1" : %2</translation> </message> <message> <source>Cannot restore stash "%1" to branch "%2": %3</source> - <translation type="obsolete">Impossible de restaurer la remise "%1" dans la branche "%2"&nbsp;: %3</translation> + <translation type="obsolete">Impossible de restaurer la remise "%1" dans la branche "%2" : %3</translation> </message> <message> <source>Cannot remove stashes of "%1": %2</source> - <translation type="obsolete">Impossible de supprimer les remises de "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de supprimer les remises de "%1" : %2</translation> </message> <message> <source>Cannot remove stash "%1" of "%2": %3</source> - <translation type="obsolete">Impossible de supprimer la remise "%1" de "%2"&nbsp;: %3</translation> + <translation type="obsolete">Impossible de supprimer la remise "%1" de "%2" : %3</translation> </message> <message> <source>Cannot retrieve stash list of "%1": %2</source> - <translation type="obsolete">Impossible d'obtenir la liste de la remise dans "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'obtenir la liste de la remise dans "%1" : %2</translation> </message> <message> <source>Cannot determine git version: %1</source> - <translation>Impossible de déterminer la version de git&nbsp;: %1</translation> + <translation>Impossible de déterminer la version de git : %1</translation> </message> </context> <context> @@ -11381,7 +11381,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Blame</source> - <translatorcomment>Traduction autre&nbsp;?</translatorcomment> + <translatorcomment>Traduction autre ?</translatorcomment> <translation type="obsolete">Blâmer</translation> </message> <message> @@ -11404,7 +11404,7 @@ Valider maintenant&nbsp;?</translation> <source>Undo all pending changes to the repository %1?</source> <translation type="obsolete">Défaire tous les changements en attente sur le dépôt -%1&nbsp;? </translation> +%1 ? </translation> </message> <message> <source>Undo Changes</source> @@ -11456,7 +11456,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Undo Unstaged Changes</source> - <translatorcomment>quid de unstaged&nbsp;? pas sur^ => cf ci dessus "unstage" a été traduit par "retiré du staging", donc pourquoi pas "retirés du staging" pour être cohérent (mais j'avoue ne pas savoir si unstage=retiré du staging est correct ;) ) [pnr]</translatorcomment> + <translatorcomment>quid de unstaged ? pas sur^ => cf ci dessus "unstage" a été traduit par "retiré du staging", donc pourquoi pas "retirés du staging" pour être cohérent (mais j'avoue ne pas savoir si unstage=retiré du staging est correct ;) ) [pnr]</translatorcomment> <translation>Défaire les changements non mis en cache</translation> </message> <message> @@ -11646,7 +11646,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Push</source> - <translatorcomment>Faire un push ou push tout court&nbsp;?</translatorcomment> + <translatorcomment>Faire un push ou push tout court ?</translatorcomment> <translation>Push</translation> </message> <message> @@ -11661,7 +11661,7 @@ Valider maintenant&nbsp;?</translation> <source>Would you like to revert all pending changes to the repository %1?</source> <translation type="obsolete">Souhaitez vous annuler tous les changements non sauvés dans le dépôt -%1&nbsp;?</translation> +%1 ?</translation> </message> <message> <source>Unable to retrieve file list</source> @@ -11689,7 +11689,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>List Stashes</source> - <translatorcomment>stash&nbsp;?</translatorcomment> + <translatorcomment>stash ?</translatorcomment> <translation type="obsolete">Lister les stashes</translation> </message> <message> @@ -11905,7 +11905,7 @@ Valider maintenant&nbsp;?</translation> <source>Revert all pending changes to the repository %1?</source> <translation type="obsolete">Annuler tous les changements en attente sur le dépôt -%1&nbsp;? </translation> +%1 ? </translation> </message> <message> <source>Amend %1</source> @@ -11925,7 +11925,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Git will not accept this commit. Do you want to continue to edit it?</source> - <translation>Git n'acceptera pas ce commit. Voulez-vous continuer à l'éditer&nbsp;? </translation> + <translation>Git n'acceptera pas ce commit. Voulez-vous continuer à l'éditer ? </translation> </message> <message> <source>Repository Clean</source> @@ -11945,7 +11945,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Would you like to revert all pending changes to the project?</source> - <translation type="obsolete">Souhaitez-vous rétablir toutes les modifications en attente sur le projet&nbsp;?</translation> + <translation type="obsolete">Souhaitez-vous rétablir toutes les modifications en attente sur le projet ?</translation> </message> <message> <source>Another submit is currently being executed.</source> @@ -11953,7 +11953,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Cannot create temporary file: %1</source> - <translation type="obsolete">Impossible de créer un fichier temporaire&nbsp;: %1</translation> + <translation type="obsolete">Impossible de créer un fichier temporaire : %1</translation> </message> <message> <source>Closing git editor</source> @@ -11961,11 +11961,11 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Do you want to commit the change?</source> - <translation>Voulez vous envoyer les changements&nbsp;?</translation> + <translation>Voulez vous envoyer les changements ?</translation> </message> <message> <source>The commit message check failed. Do you want to commit the change?</source> - <translation type="obsolete">La vérification du message de commit a échoué. Voulez-vous soumettre vos modifications&nbsp;?</translation> + <translation type="obsolete">La vérification du message de commit a échoué. Voulez-vous soumettre vos modifications ?</translation> </message> </context> <context> @@ -11990,7 +11990,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Repository:</source> - <translation>Dépôt&nbsp;:</translation> + <translation>Dépôt :</translation> </message> <message> <source>repository</source> @@ -11998,7 +11998,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Branch:</source> - <translation>Branche&nbsp;:</translation> + <translation>Branche :</translation> </message> <message> <source>branch</source> @@ -12010,15 +12010,15 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Author:</source> - <translation>Auteur&nbsp;:</translation> + <translation>Auteur :</translation> </message> <message> <source>Email:</source> - <translation>Email&nbsp;:</translation> + <translation>Email :</translation> </message> <message> <source>By&pass hooks</source> - <translatorcomment>contexte&nbsp;? -> Les hooks dans git (ou SVN) sont des checks faites avant et après un commit. D'ailleurs, le projet Qt utilise les hooks&nbsp;:P . Dans le livre suivant, j'ai trouvé&nbsp;: http://git-scm.com/book/fr/Personnalisation-de-Git-Crochets-Git </translatorcomment> + <translatorcomment>contexte ? -> Les hooks dans git (ou SVN) sont des checks faites avant et après un commit. D'ailleurs, le projet Qt utilise les hooks :P . Dans le livre suivant, j'ai trouvé : http://git-scm.com/book/fr/Personnalisation-de-Git-Crochets-Git </translatorcomment> <translation>&Éviter les crochets</translation> </message> </context> @@ -12030,7 +12030,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Type to create a new branch</source> - <translatorcomment>Type pas facile à traduire dans ce contexte... Taper&nbsp;?</translatorcomment> + <translatorcomment>Type pas facile à traduire dans ce contexte... Taper ?</translatorcomment> <translation type="obsolete">Saisir pour créer une nouvelle branche</translation> </message> </context> @@ -12042,7 +12042,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>PATH:</source> - <translation type="obsolete">PATH&nbsp;:</translation> + <translation type="obsolete">PATH :</translation> </message> <message> <source>From system</source> @@ -12050,7 +12050,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source><b>Note:</b></source> - <translation><b>Note&nbsp;:</b></translation> + <translation><b>Note :</b></translation> </message> <message> <source>Git needs to find Perl in the environment as well.</source> @@ -12058,7 +12058,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Log commit display count:</source> - <translation type="obsolete">Nombre de commits à afficher dans le log&nbsp;:</translation> + <translation type="obsolete">Nombre de commits à afficher dans le log :</translation> </message> <message> <source>Note that huge amount of commits might take some time.</source> @@ -12066,7 +12066,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Timeout (seconds):</source> - <translation type="obsolete">Timeout (secondes)&nbsp;: </translation> + <translation type="obsolete">Timeout (secondes) : </translation> </message> <message> <source>Prompt to submit</source> @@ -12098,7 +12098,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Timeout:</source> - <translation>Timeout&nbsp;:</translation> + <translation>Timeout :</translation> </message> <message> <source>s</source> @@ -12134,7 +12134,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Customize Environment:</source> @@ -12154,7 +12154,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Prepend to PATH:</source> - <translation>Préfixe pour PATH&nbsp;:</translation> + <translation>Préfixe pour PATH :</translation> </message> <message> <source>Repository browser</source> @@ -12162,7 +12162,7 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Command:</source> - <translation>Commande&nbsp;:</translation> + <translation>Commande :</translation> </message> <message> <source>Show tags in Branches dialog</source> @@ -12204,30 +12204,30 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Hello world!</source> - <translation type="obsolete">Bonjour tout le monde&nbsp;!</translation> + <translation type="obsolete">Bonjour tout le monde !</translation> </message> <message> <source>Hello World PushButton!</source> - <translation type="obsolete">Bouton bonjour tout le monde&nbsp;!</translation> + <translation type="obsolete">Bouton bonjour tout le monde !</translation> </message> <message> <source>Hello World!</source> - <translation type="obsolete">Bonjour tout le monde&nbsp;!</translation> + <translation type="obsolete">Bonjour tout le monde !</translation> </message> <message> <source>Hello World! Beautiful day today, isn't it?</source> - <translation type="obsolete">Bonjour tout le monde! Belle journée aujourd'hui, n'est-ce pas&nbsp;?</translation> + <translation type="obsolete">Bonjour tout le monde! Belle journée aujourd'hui, n'est-ce pas ?</translation> </message> </context> <context> <name>HelloWorld::Internal::HelloWorldWindow</name> <message> <source>Focus me to activate my context!</source> - <translation type="obsolete">Donnez moi le focus pour activer mon contexte&nbsp;!</translation> + <translation type="obsolete">Donnez moi le focus pour activer mon contexte !</translation> </message> <message> <source>Hello, world!</source> - <translation type="obsolete">Bonjour tout le monde&nbsp;!</translation> + <translation type="obsolete">Bonjour tout le monde !</translation> </message> </context> <context> @@ -12281,11 +12281,11 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>Invalid documentation file:</source> - <translation>Fichier de documentation invalide&nbsp;:</translation> + <translation>Fichier de documentation invalide :</translation> </message> <message> <source>Namespace already registered:</source> - <translation>Espace de noms déjà inscrit&nbsp;:</translation> + <translation>Espace de noms déjà inscrit :</translation> </message> <message> <source>Registration failed</source> @@ -12297,12 +12297,12 @@ Valider maintenant&nbsp;?</translation> </message> <message> <source>The file %1 is not a valid Qt Help file!</source> - <translation type="obsolete">Le fichier %1 n'est pas un fichier d'aide Qt valide&nbsp;!</translation> + <translation type="obsolete">Le fichier %1 n'est pas un fichier d'aide Qt valide !</translation> </message> <message> <source>Cannot unregister documentation file %1!</source> - <translatorcomment>trad unregister&nbsp;?</translatorcomment> - <translation type="obsolete">Impossible de désinscrire le fichier de documentation %1&nbsp;!</translation> + <translatorcomment>trad unregister ?</translatorcomment> + <translation type="obsolete">Impossible de désinscrire le fichier de documentation %1 !</translation> </message> <message> <source>Add and remove compressed help files, .qch.</source> @@ -12358,7 +12358,7 @@ Add, modify, and remove document filters, which determine the documentation set </p></body></html></source> <translation type="obsolete"><html><body> <p> -Ajouter, modifier et supprimer des filtres de documents, qui détermine l'ensemble des contenus affichés dans le mode Aide. Les attributs sont définis dans les documents. Sélectionnez les pour afficher la documentation appropriée. Note&nbsp;: certains attributs sont définis dans plusieurs documents. +Ajouter, modifier et supprimer des filtres de documents, qui détermine l'ensemble des contenus affichés dans le mode Aide. Les attributs sont définis dans les documents. Sélectionnez les pour afficher la documentation appropriée. Note : certains attributs sont définis dans plusieurs documents. </p></body></html></translation> </message> <message> @@ -12603,7 +12603,7 @@ Ajouter, modifier et supprimer des filtres de documents, lesquels déterminent l <message> <source>Filtered by:</source> <translatorcomment>better than "filtré par" in the context</translatorcomment> - <translation>Filtre&nbsp;:</translation> + <translation>Filtre :</translation> </message> </context> <context> @@ -12661,7 +12661,7 @@ Ajouter, modifier et supprimer des filtres de documents, lesquels déterminent l </message> <message> <source><title>about:blank</title></source> - <translation type="obsolete"><title>À propos&nbsp;: vide</title></translation> + <translation type="obsolete"><title>À propos : vide</title></translation> </message> <message> <source><html><head><meta http-equiv="content-type" content="text/html; charset=UTF-8"><title>Error 404...</title></head><body><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div></body></source> @@ -12699,8 +12699,8 @@ Ajouter, modifier et supprimer des filtres de documents, lesquels déterminent l </message> <message> <source>The page could not be found!</source> - <translatorcomment>Passé&nbsp;?</translatorcomment> - <translation>La page n'a pas été trouvée&nbsp;!</translation> + <translatorcomment>Passé ?</translatorcomment> + <translation>La page n'a pas été trouvée !</translation> </message> <message> <source><li>Check that you have one or more documentation sets installed.</li></source> @@ -12708,7 +12708,7 @@ Ajouter, modifier et supprimer des filtres de documents, lesquels déterminent l </message> <message> <source><li>Check that you have installed the appropriate browser plug-in to support the file your loading.</li></source> - <translatorcomment>un peu bancal le "pour le navigateur"&nbsp;? >> un peu changé (was: "<li>Vérifiez que vous avez installé le plug-in approprié pour le navigateur qui accepte le fichier que vous chargez.</li>").</translatorcomment> + <translatorcomment>un peu bancal le "pour le navigateur" ? >> un peu changé (was: "<li>Vérifiez que vous avez installé le plug-in approprié pour le navigateur qui accepte le fichier que vous chargez.</li>").</translatorcomment> <translation><li>Vérifiez que vous avez installé le plug-in approprié au fichier que vous chargez dans le navigateur.</li></translation> </message> <message> @@ -12717,7 +12717,7 @@ Ajouter, modifier et supprimer des filtres de documents, lesquels déterminent l </message> <message> <source><li>If your computer or network is protected by a firewall or proxy, make sure the application is permitted to access the network.</li></source> - <translatorcomment>proxy -> serveur mandataire&nbsp;? -> en théorie, oui</translatorcomment> + <translatorcomment>proxy -> serveur mandataire ? -> en théorie, oui</translatorcomment> <translation><li>Si votre ordinateur ou votre réseau est protégé par un pare-feu ou un serveur mandataire, assurez-vous que l'application est autorisée à accéder au réseau.</li></translation> </message> </context> @@ -12725,7 +12725,7 @@ Ajouter, modifier et supprimer des filtres de documents, lesquels déterminent l <name>IndexWindow</name> <message> <source>&Look for:</source> - <translation>&Rechercher&nbsp;:</translation> + <translation>&Rechercher :</translation> </message> <message> <source>Open Link</source> @@ -12867,7 +12867,7 @@ Ajouter, modifier et supprimer des filtres de documents, lesquels déterminent l </message> <message> <source>&View</source> - <translatorcomment>Affichage&nbsp;?</translatorcomment> + <translatorcomment>Affichage ?</translatorcomment> <translation type="obsolete">&Vue</translation> </message> <message> @@ -12888,7 +12888,7 @@ Ajouter, modifier et supprimer des filtres de documents, lesquels déterminent l </message> <message> <source>Qml Errors:</source> - <translation type="obsolete">Erreurs QML&nbsp;:</translation> + <translation type="obsolete">Erreurs QML :</translation> </message> <message> <source> @@ -13011,11 +13011,11 @@ dans votre fichier .pro.</translation> <name>MakeStep</name> <message> <source>Override %1:</source> - <translation type="obsolete">Écraser %1&nbsp;:</translation> + <translation type="obsolete">Écraser %1 :</translation> </message> <message> <source>Make arguments:</source> - <translation type="obsolete">Arguments de Make&nbsp;:</translation> + <translation type="obsolete">Arguments de Make :</translation> </message> </context> <context> @@ -13033,7 +13033,7 @@ dans votre fichier .pro.</translation> </message> <message> <source>Filter:</source> - <translation type="obsolete">Filtre&nbsp;:</translation> + <translation type="obsolete">Filtre :</translation> </message> <message> <source>Clear</source> @@ -13052,7 +13052,7 @@ dans votre fichier .pro.</translation> </message> <message> <source>Open file extension with:</source> - <translation type="obsolete">Ouvrir ce type d'extension avec&nbsp;:</translation> + <translation type="obsolete">Ouvrir ce type d'extension avec :</translation> </message> </context> <context> @@ -13063,7 +13063,7 @@ dans votre fichier .pro.</translation> </message> <message> <source>Unable to launch "%1": %2</source> - <translation type="obsolete">Impossible de lancer "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de lancer "%1" : %2</translation> </message> <message> <source>"%1" timed out after %2ms.</source> @@ -13075,7 +13075,7 @@ dans votre fichier .pro.</translation> </message> <message> <source>"%1" terminated with exit code %2: %3</source> - <translation type="obsolete">"%1" terminé avec le code %2&nbsp;: %3</translation> + <translation type="obsolete">"%1" terminé avec le code %2 : %3</translation> </message> <message> <source>The client does not seem to contain any mapped files.</source> @@ -13092,7 +13092,7 @@ dans votre fichier .pro.</translation> <message> <source>Change Number:</source> <translatorcomment>?</translatorcomment> - <translation>Numéro du changement&nbsp;:</translation> + <translation>Numéro du changement :</translation> </message> </context> <context> @@ -13111,7 +13111,7 @@ dans votre fichier .pro.</translation> </message> <message> <source>Change %1: %2</source> - <translation>Modification %1&nbsp;: %2</translation> + <translation>Modification %1 : %2</translation> </message> </context> <context> @@ -13362,11 +13362,11 @@ dans votre fichier .pro.</translation> </message> <message> <source>The file has been changed. Do you want to revert it?</source> - <translation>Le fichier a été modifié. Voulez-vous le restaurer&nbsp;?</translation> + <translation>Le fichier a été modifié. Voulez-vous le restaurer ?</translation> </message> <message> <source>Do you want to revert all changes to the project "%1"?</source> - <translation>Souhaitez-vous annuler toutes les modifications sur le projet "%1"&nbsp;?</translation> + <translation>Souhaitez-vous annuler toutes les modifications sur le projet "%1" ?</translation> </message> <message> <source>Another submit is currently executed.</source> @@ -13398,37 +13398,37 @@ dans votre fichier .pro.</translation> </message> <message> <source>The commit message check failed. Do you want to submit this change list?</source> - <translation>La vérification du message de commit a échoué. Voulez-vous soumettre cette liste de changements&nbsp;?</translation> + <translation>La vérification du message de commit a échoué. Voulez-vous soumettre cette liste de changements ?</translation> </message> <message> <source>p4 submit failed: %1</source> - <translation>Échec de la soumission p4&nbsp;: %1</translation> + <translation>Échec de la soumission p4 : %1</translation> </message> <message> <source>Error running "where" on %1: %2</source> <extracomment>Failed to run p4 "where" to resolve a Perforce file name to a local file system name.</extracomment> - <translation>Erreur lors de l'exécution de "where" sur %1&nbsp;: %2</translation> + <translation>Erreur lors de l'exécution de "where" sur %1 : %2</translation> </message> <message> <source>The file is not mapped</source> <extracomment>File is not managed by Perforce</extracomment> - <translatorcomment>Ce fichier n'est pas "mappé"&nbsp;? -pierre: oups bien vu j'avais traduit le commentaire&nbsp;!&nbsp;:D nouvelle suggestion... -francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> + <translatorcomment>Ce fichier n'est pas "mappé" ? +pierre: oups bien vu j'avais traduit le commentaire ! :D nouvelle suggestion... +francis : voila une nouvelle suggestion :)</translatorcomment> <translation>Le fichier n'est pas référencé</translation> </message> <message> <source>Perforce repository: %1</source> - <translation>Dépôt perforce&nbsp;: %1</translation> + <translation>Dépôt perforce : %1</translation> </message> <message> <source>Perforce: Unable to determine the repository: %1</source> - <translation>Perforce&nbsp;: impossible de déterminer le dépôt&nbsp;: %1</translation> + <translation>Perforce : impossible de déterminer le dépôt : %1</translation> </message> <message> <source>Executing: %1 </source> - <translation type="obsolete">Exécution&nbsp;: %1 + <translation type="obsolete">Exécution : %1 </translation> </message> <message> @@ -13453,7 +13453,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Unable to write input data to process %1: %2</source> - <translation>Impossible d'écrire des données entrantes dans le processus %1&nbsp;: %2</translation> + <translation>Impossible d'écrire des données entrantes dans le processus %1 : %2</translation> </message> <message> <source>Perforce is not correctly configured.</source> @@ -13473,7 +13473,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Do you want to submit this change list?</source> - <translation>Voulez-vous soumettre cette liste de changement&nbsp;?</translation> + <translation>Voulez-vous soumettre cette liste de changement ?</translation> </message> <message> <source>The commit message check failed. Do you want to submit this change list</source> @@ -13501,7 +13501,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Invalid configuration: %1</source> - <translation type="obsolete">Configuration invalide&nbsp;: %1</translation> + <translation type="obsolete">Configuration invalide : %1</translation> </message> <message> <source>Timeout waiting for "where" (%1).</source> @@ -13509,7 +13509,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Error running "where" on %1: The file is not mapped</source> - <translation type="obsolete">Erreur d'exécution de "where" sur %1&nbsp;: le fichier n'est pas mappé</translation> + <translation type="obsolete">Erreur d'exécution de "where" sur %1 : le fichier n'est pas mappé</translation> </message> </context> <context> @@ -13538,7 +13538,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>P4 Command:</source> - <translation type="obsolete">Commande p4&nbsp;:</translation> + <translation type="obsolete">Commande p4 :</translation> </message> <message> <source>Use default P4 environment variables</source> @@ -13550,15 +13550,15 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>P4 Client:</source> - <translation type="obsolete">Client P4&nbsp;:</translation> + <translation type="obsolete">Client P4 :</translation> </message> <message> <source>P4 User:</source> - <translation type="obsolete">Utilisateur P4&nbsp;:</translation> + <translation type="obsolete">Utilisateur P4 :</translation> </message> <message> <source>P4 Port:</source> - <translation type="obsolete">Port P4&nbsp;:</translation> + <translation type="obsolete">Port P4 :</translation> </message> <message> <source>Test</source> @@ -13574,7 +13574,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>P4 command:</source> - <translation>Commande P4&nbsp;:</translation> + <translation>Commande P4 :</translation> </message> <message> <source>Environment Variables</source> @@ -13582,15 +13582,15 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>P4 client:</source> - <translation>Client P4&nbsp;:</translation> + <translation>Client P4 :</translation> </message> <message> <source>P4 user:</source> - <translation>Utilisateur P4&nbsp;:</translation> + <translation>Utilisateur P4 :</translation> </message> <message> <source>P4 port:</source> - <translation>Port P4&nbsp;:</translation> + <translation>Port P4 :</translation> </message> <message> <source>Miscellaneous</source> @@ -13598,7 +13598,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Timeout:</source> - <translation>Timeout&nbsp;:</translation> + <translation>Timeout :</translation> </message> <message> <source>s</source> @@ -13610,7 +13610,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Log count:</source> - <translation>Nombre d'entrées de log&nbsp;:</translation> + <translation>Nombre d'entrées de log :</translation> </message> <message> <source>Automatically open files when editing</source> @@ -13644,15 +13644,15 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Change:</source> - <translation>Modification&nbsp;:</translation> + <translation>Modification :</translation> </message> <message> <source>Client:</source> - <translation>Client&nbsp;:</translation> + <translation>Client :</translation> </message> <message> <source>User:</source> - <translation>Utilisateur&nbsp;:</translation> + <translation>Utilisateur :</translation> </message> </context> <context> @@ -13728,7 +13728,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <translation>L'élément "%1" devrait être un élément racine</translation> </message> <message> - <source>Resolving dependencies failed because state&nbsp;!= Read</source> + <source>Resolving dependencies failed because state != Read</source> <translation>La résolution des dépendances a échoué car l'état courant est différent de "Lecture"</translation> </message> <message> @@ -13736,7 +13736,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <translation>Impossible de résoudre la dépendance "%1(%2)"</translation> </message> <message> - <source>Loading the library failed because state&nbsp;!= Resolved</source> + <source>Loading the library failed because state != Resolved</source> <translation>Le chargement de la bibliothèque a échoué car l'état courant est différent de "Résolu"</translation> </message> <message> @@ -13744,19 +13744,19 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <translation>L'extension n'est pas valide (elle n'est pas une sous-classe de IPlugin)</translation> </message> <message> - <source>Initializing the plugin failed because state&nbsp;!= Loaded</source> + <source>Initializing the plugin failed because state != Loaded</source> <translation>L'initialisation de l'extension a échoué car l'état courant est différent de "chargé"</translation> </message> <message> <source>Internal error: have no plugin instance to initialize</source> - <translation>Erreur interne&nbsp;: pas d'instance de l'extension à initialiser</translation> + <translation>Erreur interne : pas d'instance de l'extension à initialiser</translation> </message> <message> <source>Plugin initialization failed: %1</source> <translation>L'initialisation de l'extension a échoué: %1</translation> </message> <message> - <source>Cannot perform extensionsInitialized because state&nbsp;!= Initialized</source> + <source>Cannot perform extensionsInitialized because state != Initialized</source> <translation>Impossible d'exécuter extensionsInitialized car l'état est différent de "Initialisé"</translation> </message> <message> @@ -13765,7 +13765,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Internal error: have no plugin instance to perform delayedInitialize</source> - <translation>Erreur interne&nbsp;: aucune instance de l'extention sur laquelle exécuter delayedInitialized</translation> + <translation>Erreur interne : aucune instance de l'extention sur laquelle exécuter delayedInitialized</translation> </message> </context> <context> @@ -13773,7 +13773,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <message> <source><font color="#0000ff">Starting: %1 %2</font> </source> - <translation type="obsolete"><font color="#0000ff">Lancement&nbsp;: %1 %2</font></translation> + <translation type="obsolete"><font color="#0000ff">Lancement : %1 %2</font></translation> </message> <message> <source><font color="#0000ff">Exited with code %1.</font></source> @@ -13790,7 +13790,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <message> <source><font color="#0000ff">Starting: "%1" %2</font> </source> - <translation type="obsolete"><font color="#0000ff">Lancement&nbsp;: %1 %2</font></translation> + <translation type="obsolete"><font color="#0000ff">Lancement : %1 %2</font></translation> </message> <message> <source><font color="#0000ff">The process "%1" exited normally.</font></source> @@ -13811,12 +13811,12 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <message> <source>Starting: "%1" %2 </source> - <translation type="obsolete">Commence&nbsp;: "%1" %2 + <translation type="obsolete">Commence : "%1" %2 </translation> </message> <message> <source>Starting: "%1" %2</source> - <translation>Débute&nbsp;: "%1" %2</translation> + <translation>Débute : "%1" %2</translation> </message> <message> <source>The process "%1" exited normally.</source> @@ -13901,11 +13901,11 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source><font color="#ff0000">Error while building project %1 (target: %2)</font></source> - <translation type="obsolete"><font color="#ff0000">Erreur lors de la compilation du projet %1 (cible&nbsp;: %2)</font></translation> + <translation type="obsolete"><font color="#ff0000">Erreur lors de la compilation du projet %1 (cible : %2)</font></translation> </message> <message> <source>Error while building project %1 (target: %2)</source> - <translation type="obsolete">Erreur à la compilation du projet %1 (cible&nbsp;: %2)</translation> + <translation type="obsolete">Erreur à la compilation du projet %1 (cible : %2)</translation> </message> <message> <source><font color="#ff0000">Error while building project %1</font></source> @@ -13925,7 +13925,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message numerus="yes"> <source>Finished %1 of %n steps</source> - <translatorcomment>lorsqu'il n'y a qu'une étape 1/1 n'est pas franchement utile... -> et comme ça&nbsp;?</translatorcomment> + <translatorcomment>lorsqu'il n'y a qu'une étape 1/1 n'est pas franchement utile... -> et comme ça ?</translatorcomment> <translation> <numerusform>Étape %1 sur %n terminée</numerusform> <numerusform>Étape %1 sur %n terminée</numerusform> @@ -13948,7 +13948,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Elapsed time: %1.</source> - <translation>Temps écoulé&nbsp;: %1.</translation> + <translation>Temps écoulé : %1.</translation> </message> <message> <source>Build/Deployment canceled</source> @@ -13960,11 +13960,11 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Error while building/deploying project %1 (kit: %2)</source> - <translation>Erreur lors de la compilation/déploiement du projet %1 (kit&nbsp;: %2)</translation> + <translation>Erreur lors de la compilation/déploiement du projet %1 (kit : %2)</translation> </message> <message> <source>Error while building/deploying project %1 (target: %2)</source> - <translation type="obsolete">Erreur lors de la compilation/déploiement du projet %1 (cible&nbsp;: %2)</translation> + <translation type="obsolete">Erreur lors de la compilation/déploiement du projet %1 (cible : %2)</translation> </message> <message> <source>When executing step '%1'</source> @@ -13983,7 +13983,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <name>ProjectExplorer::CustomExecutableRunConfiguration</name> <message> <source>Custom Executable</source> - <translatorcomment>custom ici a plutôt le sens de celui utilisé, usage mais je sais pas comment le traduire&nbsp;?</translatorcomment> + <translatorcomment>custom ici a plutôt le sens de celui utilisé, usage mais je sais pas comment le traduire ?</translatorcomment> <translation type="obsolete">Exécutable personnalisé</translation> </message> <message> @@ -14108,7 +14108,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Summary: No changes to Environment</source> - <translation type="obsolete">Résumé&nbsp;: l'environnement n'est pas modifié</translation> + <translation type="obsolete">Résumé : l'environnement n'est pas modifié</translation> </message> </context> <context> @@ -14131,22 +14131,22 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>All Projects:</source> - <translation>tous les projets&nbsp;:</translation> + <translation>tous les projets :</translation> </message> <message> <source>Filter: %1 %2</source> - <translation>Filtre&nbsp;: %1 + <translation>Filtre : %1 %2</translation> </message> <message> <source>Fi&le pattern:</source> - <translation>Pat&ron de fichier&nbsp;:</translation> + <translation>Pat&ron de fichier :</translation> </message> <message> <source>File &pattern:</source> <translatorcomment>Schéma de fichier?</translatorcomment> - <translation type="obsolete">&Motif de fichier&nbsp;:</translation> + <translation type="obsolete">&Motif de fichier :</translation> </message> </context> <context> @@ -14168,7 +14168,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Edit Build Configuration:</source> - <translation type="obsolete">Éditer la configuration de compilation&nbsp;:</translation> + <translation type="obsolete">Éditer la configuration de compilation :</translation> </message> <message> <source>No build settings available</source> @@ -14176,7 +14176,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Edit build configuration:</source> - <translation>Éditer la configuration de compilation&nbsp;:</translation> + <translation>Éditer la configuration de compilation :</translation> </message> <message> <source>Add</source> @@ -14196,7 +14196,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Do you really want to delete the build configuration <b>%1</b>?</source> - <translation type="obsolete">Voulez-vous vraiment supprimer la configuration de la compilation <b>%1</b>&nbsp;? </translation> + <translation type="obsolete">Voulez-vous vraiment supprimer la configuration de la compilation <b>%1</b> ? </translation> </message> <message> <source>Rename...</source> @@ -14204,7 +14204,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>New name for build configuration <b>%1</b>:</source> - <translation>Nouveau nom pour la configuration de la compilation <b>%1</b>&nbsp;: </translation> + <translation>Nouveau nom pour la configuration de la compilation <b>%1</b> : </translation> </message> <message> <source>Clone Configuration</source> @@ -14213,7 +14213,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>New configuration name:</source> - <translation>Nom de la nouvelle configuration&nbsp;:</translation> + <translation>Nom de la nouvelle configuration :</translation> </message> <message> <source>New Configuration</source> @@ -14229,7 +14229,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Remove Build Configuration %1?</source> - <translation>Supprimer la configuration de compilation %1&nbsp;?</translation> + <translation>Supprimer la configuration de compilation %1 ?</translation> </message> <message> <source>The build configuration <b>%1</b> is currently being built.</source> @@ -14237,15 +14237,15 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Do you want to cancel the build process and remove the Build Configuration anyway?</source> - <translation>Voulez-vous annuler la compilation et supprimer la configuration de compilation&nbsp;?</translation> + <translation>Voulez-vous annuler la compilation et supprimer la configuration de compilation ?</translation> </message> <message> <source>Remove Build Configuration?</source> - <translation>Supprimer la configuration de compilation&nbsp;?</translation> + <translation>Supprimer la configuration de compilation ?</translation> </message> <message> <source>Do you really want to delete build configuration <b>%1</b>?</source> - <translation>Voulez-vous vraiment supprimer la configuration de compilation <b>%1</b>&nbsp;?</translation> + <translation>Voulez-vous vraiment supprimer la configuration de compilation <b>%1</b> ?</translation> </message> <message> <source>Clean Steps</source> @@ -14257,7 +14257,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>New Configuration Name:</source> - <translation type="obsolete">Nom de la nouvelle configuration&nbsp;:</translation> + <translation type="obsolete">Nom de la nouvelle configuration :</translation> </message> <message> <source>Clone configuration</source> @@ -14342,7 +14342,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Close Qt Creator?</source> - <translation type="obsolete">Fermer Qt Creator&nbsp;?</translation> + <translation type="obsolete">Fermer Qt Creator ?</translation> </message> <message> <source>A project is currently being built.</source> @@ -14350,7 +14350,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Do you want to cancel the build process and close Qt Creator anyway?</source> - <translation type="obsolete">Voulez-vous annuler le processus de compilation et fermer Qt Creator&nbsp;?</translation> + <translation type="obsolete">Voulez-vous annuler le processus de compilation et fermer Qt Creator ?</translation> </message> </context> <context> @@ -14373,34 +14373,34 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Project '%1':</source> - <translation>Projet '%1'&nbsp;:</translation> + <translation>Projet '%1' :</translation> </message> <message> <source>File &pattern:</source> - <translation type="obsolete">&Motif de fichier&nbsp;:</translation> + <translation type="obsolete">&Motif de fichier :</translation> </message> </context> <context> <name>ProjectExplorer::Internal::CustomExecutableConfigurationWidget</name> <message> <source>Name:</source> - <translation type="obsolete">Nom&nbsp;:</translation> + <translation type="obsolete">Nom :</translation> </message> <message> <source>Executable:</source> - <translation type="obsolete">Exécutable&nbsp;:</translation> + <translation type="obsolete">Exécutable :</translation> </message> <message> <source>Arguments:</source> - <translation type="obsolete">Arguments&nbsp;:</translation> + <translation type="obsolete">Arguments :</translation> </message> <message> <source>Working Directory:</source> - <translation type="obsolete">Répertoire de travail&nbsp;:</translation> + <translation type="obsolete">Répertoire de travail :</translation> </message> <message> <source>Working directory:</source> - <translation type="obsolete">Répertoire de travail&nbsp;:</translation> + <translation type="obsolete">Répertoire de travail :</translation> </message> <message> <source>Run in &Terminal</source> @@ -14408,7 +14408,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Debugger:</source> - <translation type="obsolete">Débogueur&nbsp;:</translation> + <translation type="obsolete">Débogueur :</translation> </message> <message> <source>Run in &terminal</source> @@ -14420,7 +14420,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Base environment for this run configuration:</source> - <translation type="obsolete">Environnement de base pour cette configuration d'exécution&nbsp;: </translation> + <translation type="obsolete">Environnement de base pour cette configuration d'exécution : </translation> </message> <message> <source>Clean Environment</source> @@ -14440,11 +14440,11 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Running executable: <b>%1</b> %2</source> - <translation type="obsolete">Exécution en cours&nbsp;: <b>%1</b> %2</translation> + <translation type="obsolete">Exécution en cours : <b>%1</b> %2</translation> </message> <message> <source>Base environment for this runconfiguration:</source> - <translation type="obsolete">Environnement de base pour cette configuration d'éxecution&nbsp;:</translation> + <translation type="obsolete">Environnement de base pour cette configuration d'éxecution :</translation> </message> </context> <context> @@ -14480,11 +14480,11 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <name>ProjectExplorer::Internal::EditorSettingsPropertiesPage</name> <message> <source>Default File Encoding:</source> - <translation type="obsolete">Encodage de fichier par défaut&nbsp;:</translation> + <translation type="obsolete">Encodage de fichier par défaut :</translation> </message> <message> <source>Default file encoding:</source> - <translation type="obsolete">Encodage de fichier par défaut&nbsp;:</translation> + <translation type="obsolete">Encodage de fichier par défaut :</translation> </message> <message> <source>Use global settings</source> @@ -14496,11 +14496,11 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Editor settings:</source> - <translation>Paramètres de l'éditeur&nbsp;:</translation> + <translation>Paramètres de l'éditeur :</translation> </message> <message> <source>Global</source> - <translatorcomment>féminin&nbsp;?</translatorcomment> + <translatorcomment>féminin ?</translatorcomment> <translation>Global</translation> </message> <message> @@ -14545,7 +14545,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Enter the name of the new session:</source> - <translation type="obsolete">Entrez le nom de la nouvelle session&nbsp;:</translation> + <translation type="obsolete">Entrez le nom de la nouvelle session :</translation> </message> </context> <context> @@ -14572,7 +14572,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source><a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">What is a Session?</a></source> - <translation type="obsolete"><a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Qu'est ce qu'une session&nbsp;?</a></translation> + <translation type="obsolete"><a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Qu'est ce qu'une session ?</a></translation> </message> <message> <source>&New</source> @@ -14616,7 +14616,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source><a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a></source> - <translation><a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-sessions.html">Qu'est-ce qu'une session&nbsp;?</a></translation> + <translation><a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-sessions.html">Qu'est-ce qu'une session ?</a></translation> </message> </context> <context> @@ -14640,7 +14640,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <message> <source>Force it to quit?</source> <translatorcomment>l'application</translatorcomment> - <translation type="obsolete">La forcer à quitter&nbsp;?</translation> + <translation type="obsolete">La forcer à quitter ?</translation> </message> <message> <source>Force Quit</source> @@ -14713,19 +14713,19 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <name>ProjectExplorer::Internal::ProcessStepWidget</name> <message> <source>Name:</source> - <translation type="obsolete">Nom&nbsp;:</translation> + <translation type="obsolete">Nom :</translation> </message> <message> <source>Command:</source> - <translation>Commande&nbsp;:</translation> + <translation>Commande :</translation> </message> <message> <source>Working Directory:</source> - <translation type="obsolete">Répertoire de travail&nbsp;:</translation> + <translation type="obsolete">Répertoire de travail :</translation> </message> <message> <source>Command Arguments:</source> - <translation type="obsolete">Arguments de la commande&nbsp;:</translation> + <translation type="obsolete">Arguments de la commande :</translation> </message> <message> <source>Enable Custom Process Step</source> @@ -14737,15 +14737,15 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Command arguments:</source> - <translation type="obsolete">Arguments de la commande&nbsp;:</translation> + <translation type="obsolete">Arguments de la commande :</translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> </context> <context> @@ -14792,12 +14792,12 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> <message> <source>The files are implicitly added to the projects: </source> - <translation>Les fichiers sont implicitement ajoutés aux projets&nbsp;: + <translation>Les fichiers sont implicitement ajoutés aux projets : </translation> </message> <message> <source>The files are implicitly added to the projects:</source> - <translation>Les fichiers sont implicitement ajoutés aux projets&nbsp;:</translation> + <translation>Les fichiers sont implicitement ajoutés aux projets :</translation> </message> <message> <source><None></source> @@ -14806,7 +14806,7 @@ francis&nbsp;: voila une nouvelle suggestion&nbsp;:)</translatorcomment> </message> <message> <source>Open project anyway?</source> - <translation>Ouvrir le projet quand même&nbsp;?</translation> + <translation>Ouvrir le projet quand même ?</translation> </message> <message> <source>Version Control Failure</source> @@ -14891,15 +14891,15 @@ au projet '%2'.</translation> </message> <message> <source>Add as a subproject to project:</source> - <translation>Ajouter comme sous-projet du projet&nbsp;:</translation> + <translation>Ajouter comme sous-projet du projet :</translation> </message> <message> <source>Add to &project:</source> - <translation>&Ajouter au projet&nbsp;:</translation> + <translation>&Ajouter au projet :</translation> </message> <message> <source>Files to be added:</source> - <translation>Fichiers à ajouter&nbsp;:</translation> + <translation>Fichiers à ajouter :</translation> </message> <message> <source>Files to be added in</source> @@ -14914,7 +14914,7 @@ au projet '%2'.</translation> </message> <message> <source>File to remove:</source> - <translation type="obsolete">Fichier à supprimer&nbsp;:</translation> + <translation type="obsolete">Fichier à supprimer :</translation> </message> <message> <source>&Delete file permanently</source> @@ -14960,7 +14960,7 @@ au projet '%2'.</translation> </message> <message> <source>Method:</source> - <translation>Méthode&nbsp;:</translation> + <translation>Méthode :</translation> </message> <message> <source>Run</source> @@ -14968,15 +14968,15 @@ au projet '%2'.</translation> </message> <message> <source>Run configuration:</source> - <translation>Configuration d'exécution&nbsp;:</translation> + <translation>Configuration d'exécution :</translation> </message> <message> <source>Remove Run Configuration?</source> - <translation>Supprimer la configuration d'exécution&nbsp;?</translation> + <translation>Supprimer la configuration d'exécution ?</translation> </message> <message> <source>Do you really want to delete the run configuration <b>%1</b>?</source> - <translation>Êtes vous sûr de vouloir supprimer la configuration d'exécution <b>%1</b>&nbsp;?</translation> + <translation>Êtes vous sûr de vouloir supprimer la configuration d'exécution <b>%1</b> ?</translation> </message> <message> <source>Rename...</source> @@ -14984,7 +14984,7 @@ au projet '%2'.</translation> </message> <message> <source>New name for run configuration <b>%1</b>:</source> - <translation>Nouveau nom pour la configuration d'exécution <b>%1</b>&nbsp;: </translation> + <translation>Nouveau nom pour la configuration d'exécution <b>%1</b> : </translation> </message> <message> <source>Cancel Build && Remove Deploy Configuration</source> @@ -14996,7 +14996,7 @@ au projet '%2'.</translation> </message> <message> <source>Remove Deploy Configuration %1?</source> - <translation>Supprimer la configuration de déploiement %1&nbsp;?</translation> + <translation>Supprimer la configuration de déploiement %1 ?</translation> </message> <message> <source>The deploy configuration <b>%1</b> is currently being built.</source> @@ -15004,19 +15004,19 @@ au projet '%2'.</translation> </message> <message> <source>Do you want to cancel the build process and remove the Deploy Configuration anyway?</source> - <translation>Voulez-vous annuler le processus de compilation et supprimer la configuration de déploiement&nbsp;?</translation> + <translation>Voulez-vous annuler le processus de compilation et supprimer la configuration de déploiement ?</translation> </message> <message> <source>Remove Deploy Configuration?</source> - <translation>Supprimer la configuration de déploiement&nbsp;? </translation> + <translation>Supprimer la configuration de déploiement ? </translation> </message> <message> <source>Do you really want to delete deploy configuration <b>%1</b>?</source> - <translation>Voulez-vous vraiment supprimer la configuration de déploiement <b>%1</b>&nbsp;? </translation> + <translation>Voulez-vous vraiment supprimer la configuration de déploiement <b>%1</b> ? </translation> </message> <message> <source>New name for deploy configuration <b>%1</b>:</source> - <translation>Nouveau nom pour la configuration de déploiement <b>%1</b>&nbsp;: </translation> + <translation>Nouveau nom pour la configuration de déploiement <b>%1</b> : </translation> </message> </context> <context> @@ -15031,15 +15031,15 @@ au projet '%2'.</translation> </message> <message> <source>Edit run configuration:</source> - <translation type="obsolete">Éditer la configuration d'exécution&nbsp;:</translation> + <translation type="obsolete">Éditer la configuration d'exécution :</translation> </message> <message> <source>Run configuration:</source> - <translation type="obsolete">Configuration d'exécution&nbsp;:</translation> + <translation type="obsolete">Configuration d'exécution :</translation> </message> <message> <source>Deployment:</source> - <translation type="obsolete">Déploiement&nbsp;:</translation> + <translation type="obsolete">Déploiement :</translation> </message> <message> <source>Add</source> @@ -15078,7 +15078,7 @@ au projet '%2'.</translation> <name>ProjectExplorer::Internal::TaskDelegate</name> <message> <source>File not found: %1</source> - <translation>Fichier non trouvé&nbsp;: %1</translation> + <translation>Fichier non trouvé : %1</translation> </message> </context> <context> @@ -15108,15 +15108,15 @@ au projet '%2'.</translation> <name>ProjectExplorer::Internal::WinGuiProcess</name> <message> <source>The process could not be started!</source> - <translation type="obsolete">Le processus n'a pas pû être démarré&nbsp;!</translation> + <translation type="obsolete">Le processus n'a pas pû être démarré !</translation> </message> <message> <source>Cannot retrieve debugging output!</source> - <translation type="obsolete">Impossible d'obtenir la sortie de débogage&nbsp;!</translation> + <translation type="obsolete">Impossible d'obtenir la sortie de débogage !</translation> </message> <message> <source>The process could not be started: %1</source> - <translation type="obsolete">Le processus n'a pas pu être démarré&nbsp;: %1</translation> + <translation type="obsolete">Le processus n'a pas pu être démarré : %1</translation> </message> </context> <context> @@ -15143,7 +15143,7 @@ au projet '%2'.</translation> </source> - <translation>Les fichiers suivants seronts ajoutés&nbsp;: + <translation>Les fichiers suivants seronts ajoutés : @@ -15151,11 +15151,11 @@ au projet '%2'.</translation> </message> <message> <source>Add to &project:</source> - <translation>&Ajouter au projet&nbsp;:</translation> + <translation>&Ajouter au projet :</translation> </message> <message> <source>Add to &version control:</source> - <translation>Ajouter au gestionnaire de &version&nbsp;:</translation> + <translation>Ajouter au gestionnaire de &version :</translation> </message> <message> <source>Project Management</source> @@ -15350,7 +15350,7 @@ au projet '%2'.</translation> </message> <message> <source>Quick Switch Target Selector</source> - <translatorcomment>Bon, celle là est à vérifier deux fois ; gbdivers&nbsp;: aucune idée non plus; Pierre: pff, ils rajoutent de ces trucs bizarre dans Creator... Allez, Banco&nbsp;!</translatorcomment> + <translatorcomment>Bon, celle là est à vérifier deux fois ; gbdivers : aucune idée non plus; Pierre: pff, ils rajoutent de ces trucs bizarre dans Creator... Allez, Banco !</translatorcomment> <translation type="obsolete">Interchangeur rapide de cible</translation> </message> <message> @@ -15367,7 +15367,7 @@ au projet '%2'.</translation> </message> <message> <source>Unload Project %1?</source> - <translation>Fermer le projet %1&nbsp;?</translation> + <translation>Fermer le projet %1 ?</translation> </message> <message> <source>The project %1 is currently being built.</source> @@ -15375,7 +15375,7 @@ au projet '%2'.</translation> </message> <message> <source>Do you want to cancel the build process and unload the project anyway?</source> - <translation>Voulez-vous annuler le processus de compilation et fermer le projet&nbsp;?</translation> + <translation>Voulez-vous annuler le processus de compilation et fermer le projet ?</translation> </message> <message> <source>No active project</source> @@ -15497,13 +15497,13 @@ au projet '%2'.</translation> </message> <message> <source>Ignore all errors?</source> - <translation>Ignorer toutes les erreurs&nbsp;?</translation> + <translation>Ignorer toutes les erreurs ?</translation> </message> <message> <source>Found some build errors in current task. Do you want to ignore them?</source> <translation>Erreurs de compilation trouvées dans la tâche courante. -Souhaitez-vous les ignorer&nbsp;?</translation> +Souhaitez-vous les ignorer ?</translation> </message> <message> <source>Always save files before build</source> @@ -15547,7 +15547,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> </message> <message> <source>Full build path of the current project's active build configuration.</source> - <translatorcomment>Lourd&nbsp;:( >> was "configuration de compilation active"</translatorcomment> + <translatorcomment>Lourd :( >> was "configuration de compilation active"</translatorcomment> <translation>Chemin complet de génération indiqué dans la configuration active du projet courant.</translation> </message> <message> @@ -15600,7 +15600,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> </message> <message> <source>Failed opening project '%1': Project already open</source> - <translation>Échec de l'ouverture du projet "%1"&nbsp;: le projet est déjà ouvert</translation> + <translation>Échec de l'ouverture du projet "%1" : le projet est déjà ouvert</translation> </message> <message> <source>Unknown error</source> @@ -15612,7 +15612,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> </message> <message> <source><b>Warning:</b> This file is outside the project directory.</source> - <translation><b>Avertissement&nbsp;:</b> ce fichier est en dehors du répertoire du projet.</translation> + <translation><b>Avertissement :</b> ce fichier est en dehors du répertoire du projet.</translation> </message> <message> <source>Build</source> @@ -15647,7 +15647,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> </message> <message> <source>Building '%1' is disabled: %2</source> - <translation>La compilation de "%1" désactivée&nbsp;: %2</translation> + <translation>La compilation de "%1" désactivée : %2</translation> </message> <message> <source>No active project.</source> @@ -15655,7 +15655,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> </message> <message> <source>Could not add following files to project %1:</source> - <translation>Impossible d'ajouter les fichiers suivants au projet %1&nbsp;:</translation> + <translation>Impossible d'ajouter les fichiers suivants au projet %1 :</translation> </message> <message> <source>Project Editing Failed</source> @@ -15691,7 +15691,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> </message> <message> <source>Building '%1' is disabled: %2<br></source> - <translation>Compilation de "%1" désactivée&nbsp;: %2<br/></translation> + <translation>Compilation de "%1" désactivée : %2<br/></translation> </message> <message> <source>A build is in progress</source> @@ -15700,7 +15700,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> <message> <source>Building '%1' is disabled: %2 </source> - <translation>Compilation de "%1" désactivée&nbsp;: %2 + <translation>Compilation de "%1" désactivée : %2 </translation> </message> <message> @@ -15713,7 +15713,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> </message> <message> <source>Close Qt Creator?</source> - <translation>Fermer Qt Creator&nbsp;?</translation> + <translation>Fermer Qt Creator ?</translation> </message> <message> <source>A project is currently being built.</source> @@ -15721,7 +15721,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> </message> <message> <source>Do you want to cancel the build process and close Qt Creator anyway?</source> - <translation>Voulez-vous annuler le processus de compilation et fermer Qt Creator&nbsp;?</translation> + <translation>Voulez-vous annuler le processus de compilation et fermer Qt Creator ?</translation> </message> <message> <source>Cannot run without a project.</source> @@ -15748,7 +15748,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> <message> <source>Could not add following files to project %1: </source> - <translation>Impossible d'ajouter les fichiers suivants au projet %1&nbsp;: + <translation>Impossible d'ajouter les fichiers suivants au projet %1 : </translation> </message> <message> @@ -15785,7 +15785,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> </message> <message> <source>Delete %1 from file system?</source> - <translation>Supprimer %1 du système de fichiers&nbsp;? </translation> + <translation>Supprimer %1 du système de fichiers ? </translation> </message> <message> <source>Add files to project failed</source> @@ -15801,7 +15801,7 @@ Souhaitez-vous les ignorer&nbsp;?</translation> to version control (%2)?</source> <translation type="obsolete">Ajouter les fichiers %1 -au système de gestion de version (%2)&nbsp;?</translation> +au système de gestion de version (%2) ?</translation> </message> <message> <source>Could not add following files to version control (%1) @@ -15874,11 +15874,11 @@ au système de gestion de version (%2)&nbsp;?</translation> </message> <message> <source>Delete session %1?</source> - <translation>Supprimer la session %1&nbsp;?</translation> + <translation>Supprimer la session %1 ?</translation> </message> <message> <source>Could not restore the following project files:<br><b>%1</b></source> - <translation>Impossible de restaurer les fichiers de projet suivants&nbsp;: <br><b>%1</b></translation> + <translation>Impossible de restaurer les fichiers de projet suivants : <br><b>%1</b></translation> </message> <message> <source>Keep projects in Session</source> @@ -15921,7 +15921,7 @@ au système de gestion de version (%2)&nbsp;?</translation> <name>QMakeStep</name> <message> <source>QMake Build Configuration:</source> - <translation type="obsolete">Configuration de QMake pour la compilation&nbsp;:</translation> + <translation type="obsolete">Configuration de QMake pour la compilation :</translation> </message> <message> <source>debug</source> @@ -15933,15 +15933,15 @@ au système de gestion de version (%2)&nbsp;?</translation> </message> <message> <source>Additional arguments:</source> - <translation type="obsolete">Arguments supplémentaires&nbsp;:</translation> + <translation type="obsolete">Arguments supplémentaires :</translation> </message> <message> <source>Effective qmake call:</source> - <translation type="obsolete">Appels qmake&nbsp;:</translation> + <translation type="obsolete">Appels qmake :</translation> </message> <message> <source>qmake build configuration:</source> - <translation type="obsolete">Configuration de QMake pour la compilation&nbsp;:</translation> + <translation type="obsolete">Configuration de QMake pour la compilation :</translation> </message> <message> <source>Debug</source> @@ -15957,7 +15957,7 @@ au système de gestion de version (%2)&nbsp;?</translation> </message> <message> <source>Link QML debugging library:</source> - <translation type="obsolete">Lier les bibliothèques de débogage QML&nbsp;: </translation> + <translation type="obsolete">Lier les bibliothèques de débogage QML : </translation> </message> </context> <context> @@ -16030,7 +16030,7 @@ au système de gestion de version (%2)&nbsp;?</translation> </message> <message> <source>Show Only:</source> - <translation type="obsolete">Afficher seulement&nbsp;:</translation> + <translation type="obsolete">Afficher seulement :</translation> </message> </context> <context> @@ -16094,11 +16094,11 @@ au système de gestion de version (%2)&nbsp;?</translation> </message> <message> <source>Project name:</source> - <translation type="obsolete">Nom du projet&nbsp;:</translation> + <translation type="obsolete">Nom du projet :</translation> </message> <message> <source>Location:</source> - <translation type="obsolete">Emplacement&nbsp;:</translation> + <translation type="obsolete">Emplacement :</translation> </message> </context> <context> @@ -16113,11 +16113,11 @@ au système de gestion de version (%2)&nbsp;?</translation> </message> <message> <source>QML Viewer arguments:</source> - <translation type="obsolete">Arguments du visualisateur QML&nbsp;:</translation> + <translation type="obsolete">Arguments du visualisateur QML :</translation> </message> <message> <source>Main QML File:</source> - <translation type="obsolete">Fichier QML principal&nbsp;:</translation> + <translation type="obsolete">Fichier QML principal :</translation> </message> </context> <context> @@ -16136,15 +16136,15 @@ au système de gestion de version (%2)&nbsp;?</translation> </message> <message> <source>Prefix:</source> - <translation>Préfixe&nbsp;:</translation> + <translation>Préfixe :</translation> </message> <message> <source>Language:</source> - <translation>Langue&nbsp;:</translation> + <translation>Langue :</translation> </message> <message> <source>Alias:</source> - <translation>Alias&nbsp;:</translation> + <translation>Alias :</translation> </message> </context> <context> @@ -16189,7 +16189,7 @@ Présélectionne un bureau Qt pour compiler l'application si disponible.</t </message> <message> <source>Unable to create server socket: %1</source> - <translation>Impossible de créer le socket serveur&nbsp;: %1</translation> + <translation>Impossible de créer le socket serveur : %1</translation> </message> </context> <context> @@ -16280,7 +16280,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>The template file '%1' could not be opened for reading: %2</source> - <translation type="obsolete">Le fichier modèle "%1' n"a pas pu être ouvert en lecture&nbsp;: %2</translation> + <translation type="obsolete">Le fichier modèle "%1' n"a pas pu être ouvert en lecture : %2</translation> </message> </context> <context> @@ -16310,11 +16310,11 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Creates a C++ library based on qmake. This can be used to create:<ul><li>a shared C++ library for use with <tt>QPluginLoader</tt> and runtime (Plugins)</li><li>a shared or static C++ library for use with another project at linktime</li></ul></source> - <translation>Créer une bibliothèque C++ basée sur qmake. Cela peut être utilisé pour créer&nbsp;:<ul><li>une bibliothèque C++ partagée pour utiliser avec <tt>QPluginLoader</tt> à l'exécution (plug-ins)</li><li>une bibliothèque C++ partagée ou statique pour utiliser avec un autre projet au moment de la compilation</li></ul></translation> + <translation>Créer une bibliothèque C++ basée sur qmake. Cela peut être utilisé pour créer :<ul><li>une bibliothèque C++ partagée pour utiliser avec <tt>QPluginLoader</tt> à l'exécution (plug-ins)</li><li>une bibliothèque C++ partagée ou statique pour utiliser avec un autre projet au moment de la compilation</li></ul></translation> </message> <message> <source>Creates a C++ library based on qmake. This can be used to create:<ul><li>a shared C++ library for use with <tt>QPluginLoader</tt> and runtime (Plugins)</li><li>a shared or static C++ library for use with another project at linktime</li></ul>.</source> - <translation type="obsolete">Crée une bibliothèque C++ basée sur qmake. Ceci peut être utilisé pour créer&nbsp;: <ul><li>une bibliothèque partagée C++ à utiliser avec <tt>QPluginLoader</tt> à l'exécution (plug-ins)</li><li>une bibliothèque partagée ou statique C++ à utiliser dans un autre projet lors de l'édition des liens</li></ul>.</translation> + <translation type="obsolete">Crée une bibliothèque C++ basée sur qmake. Ceci peut être utilisé pour créer : <ul><li>une bibliothèque partagée C++ à utiliser avec <tt>QPluginLoader</tt> à l'exécution (plug-ins)</li><li>une bibliothèque partagée ou statique C++ à utiliser dans un autre projet lors de l'édition des liens</li></ul>.</translation> </message> <message> <source>Creates a C++ Library.</source> @@ -16485,7 +16485,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Qt Creator has found an already existing build in the source directory.<br><br><b>Qt Version:</b> %1<br><b>Build configuration:</b> %2<br><b>Additional QMake Arguments:</b>%3</source> - <translation type="obsolete">Qt Creator a détecté une version compilée dans le répertoire source.<br> <br> <b>Qt Version&nbsp;: </b> %1<br><b>Configuration de compilation&nbsp;:</b> %2<br>Arguments supplémentaires de QMake&nbsp;:</b> %3</translation> + <translation type="obsolete">Qt Creator a détecté une version compilée dans le répertoire source.<br> <br> <b>Qt Version : </b> %1<br><b>Configuration de compilation :</b> %2<br>Arguments supplémentaires de QMake :</b> %3</translation> </message> <message> <source><b>Note:</b> Importing the settings will automatically add the Qt Version identified by <br><b>%1</b> to the list of Qt versions.</source> @@ -16559,7 +16559,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Failed!</source> - <translation type="obsolete">Échec&nbsp;!</translation> + <translation type="obsolete">Échec !</translation> </message> <message> <source>File Error</source> @@ -16571,7 +16571,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Error while reading .pro file %1: %2</source> - <translation type="obsolete">Erreur lors de la lecture du fichier .pro %1&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de la lecture du fichier .pro %1 : %2</translation> </message> <message> <source>Could not open the file for edit with SCC.</source> @@ -16591,7 +16591,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Error while reading PRO file %1: %2</source> - <translation type="obsolete">Erreur pendant la lecture du fichier PRO %1&nbsp;: %2</translation> + <translation type="obsolete">Erreur pendant la lecture du fichier PRO %1 : %2</translation> </message> <message> <source>Error while parsing file %1. Giving up.</source> @@ -16617,11 +16617,11 @@ Présélectionne une version desktop Qt pour compiler l'application si disp <name>QmakeProjectManager::Internal::QmakeProjectConfigWidget</name> <message> <source>Configuration Name:</source> - <translation type="obsolete">Nom de la configuration&nbsp;:</translation> + <translation type="obsolete">Nom de la configuration :</translation> </message> <message> <source>Qt Version:</source> - <translation type="obsolete">Version de Qt&nbsp;:</translation> + <translation type="obsolete">Version de Qt :</translation> </message> <message> <source>This Qt-Version is invalid.</source> @@ -16629,11 +16629,11 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Shadow Build:</source> - <translation type="obsolete">Shadow Build&nbsp;:</translation> + <translation type="obsolete">Shadow Build :</translation> </message> <message> <source>Build Directory:</source> - <translation type="obsolete">Répertoire de compilation&nbsp;:</translation> + <translation type="obsolete">Répertoire de compilation :</translation> </message> <message> <source><a href="import">Import existing build</a></source> @@ -16653,7 +16653,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>using <font color="#ff0000">invalid</font> Qt Version: <b>%1</b><br>%2</source> - <translation type="obsolete">utilisation d'une version Qt <font color="#ff0000">invalide</font>&nbsp;: <b>%1</b><br>%2</translation> + <translation type="obsolete">utilisation d'une version Qt <font color="#ff0000">invalide</font> : <b>%1</b><br>%2</translation> </message> <message> <source>No Qt Version found.</source> @@ -16661,7 +16661,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b></source> - <translation type="obsolete">utilise la version de Qt&nbsp;: <b>%1</b><br>avec la chaîne de compilation <b>%2</b><br>compilé dans <b>%3</b></translation> + <translation type="obsolete">utilise la version de Qt : <b>%1</b><br>avec la chaîne de compilation <b>%2</b><br>compilé dans <b>%3</b></translation> </message> <message> <source><Invalid tool chain></source> @@ -16699,11 +16699,11 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Error:</source> - <translation>Erreur&nbsp;: </translation> + <translation>Erreur : </translation> </message> <message> <source>Warning:</source> - <translation>Avertissement&nbsp;: </translation> + <translation>Avertissement : </translation> </message> <message> <source>%1 Debug</source> @@ -16734,15 +16734,15 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Tool Chain:</source> - <translation type="obsolete">Chaîne d'outil&nbsp;:</translation> + <translation type="obsolete">Chaîne d'outil :</translation> </message> <message> <source>Configuration name:</source> - <translation type="obsolete">Nom de la configuration&nbsp;:</translation> + <translation type="obsolete">Nom de la configuration :</translation> </message> <message> <source>Qt version:</source> - <translation type="obsolete">Version de Qt&nbsp;:</translation> + <translation type="obsolete">Version de Qt :</translation> </message> <message> <source>This Qt version is invalid.</source> @@ -16750,15 +16750,15 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Tool chain:</source> - <translation type="obsolete">Chaîne d'outils&nbsp;:</translation> + <translation type="obsolete">Chaîne d'outils :</translation> </message> <message> <source>Shadow build:</source> - <translation>Shadow Build&nbsp;:</translation> + <translation>Shadow Build :</translation> </message> <message> <source>Build directory:</source> - <translation>Répertoire de compilation&nbsp;:</translation> + <translation>Répertoire de compilation :</translation> </message> <message> <source>problemLabel</source> @@ -16904,7 +16904,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Run in Terminal</source> @@ -16916,7 +16916,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Run in terminal</source> @@ -16924,7 +16924,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Debugger:</source> - <translation type="obsolete">Débogueur&nbsp;:</translation> + <translation type="obsolete">Débogueur :</translation> </message> <message> <source>Run Environment</source> @@ -16932,7 +16932,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Base environment for this run configuration:</source> - <translation type="obsolete">Environnement de base pour cette configuration d'exécution&nbsp;: </translation> + <translation type="obsolete">Environnement de base pour cette configuration d'exécution : </translation> </message> <message> <source>Clean Environment</source> @@ -16948,11 +16948,11 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Name:</source> - <translation type="obsolete">Nom&nbsp;:</translation> + <translation type="obsolete">Nom :</translation> </message> <message> <source>Executable:</source> - <translation>Exécutable&nbsp;:</translation> + <translation>Exécutable :</translation> </message> <message> <source>Select the working directory</source> @@ -16964,7 +16964,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Working Directory:</source> - <translation type="obsolete">Répertoire de travail&nbsp;:</translation> + <translation type="obsolete">Répertoire de travail :</translation> </message> <message> <source>Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug)</source> @@ -16972,7 +16972,7 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Base environment for this runconfiguration:</source> - <translation type="obsolete">Environnement de base pour cette configuration d'éxecution&nbsp;:</translation> + <translation type="obsolete">Environnement de base pour cette configuration d'éxecution :</translation> </message> </context> <context> @@ -17027,12 +17027,12 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Helpers: None available</source> - <translation type="obsolete">Assistants&nbsp;: aucun disponible</translation> + <translation type="obsolete">Assistants : aucun disponible</translation> </message> <message> <source>Helpers: %1.</source> <extracomment>%1 is list of tool names.</extracomment> - <translation type="obsolete">Assistants&nbsp;: %1. </translation> + <translation type="obsolete">Assistants : %1. </translation> </message> <message> <source><i>Not yet built.</i></source> @@ -17047,9 +17047,9 @@ Présélectionne une version desktop Qt pour compiler l'application si disp <translation type="obsolete"><i>Ne peut pas être compilé.</i></translation> </message> <message> - <source><html><body><table><tr><td>File:</td><td><pre>%1</pre></td></tr><tr><td>Last&nbsp;modified:</td><td>%2</td></tr><tr><td>Size:</td><td>%3 Bytes</td></tr></table></body></html></source> + <source><html><body><table><tr><td>File:</td><td><pre>%1</pre></td></tr><tr><td>Last modified:</td><td>%2</td></tr><tr><td>Size:</td><td>%3 Bytes</td></tr></table></body></html></source> <extracomment>Tooltip showing the debugging helper library file.</extracomment> - <translation type="obsolete"><html><body><table><tr><td>Fichier&nbsp;:</td><td><pre>%1</pre></td></tr><tr><td>Dernière&nbsp;modification&nbsp;:</td><td>%2</td></tr><tr><td>Taille&nbsp;:</td><td>%3 octets</td></tr></table></body></html></translation> + <translation type="obsolete"><html><body><table><tr><td>Fichier :</td><td><pre>%1</pre></td></tr><tr><td>Dernière modification :</td><td>%2</td></tr><tr><td>Taille :</td><td>%3 octets</td></tr></table></body></html></translation> </message> <message> <source>Debugging Helper Build Log for '%1'</source> @@ -17060,9 +17060,9 @@ Présélectionne une version desktop Qt pour compiler l'application si disp <translation type="obsolete">Binaire non trouvé</translation> </message> <message> - <source><html><body><table><tr><td colspan="2"><b>GDB debugging helpers</b></td></tr><tr><td>File:</td><td><pre>%1</pre></td></tr><tr><td>Last&nbsp;modified:</td><td>%2</td></tr><tr><td>Size:</td><td>%3 Bytes</td></tr><tr><td colspan="2"><b>QML type dumper</b></td></tr><tr><td>File:</td><td><pre>%4</pre></td></tr><tr><td>Last&nbsp;modified:</td><td>%5</td></tr><tr><td>Size:</td><td>%6 Bytes</td></tr><tr><td colspan="2"><b>QML observer</b></td></tr><tr><td>File:</td><td><pre>%7</pre></td></tr><tr><td>Last&nbsp;modified:</td><td>%8</td></tr><tr><td>Size:</td><td>%9 Bytes</td></tr></table></body></html></source> + <source><html><body><table><tr><td colspan="2"><b>GDB debugging helpers</b></td></tr><tr><td>File:</td><td><pre>%1</pre></td></tr><tr><td>Last modified:</td><td>%2</td></tr><tr><td>Size:</td><td>%3 Bytes</td></tr><tr><td colspan="2"><b>QML type dumper</b></td></tr><tr><td>File:</td><td><pre>%4</pre></td></tr><tr><td>Last modified:</td><td>%5</td></tr><tr><td>Size:</td><td>%6 Bytes</td></tr><tr><td colspan="2"><b>QML observer</b></td></tr><tr><td>File:</td><td><pre>%7</pre></td></tr><tr><td>Last modified:</td><td>%8</td></tr><tr><td>Size:</td><td>%9 Bytes</td></tr></table></body></html></source> <extracomment>Tooltip showing the debugging helper library file.</extracomment> - <translation type="obsolete"><html><body><table><tr><td colspan="2"><b>Assistants&nbsp;au&nbsp;débogage&nbsp;de&nbsp;GDB</b></td></tr><tr><td>Fichier&nbsp;:</td><td><pre>%1</pre></td></tr><tr><td>Dernière&nbsp;modification&nbsp;:</td><td>%2</td></tr><tr><td>Taille&nbsp;:</td><td>%3 octets</td></tr><tr><td colspan="2"><b>Dumper&nbsp;de&nbsp;type&nbsp;QML</b></td></tr><tr><td>Fichier&nbsp;:</td><td><pre>%4</pre></td></tr><tr><td>Dernière&nbsp;modification&nbsp;:</td><td>%5</td></tr><tr><td>Taille&nbsp;:</td><td>%6&nbsp;octets</td></tr><tr><td colspan="2"><b>Observateur&nbsp;QML</b></td></tr><tr><td>Fichier&nbsp;:</td><td><pre>%7</pre></td></tr><tr><td>Dernière&nbsp;modification&nbsp;:</td><td>%8</td></tr><tr><td>Taille&nbsp;:</td><td>%9&nbsp;octets</td></tr></table></body></html></translation> + <translation type="obsolete"><html><body><table><tr><td colspan="2"><b>Assistants au débogage de GDB</b></td></tr><tr><td>Fichier :</td><td><pre>%1</pre></td></tr><tr><td>Dernière modification :</td><td>%2</td></tr><tr><td>Taille :</td><td>%3 octets</td></tr><tr><td colspan="2"><b>Dumper de type QML</b></td></tr><tr><td>Fichier :</td><td><pre>%4</pre></td></tr><tr><td>Dernière modification :</td><td>%5</td></tr><tr><td>Taille :</td><td>%6 octets</td></tr><tr><td colspan="2"><b>Observateur QML</b></td></tr><tr><td>Fichier :</td><td><pre>%7</pre></td></tr><tr><td>Dernière modification :</td><td>%8</td></tr><tr><td>Taille :</td><td>%9 octets</td></tr></table></body></html></translation> </message> <message> <source>This Qt Version has a unknown toolchain.</source> @@ -17134,15 +17134,15 @@ Présélectionne une version desktop Qt pour compiler l'application si disp </message> <message> <source>Version Name:</source> - <translation type="obsolete">Nom de version&nbsp;:</translation> + <translation type="obsolete">Nom de version :</translation> </message> <message> <source>MinGw Directory:</source> - <translation type="obsolete">Répertoire de MinGW&nbsp;:</translation> + <translation type="obsolete">Répertoire de MinGW :</translation> </message> <message> <source>MSVC Version:</source> - <translation type="obsolete">Version de MSVC&nbsp;:</translation> + <translation type="obsolete">Version de MSVC :</translation> </message> <message> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -17158,7 +17158,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Debugging Helper:</source> - <translation type="obsolete">Assistance au débogage&nbsp;:</translation> + <translation type="obsolete">Assistance au débogage :</translation> </message> <message> <source>Show &Log</source> @@ -17170,7 +17170,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Default Qt Version:</source> - <translation type="obsolete">Version de Qt par défaut&nbsp;:</translation> + <translation type="obsolete">Version de Qt par défaut :</translation> </message> <message> <source>QMake Location</source> @@ -17178,23 +17178,23 @@ p, li { white-space: pre-wrap; } </message> <message> <source>QMake Location:</source> - <translation type="obsolete">Emplacement de QMake&nbsp;:</translation> + <translation type="obsolete">Emplacement de QMake :</translation> </message> <message> <source>S60 SDK:</source> - <translation type="obsolete">SDK S60&nbsp;:</translation> + <translation type="obsolete">SDK S60 :</translation> </message> <message> <source>Carbide Directory:</source> - <translation type="obsolete">Répertoire de Carbide&nbsp;:</translation> + <translation type="obsolete">Répertoire de Carbide :</translation> </message> <message> <source>MinGW Directory:</source> - <translation type="obsolete">Répertoire de MinGW&nbsp;:</translation> + <translation type="obsolete">Répertoire de MinGW :</translation> </message> <message> <source>CSL/GCCE Directory:</source> - <translation type="obsolete">Répertoire CSL/GCCE&nbsp;:</translation> + <translation type="obsolete">Répertoire CSL/GCCE :</translation> </message> <message> <source>qmake Location</source> @@ -17202,31 +17202,31 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Version name:</source> - <translation type="obsolete">Nom de version&nbsp;:</translation> + <translation type="obsolete">Nom de version :</translation> </message> <message> <source>qmake location:</source> - <translation type="obsolete">Emplacement de QMake&nbsp;:</translation> + <translation type="obsolete">Emplacement de QMake :</translation> </message> <message> <source>MinGW directory:</source> - <translation type="obsolete">Répertoire de MinGW&nbsp;:</translation> + <translation type="obsolete">Répertoire de MinGW :</translation> </message> <message> <source>Toolchain:</source> - <translation type="obsolete">Chaîne d'outils&nbsp;:</translation> + <translation type="obsolete">Chaîne d'outils :</translation> </message> <message> <source>CSL/GCCE directory:</source> - <translation type="obsolete">Répertoire CSL/GCCE&nbsp;:</translation> + <translation type="obsolete">Répertoire CSL/GCCE :</translation> </message> <message> <source>Carbide directory:</source> - <translation type="obsolete">Répertoire de Carbide&nbsp;:</translation> + <translation type="obsolete">Répertoire de Carbide :</translation> </message> <message> <source>Debugging helper:</source> - <translation type="obsolete">Assistance au débogage&nbsp;:</translation> + <translation type="obsolete">Assistance au débogage :</translation> </message> <message> <source>Unable to detect MSVC version.</source> @@ -17234,7 +17234,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Debugging helpers:</source> - <translation type="obsolete">Assistants de débogage&nbsp;: </translation> + <translation type="obsolete">Assistants de débogage : </translation> </message> <message> <source>Add</source> @@ -17260,15 +17260,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Variable Name:</source> - <translation type="obsolete">Nom de variable&nbsp;:</translation> + <translation type="obsolete">Nom de variable :</translation> </message> <message> <source>Assignment Operator:</source> - <translation type="obsolete">Opérateur d'assignation&nbsp;:</translation> + <translation type="obsolete">Opérateur d'assignation :</translation> </message> <message> <source>Variable:</source> - <translation type="obsolete">Variable&nbsp;:</translation> + <translation type="obsolete">Variable :</translation> </message> <message> <source>Append (+=)</source> @@ -17381,11 +17381,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Could not find make command: %1 in the build environment</source> - <translation type="obsolete">Impossible de trouver la commande make&nbsp;: %1 dans l'environnement de compilation</translation> + <translation type="obsolete">Impossible de trouver la commande make : %1 dans l'environnement de compilation</translation> </message> <message> <source><font color="#ff0000">Could not find make command: %1 in the build environment</font></source> - <translation type="obsolete"><font color="#ff0000">Impossible de trouver la commande make&nbsp;: %1 dans l'environnement de compilation</font></translation> + <translation type="obsolete"><font color="#ff0000">Impossible de trouver la commande make : %1 dans l'environnement de compilation</font></translation> </message> <message> <source><font color="#0000ff"><b>No Makefile found, assuming project is clean.</b></font></source> @@ -17396,19 +17396,19 @@ p, li { white-space: pre-wrap; } <name>QmakeProjectManager::MakeStepConfigWidget</name> <message> <source>Override %1:</source> - <translation>Supplanter %1&nbsp;:</translation> + <translation>Supplanter %1 :</translation> </message> <message> <source>Make:</source> - <translation>Make&nbsp;:</translation> + <translation>Make :</translation> </message> <message> <source><b>Make:</b> %1</source> - <translation><b>Make&nbsp;:</b> %1</translation> + <translation><b>Make :</b> %1</translation> </message> <message> <source><b>Make:</b> No Qt build configuration.</source> - <translation><b>Make&nbsp;:</b> aucune configuration de compilation Qt.</translation> + <translation><b>Make :</b> aucune configuration de compilation Qt.</translation> </message> <message> <source>No Qt4 build configuration.</source> @@ -17416,7 +17416,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source><b>Make:</b> %1 not found in the environment.</source> - <translation><b>Make&nbsp;:</b> %1 non trouvé dans l'environnement.</translation> + <translation><b>Make :</b> %1 non trouvé dans l'environnement.</translation> </message> <message> <source><b>Make Step:</b> %1 not found in the environment.</source> @@ -17500,7 +17500,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>The option will only take effect if the project is recompiled. Do you want to recompile now?</source> - <translation type="obsolete">Cette option ne prendra effet que si le projet est recompilé. Voulez-vous le recompiler maintenant&nbsp;?</translation> + <translation type="obsolete">Cette option ne prendra effet que si le projet est recompilé. Voulez-vous le recompiler maintenant ?</translation> </message> </context> <context> @@ -17523,7 +17523,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>The option will only take effect if the project is recompiled. Do you want to recompile now?</source> - <translation>Cette option ne prendra effet que si le projet est recompilé. Voulez-vous le recompiler maintenant&nbsp;?</translation> + <translation>Cette option ne prendra effet que si le projet est recompilé. Voulez-vous le recompiler maintenant ?</translation> </message> <message> <source>Building helpers</source> @@ -17531,15 +17531,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source><b>qmake:</b> No Qt version set. Cannot run qmake.</source> - <translation><b>qmake&nbsp;:</b> Aucune version de Qt définie. qmake ne peut être lancé.</translation> + <translation><b>qmake :</b> Aucune version de Qt définie. qmake ne peut être lancé.</translation> </message> <message> <source><b>qmake:</b> %1 %2</source> - <translation><b>qmake&nbsp;:</b> %1 %2</translation> + <translation><b>qmake :</b> %1 %2</translation> </message> <message> <source><b>Warning:</b> The tool chain suggests using another mkspec.</source> - <translation type="obsolete"><b>Attention&nbsp;:</b> la chaîne de compilation suggère d'utiliser un autre mkspec.</translation> + <translation type="obsolete"><b>Attention :</b> la chaîne de compilation suggère d'utiliser un autre mkspec.</translation> </message> <message> <source><b>Warning:</b> The tool chain suggested "%1" as mkspec.</source> @@ -17547,11 +17547,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Enable QML debugging:</source> - <translation>Activer le débogage QML&nbsp;:</translation> + <translation>Activer le débogage QML :</translation> </message> <message> <source>Link QML debugging library:</source> - <translation type="obsolete">Lier les bibliothèques de débogage QML&nbsp;: </translation> + <translation type="obsolete">Lier les bibliothèques de débogage QML : </translation> </message> <message> <source>Might make your application vulnerable. Only use in a safe environment.</source> @@ -17593,7 +17593,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Full path to the host bin directory of the current project's Qt version.</source> - <translatorcomment>host/target -> source/destination ou hôte/destination&nbsp;? -> hôte</translatorcomment> + <translatorcomment>host/target -> source/destination ou hôte/destination ? -> hôte</translatorcomment> <translation type="obsolete">Chemin complet vers le répertoire bin d'origine de la version Qt actuelle du projet.</translation> </message> <message> @@ -17607,19 +17607,19 @@ p, li { white-space: pre-wrap; } </message> <message> <source>In project<br><br>%1<br><br>The following files are either outdated or have been modified:<br><br>%2<br><br>Do you want Qt Creator to update the files? Any changes will be lost.</source> - <translation>Dans le projet <br><br>%1<br><br>Les fichiers suivants sont périmés ou ont été modifié&nbsp;:<br><br>%2<br><br>Voulez-vous que Qt Creator mette à jour ces fichiers&nbsp;? Tous les changements seront perdus.</translation> + <translation>Dans le projet <br><br>%1<br><br>Les fichiers suivants sont périmés ou ont été modifié :<br><br>%2<br><br>Voulez-vous que Qt Creator mette à jour ces fichiers ? Tous les changements seront perdus.</translation> </message> <message> <source>The following files are either outdated or have been modified:<br><br>%1<br><br>Do you want Qt Creator to update the files? Any changes will be lost.</source> - <translation type="obsolete">Les fichiers suivants sont trop vieux ou ont été modifiés&nbsp;: <br><br>%1<br><br>Voulez-vous que Qt Creator les mette à jour&nbsp;? Tout changement sera perdu. </translation> + <translation type="obsolete">Les fichiers suivants sont trop vieux ou ont été modifiés : <br><br>%1<br><br>Voulez-vous que Qt Creator les mette à jour ? Tout changement sera perdu. </translation> </message> <message> <source>Failed opening project '%1': Project file does not exist</source> - <translation type="obsolete">Échec de l'ouverture du projet "%1'&nbsp;: le fichier du projet n"existe pas</translation> + <translation type="obsolete">Échec de l'ouverture du projet "%1' : le fichier du projet n"existe pas</translation> </message> <message> <source>Failed opening project '%1': Project is not a file</source> - <translation>Échec de l'ouverture du projet "%1"&nbsp;: le projet n'est pas un fichier</translation> + <translation>Échec de l'ouverture du projet "%1" : le projet n'est pas un fichier</translation> </message> <message> <source>QMake</source> @@ -17631,7 +17631,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Failed opening project '%1': Project already open</source> - <translation type="obsolete">Échec de l'ouverture du projet "%1"&nbsp;: projet déjà ouvert</translation> + <translation type="obsolete">Échec de l'ouverture du projet "%1" : projet déjà ouvert</translation> </message> <message> <source>Opening %1 ...</source> @@ -17658,7 +17658,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Name:</source> - <translation type="obsolete">Nom&nbsp;:</translation> + <translation type="obsolete">Nom :</translation> </message> <message> <source>Invalid Qt version</source> @@ -17666,35 +17666,35 @@ p, li { white-space: pre-wrap; } </message> <message> <source>ABI:</source> - <translation type="obsolete">ABI&nbsp;:</translation> + <translation type="obsolete">ABI :</translation> </message> <message> <source>Source:</source> - <translation type="obsolete">Source&nbsp;:</translation> + <translation type="obsolete">Source :</translation> </message> <message> <source>mkspec:</source> - <translation type="obsolete">mkspec&nbsp;:</translation> + <translation type="obsolete">mkspec :</translation> </message> <message> <source>qmake:</source> - <translation type="obsolete">qmake&nbsp;:</translation> + <translation type="obsolete">qmake :</translation> </message> <message> <source>Default:</source> - <translation type="obsolete">Par défaut&nbsp;:</translation> + <translation type="obsolete">Par défaut :</translation> </message> <message> <source>Compiler:</source> - <translation type="obsolete">Compilateur&nbsp;:</translation> + <translation type="obsolete">Compilateur :</translation> </message> <message> <source>Version:</source> - <translation type="obsolete">Version&nbsp;:</translation> + <translation type="obsolete">Version :</translation> </message> <message> <source>Debugging helper:</source> - <translation type="obsolete">Assistance au débogage&nbsp;:</translation> + <translation type="obsolete">Assistance au débogage :</translation> </message> </context> <context> @@ -17743,7 +17743,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Base classes for graphical user interface (GUI) components. (Qt 4: Includes widgets. Qt 5: Includes OpenGL.)</source> - <translation>Classes de base pour les composants des interfaces graphiques (GUI) (Qt 4&nbsp;: inclut widgets. Qt 5&nbsp;: inclut OpenGL.)</translation> + <translation>Classes de base pour les composants des interfaces graphiques (GUI) (Qt 4 : inclut widgets. Qt 5 : inclut OpenGL.)</translation> </message> <message> <source>Classes to extend Qt GUI with C++ widgets (Qt 5)</source> @@ -17947,7 +17947,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Prefix:</source> - <translation>Préfixe&nbsp;:</translation> + <translation>Préfixe :</translation> </message> </context> <context> @@ -17970,29 +17970,29 @@ p, li { white-space: pre-wrap; } </message> <message> <source>%1 filter update: 0 files</source> - <translation>Mise à jour du filtre %1&nbsp;: 0 fichiers</translation> + <translation>Mise à jour du filtre %1 : 0 fichiers</translation> </message> <message numerus="yes"> <source>%1 filter update: %n files</source> <translation> - <numerusform>Mise à jour du filtre %1&nbsp;: %n fichier</numerusform> - <numerusform>Mise à jour du filtre %1&nbsp;: %n fichiers</numerusform> + <numerusform>Mise à jour du filtre %1 : %n fichier</numerusform> + <numerusform>Mise à jour du filtre %1 : %n fichiers</numerusform> </translation> </message> <message> <source>%1 filter update: canceled</source> - <translation>Mise à jour du filtre %1&nbsp;: annulée</translation> + <translation>Mise à jour du filtre %1 : annulée</translation> </message> </context> <context> <name>Locator::Internal::DirectoryFilterOptions</name> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>File Types:</source> - <translation type="obsolete">Types de fichiers&nbsp;:</translation> + <translation type="obsolete">Types de fichiers :</translation> </message> <message> <source>Specify file name filters, separated by comma. Filters may contain wildcards.</source> @@ -18000,7 +18000,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Prefix:</source> - <translation>Préfixe&nbsp;:</translation> + <translation>Préfixe :</translation> </message> <message> <source>Specify a short word/abbreviation that can be used to restrict completions to files from this directory tree. @@ -18025,11 +18025,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Directories:</source> - <translation>Dossiers&nbsp;:</translation> + <translation>Dossiers :</translation> </message> <message> <source>File types:</source> - <translation>Types de fichiers&nbsp;:</translation> + <translation>Types de fichiers :</translation> </message> <message> <source>Add</source> @@ -18059,7 +18059,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Prefix:</source> - <translation>Préfixe&nbsp;:</translation> + <translation>Préfixe :</translation> </message> <message> <source>Limit to prefix</source> @@ -18071,7 +18071,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Filter:</source> - <translation>Filtre&nbsp;:</translation> + <translation>Filtre :</translation> </message> <message> <source>Add Filter Configuration</source> @@ -18162,7 +18162,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Refresh Interval:</source> - <translation type="obsolete">Intervalle de raffraichissement&nbsp;:</translation> + <translation type="obsolete">Intervalle de raffraichissement :</translation> </message> <message> <source> min</source> @@ -18170,18 +18170,18 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Refresh now!</source> - <translation type="obsolete">Raffraîchir maintenant&nbsp;!</translation> + <translation type="obsolete">Raffraîchir maintenant !</translation> </message> </context> <context> <name>Locator::Internal::SettingsPage</name> <message> <source>%1 (Prefix: %2)</source> - <translation type="obsolete">%1 (Préfixe&nbsp;: %2)</translation> + <translation type="obsolete">%1 (Préfixe : %2)</translation> </message> <message> <source>%1 (prefix: %2)</source> - <translation>%1 (préfixe&nbsp;: %2)</translation> + <translation>%1 (préfixe : %2)</translation> </message> </context> <context> @@ -18204,7 +18204,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Refresh Interval:</source> - <translation type="obsolete">Intervalle de rafraîchissement&nbsp;:</translation> + <translation type="obsolete">Intervalle de rafraîchissement :</translation> </message> <message> <source> min</source> @@ -18212,7 +18212,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Refresh interval:</source> - <translation>Intervalle de rafraîchissement&nbsp;:</translation> + <translation>Intervalle de rafraîchissement :</translation> </message> <message> <source>Locator filters that do not update their cached data immediately, such as the custom directory filters, update it after this time interval.</source> @@ -18223,19 +18223,19 @@ To do this, you type this shortcut and a space in the Locator entry field, and t <name>RegExp::Internal::RegExpWindow</name> <message> <source>&Pattern:</source> - <translation type="obsolete">&Motif&nbsp;:</translation> + <translation type="obsolete">&Motif :</translation> </message> <message> <source>&Escaped Pattern:</source> - <translation type="obsolete">Motif &échappé&nbsp;:</translation> + <translation type="obsolete">Motif &échappé :</translation> </message> <message> <source>&Pattern Syntax:</source> - <translation type="obsolete">Syntaxe du &motif&nbsp;:</translation> + <translation type="obsolete">Syntaxe du &motif :</translation> </message> <message> <source>&Text:</source> - <translation type="obsolete">&Texte&nbsp;:</translation> + <translation type="obsolete">&Texte :</translation> </message> <message> <source>Case &Sensitive</source> @@ -18247,11 +18247,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Index of Match:</source> - <translation type="obsolete">Index de la correspondance&nbsp;:</translation> + <translation type="obsolete">Index de la correspondance :</translation> </message> <message> <source>Matched Length:</source> - <translation type="obsolete">Longueur de la correspondance&nbsp;:</translation> + <translation type="obsolete">Longueur de la correspondance :</translation> </message> <message> <source>Regular expression v1</source> @@ -18271,11 +18271,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>&Escaped pattern:</source> - <translation type="obsolete">Motif &échappé&nbsp;:</translation> + <translation type="obsolete">Motif &échappé :</translation> </message> <message> <source>&Pattern syntax:</source> - <translation type="obsolete">Syntaxe du &motif&nbsp;:</translation> + <translation type="obsolete">Syntaxe du &motif :</translation> </message> <message> <source>Case &sensitive</source> @@ -18283,11 +18283,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Index of match:</source> - <translation type="obsolete">Index de la correspondance&nbsp;:</translation> + <translation type="obsolete">Index de la correspondance :</translation> </message> <message> <source>Matched length:</source> - <translation type="obsolete">Longueur de la correspondance&nbsp;:</translation> + <translation type="obsolete">Longueur de la correspondance :</translation> </message> <message> <source>Regular Expression v1</source> @@ -18303,11 +18303,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Capture %1:</source> - <translation type="obsolete">Capture %1&nbsp;:</translation> + <translation type="obsolete">Capture %1 :</translation> </message> <message> <source>Match:</source> - <translation type="obsolete">Correspondance&nbsp;:</translation> + <translation type="obsolete">Correspondance :</translation> </message> <message> <source>Regular Expression</source> @@ -18416,7 +18416,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>The following files have unsaved changes:</source> - <translation type="obsolete">Les fichiers suivants contiennent des modifications non enregistrées&nbsp;:</translation> + <translation type="obsolete">Les fichiers suivants contiennent des modifications non enregistrées :</translation> </message> <message> <source>Automatically save all files before building</source> @@ -18466,7 +18466,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Skip</source> - <translatorcomment>ignorer&nbsp;?</translatorcomment> + <translatorcomment>ignorer ?</translatorcomment> <translation type="obsolete">Passer</translation> </message> <message> @@ -18538,7 +18538,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Input prefix:</source> - <translation type="obsolete">Préfixe d'entrée&nbsp;: </translation> + <translation type="obsolete">Préfixe d'entrée : </translation> </message> <message> <source>Open file</source> @@ -18554,7 +18554,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Input Prefix:</source> - <translation type="obsolete">Entrée du préfixe&nbsp;:</translation> + <translation type="obsolete">Entrée du préfixe :</translation> </message> <message> <source>Change Language</source> @@ -18562,7 +18562,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Language:</source> - <translation type="obsolete">Langue&nbsp;:</translation> + <translation type="obsolete">Langue :</translation> </message> <message> <source>Change File Alias</source> @@ -18570,7 +18570,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Alias:</source> - <translation type="obsolete">Alias&nbsp;:</translation> + <translation type="obsolete">Alias :</translation> </message> </context> <context> @@ -18581,7 +18581,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Filter:</source> - <translation type="obsolete">Filtre&nbsp;:</translation> + <translation type="obsolete">Filtre :</translation> </message> <message> <source>Command</source> @@ -18613,7 +18613,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Shortcut:</source> - <translation type="obsolete">Raccourci&nbsp;:</translation> + <translation type="obsolete">Raccourci :</translation> </message> <message> <source>Reset</source> @@ -18653,11 +18653,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Executable:</source> - <translation type="obsolete">Nom de l'exécutable&nbsp;:</translation> + <translation type="obsolete">Nom de l'exécutable :</translation> </message> <message> <source>Arguments:</source> - <translation type="obsolete">Arguments&nbsp;:</translation> + <translation type="obsolete">Arguments :</translation> </message> <message> <source>Break at 'main':</source> @@ -18665,31 +18665,31 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Working directory:</source> - <translation type="obsolete">Répertoire de travail&nbsp;:</translation> + <translation type="obsolete">Répertoire de travail :</translation> </message> <message> <source>&Executable:</source> - <translation type="obsolete">&Exécutable&nbsp;:</translation> + <translation type="obsolete">&Exécutable :</translation> </message> <message> <source>&Arguments:</source> - <translation type="obsolete">&Arguments&nbsp;: </translation> + <translation type="obsolete">&Arguments : </translation> </message> <message> <source>&Working directory:</source> - <translation type="obsolete">&Répertoire de travail&nbsp;: </translation> + <translation type="obsolete">&Répertoire de travail : </translation> </message> <message> <source>Break at '&main':</source> - <translation type="obsolete">Arrêt à '&main'&nbsp;: </translation> + <translation type="obsolete">Arrêt à '&main' : </translation> </message> <message> <source>&Tool chain:</source> - <translation type="obsolete">Chaîne d'ou&tils&nbsp;:</translation> + <translation type="obsolete">Chaîne d'ou&tils :</translation> </message> <message> <source>Run in &terminal:</source> - <translation type="obsolete">Lancer en &terminal&nbsp;: </translation> + <translation type="obsolete">Lancer en &terminal : </translation> </message> </context> <context> @@ -18700,23 +18700,23 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Host and port:</source> - <translation type="obsolete">Hôte et port&nbsp;:</translation> + <translation type="obsolete">Hôte et port :</translation> </message> <message> <source>Architecture:</source> - <translation type="obsolete">Architecture&nbsp;:</translation> + <translation type="obsolete">Architecture :</translation> </message> <message> <source>Use server start script:</source> - <translation type="obsolete">Utiliser le script de démarrage du serveur&nbsp;:</translation> + <translation type="obsolete">Utiliser le script de démarrage du serveur :</translation> </message> <message> <source>Server start script:</source> - <translation type="obsolete">Script de démarrage du serveur&nbsp;:</translation> + <translation type="obsolete">Script de démarrage du serveur :</translation> </message> <message> <source>Debugger:</source> - <translation type="obsolete">Débogueur&nbsp;:</translation> + <translation type="obsolete">Débogueur :</translation> </message> <message> <source>Local executable:</source> @@ -18724,51 +18724,51 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Sysroot:</source> - <translation type="obsolete">Sysroot&nbsp;:</translation> + <translation type="obsolete">Sysroot :</translation> </message> <message> <source>&Debugger:</source> - <translation type="obsolete">&Débogueur&nbsp;:</translation> + <translation type="obsolete">&Débogueur :</translation> </message> <message> <source>Local &executable:</source> - <translation type="obsolete">&Exécutable local&nbsp;: </translation> + <translation type="obsolete">&Exécutable local : </translation> </message> <message> <source>&Host and port:</source> - <translation type="obsolete">&Hôte et port&nbsp;: </translation> + <translation type="obsolete">&Hôte et port : </translation> </message> <message> <source>&Architecture:</source> - <translation type="obsolete">&Architecture&nbsp;: </translation> + <translation type="obsolete">&Architecture : </translation> </message> <message> <source>Sys&root:</source> - <translation type="obsolete">&Racine système&nbsp;: </translation> + <translation type="obsolete">&Racine système : </translation> </message> <message> <source>&Use server start script:</source> - <translation type="obsolete">&Utiliser le script de démarrage du serveur&nbsp;:</translation> + <translation type="obsolete">&Utiliser le script de démarrage du serveur :</translation> </message> <message> <source>&GNU target:</source> - <translation type="obsolete">Cible &GNU&nbsp;: </translation> + <translation type="obsolete">Cible &GNU : </translation> </message> <message> <source>&Server start script:</source> - <translation type="obsolete">&Script de démarrage du serveur&nbsp;:</translation> + <translation type="obsolete">&Script de démarrage du serveur :</translation> </message> <message> <source>Override s&tart script:</source> - <translation type="obsolete">Surcharger le &script de démarrage&nbsp;:</translation> + <translation type="obsolete">Surcharger le &script de démarrage :</translation> </message> <message> <source>Location of debugging information:</source> - <translation type="obsolete">Emplacement des informations de débogage&nbsp;:</translation> + <translation type="obsolete">Emplacement des informations de débogage :</translation> </message> <message> <source>Override host GDB s&tart script:</source> - <translation type="obsolete">Surchager le &script de démarrage du GDB hôte&nbsp;:</translation> + <translation type="obsolete">Surchager le &script de démarrage du GDB hôte :</translation> </message> </context> <context> @@ -18779,7 +18779,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Subversion Command:</source> - <translation type="obsolete">Commande Subversion&nbsp;:</translation> + <translation type="obsolete">Commande Subversion :</translation> </message> <message> <source>Authentication</source> @@ -18787,11 +18787,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>User name:</source> - <translation type="obsolete">Nom d'utilisateur&nbsp;:</translation> + <translation type="obsolete">Nom d'utilisateur :</translation> </message> <message> <source>Password:</source> - <translation>Mot de passe&nbsp;:</translation> + <translation>Mot de passe :</translation> </message> <message> <source>Subversion</source> @@ -18803,11 +18803,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Subversion command:</source> - <translation>Commande Subversion&nbsp;:</translation> + <translation>Commande Subversion :</translation> </message> <message> <source>Username:</source> - <translation>Nom d'utilisateur&nbsp;:</translation> + <translation>Nom d'utilisateur :</translation> </message> <message> <source>Miscellaneous</source> @@ -18815,7 +18815,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Timeout:</source> - <translation>Timeout&nbsp;:</translation> + <translation>Timeout :</translation> </message> <message> <source>s</source> @@ -18831,7 +18831,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Log count:</source> - <translation>Nombre de log&nbsp;:</translation> + <translation>Nombre de log :</translation> </message> </context> <context> @@ -19048,11 +19048,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Do you want to commit the change?</source> - <translation>Voulez vous envoyer les changements&nbsp;?</translation> + <translation>Voulez vous envoyer les changements ?</translation> </message> <message> <source>The commit message check failed. Do you want to commit the change?</source> - <translation>La vérification du message de commit a échoué. Voulez-vous soumettre vos modifications&nbsp;?</translation> + <translation>La vérification du message de commit a échoué. Voulez-vous soumettre vos modifications ?</translation> </message> <message> <source>Revert repository</source> @@ -19060,19 +19060,19 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Revert all pending changes to the repository?</source> - <translation>Rétablir tous les changements en attente du dépôt&nbsp;? </translation> + <translation>Rétablir tous les changements en attente du dépôt ? </translation> </message> <message> <source>Would you like to revert all changes to the repository?</source> - <translation type="obsolete">Souhaitez-vous rétablir toutes les modifications sur le dépôt&nbsp;?</translation> + <translation type="obsolete">Souhaitez-vous rétablir toutes les modifications sur le dépôt ?</translation> </message> <message> <source>Revert failed: %1</source> - <translation>Éche de la restauration&nbsp;: %1</translation> + <translation>Éche de la restauration : %1</translation> </message> <message> <source>The file has been changed. Do you want to revert it?</source> - <translation>Le fichier a été modifié. Voulez-vous le rétablir&nbsp;?</translation> + <translation>Le fichier a été modifié. Voulez-vous le rétablir ?</translation> </message> <message> <source>The commit list spans several repositories (%1). Please commit them one by one.</source> @@ -19088,7 +19088,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Cannot create temporary file: %1</source> - <translation type="obsolete">Impossible de créer le fichier temporaire&nbsp;: %1</translation> + <translation type="obsolete">Impossible de créer le fichier temporaire : %1</translation> </message> <message> <source>Describe</source> @@ -19096,29 +19096,29 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Revision number:</source> - <translation>Numéro de révision&nbsp;:</translation> + <translation>Numéro de révision :</translation> </message> <message> <source>Executing in %1: %2 %3 </source> - <translation type="obsolete">Exécution dans %1&nbsp;: %2 %3 + <translation type="obsolete">Exécution dans %1 : %2 %3 </translation> </message> <message> <source>No subversion executable specified!</source> - <translation>Aucun exécutable Subversion n'a été spécifié&nbsp;!</translation> + <translation>Aucun exécutable Subversion n'a été spécifié !</translation> </message> <message> <source>Executing: %1 %2 </source> - <translation type="obsolete">Exécution de&nbsp;: %1 %2 + <translation type="obsolete">Exécution de : %1 %2 </translation> </message> <message> <source>%1 Executing: %2 %3 </source> <extracomment><timestamp> Executing: <executable> <arguments></extracomment> - <translation type="obsolete">%1 Exécution de&nbsp;: %2 %3</translation> + <translation type="obsolete">%1 Exécution de : %2 %3</translation> </message> <message> <source>The process terminated with exit code %1.</source> @@ -19160,7 +19160,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>List of comma separated wildcard filters</source> - <translatorcomment>wildcard -> joker mais est-ce le terme pour les expressions régulières en français&nbsp;?</translatorcomment> + <translatorcomment>wildcard -> joker mais est-ce le terme pour les expressions régulières en français ?</translatorcomment> <translation>Liste de filtres 'joker' séparés par des virgules</translation> </message> <message> @@ -19176,7 +19176,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t <name>TextEditor::BaseTextDocument</name> <message> <source>untitled</source> - <translatorcomment>document&nbsp;? (en plus c'est plus long...)</translatorcomment> + <translatorcomment>document ? (en plus c'est plus long...)</translatorcomment> <translation>sans titre</translation> </message> <message> @@ -19205,7 +19205,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t <message> <source><b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible.</source> <translatorcomment>error -> erreur ;)</translatorcomment> - <translation type="obsolete"><b>Erreur&nbsp;:</b> Impossible de décoder "%1" avec l'encodage "%2". L'édition est impossible.</translation> + <translation type="obsolete"><b>Erreur :</b> Impossible de décoder "%1" avec l'encodage "%2". L'édition est impossible.</translation> </message> <message> <source>Select Encoding</source> @@ -19228,11 +19228,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t <name>TextEditor::BaseTextEditorEditable</name> <message> <source>Line: %1, Col: %2</source> - <translation type="obsolete">Ligne&nbsp;: %1, Col&nbsp;: %2</translation> + <translation type="obsolete">Ligne : %1, Col : %2</translation> </message> <message> <source>Line: %1, Col: 999</source> - <translation type="obsolete">Ligne&nbsp;: %1, Col&nbsp;: 999</translation> + <translation type="obsolete">Ligne : %1, Col : 999</translation> </message> </context> <context> @@ -19259,15 +19259,15 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Ta&b size:</source> - <translation type="obsolete">Taille de &tabulation&nbsp;:</translation> + <translation type="obsolete">Taille de &tabulation :</translation> </message> <message> <source>&Indent size:</source> - <translation type="obsolete">Taille de l'in&dentation&nbsp;:</translation> + <translation type="obsolete">Taille de l'in&dentation :</translation> </message> <message> <source>Tab key performs auto-indent:</source> - <translation type="obsolete">La touche tabulation active l'identation automatique&nbsp;:</translation> + <translation type="obsolete">La touche tabulation active l'identation automatique :</translation> </message> <message> <source>Never</source> @@ -19323,7 +19323,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t </message> <message> <source>Block indentation style:</source> - <translation type="obsolete">Style d'indentation de bloc&nbsp;: </translation> + <translation type="obsolete">Style d'indentation de bloc : </translation> </message> <message> <source>Exclude Braces</source> @@ -19397,7 +19397,7 @@ void foo() <translation type="obsolete"><html><head/><body> Contrôle le style d'indentation des blocs entre accolades. <ul> -<li>Accolades exclusives&nbsp;: elles ne sont pas indentées. +<li>Accolades exclusives : elles ne sont pas indentées. <pre> void foo() { @@ -19409,7 +19409,7 @@ void foo() </pre> </li> -<li>Accolades inclusives&nbsp;: elles sont indentées. Le contenu du bloc est au même niveau que les accolades. +<li>Accolades inclusives : elles sont indentées. Le contenu du bloc est au même niveau que les accolades. <pre> void foo() { @@ -19421,7 +19421,7 @@ void foo() </pre> </li> -<li>Style GNU&nbsp;: indenter les accolades de blocs dans des déclarations. Le contenu est indenté deux fois. +<li>Style GNU : indenter les accolades de blocs dans des déclarations. Le contenu est indenté deux fois. <pre> void foo() { @@ -19437,7 +19437,7 @@ void foo() <message> <source>Align continuation lines:</source> <translatorcomment>continuation line: lors du passage à la ligne automatique (text wrap)</translatorcomment> - <translation type="obsolete">Aligner les lignes de continuation&nbsp;:</translation> + <translation type="obsolete">Aligner les lignes de continuation :</translation> </message> <message> <source><html><head/><body> @@ -19465,23 +19465,23 @@ Influences the indentation of continuation lines. </pre> </li> </ul></body></html></source> - <translatorcomment>continuation line&nbsp;? </translatorcomment> + <translatorcomment>continuation line ? </translatorcomment> <translation type="obsolete"><html><head/><body> Influence l'indentation des lignes de continuation. <ul> -<li>Pas du tout&nbsp;: ne pas aligner. Les lignes ne seront indentées jusqu'à la profondeur d'indentation logique. +<li>Pas du tout : ne pas aligner. Les lignes ne seront indentées jusqu'à la profondeur d'indentation logique. <pre> (tab)int i = foo(a, b (tab)c, d); </pre> </li> -<li>Avec espaces&nbsp;: toujours utiliser des espaces pour l'alignement, sans tenir compte des autres paramètres d'indentation. +<li>Avec espaces : toujours utiliser des espaces pour l'alignement, sans tenir compte des autres paramètres d'indentation. <pre> (tab)int i = foo(a, b (tab) c, d); </pre> </li> -<li>Avec indentation régulière&nbsp;: utiliser des tabulations et/ou des espaces pour l'alignement, en fonction de la configuration. +<li>Avec indentation régulière : utiliser des tabulations et/ou des espaces pour l'alignement, en fonction de la configuration. <pre> (tab)int i = foo(a, b (tab)(tab)(tab) c, d); @@ -19551,7 +19551,7 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Display right &margin at column:</source> - <translation type="obsolete">Afficher une &marge à la colonne&nbsp;:</translation> + <translation type="obsolete">Afficher une &marge à la colonne :</translation> </message> <message> <source>Navigation</source> @@ -19577,7 +19577,7 @@ Influence l'indentation des lignes de continuation. <message> <source>Auto-fold first &comment</source> <translatorcomment>reformulation à l'infinitif -francis&nbsp;: en effet, une erreur de ma part --> validé.</translatorcomment> +francis : en effet, une erreur de ma part --> validé.</translatorcomment> <translation type="obsolete">Replier automatiquement le premier &commentaire</translation> </message> <message> @@ -19597,7 +19597,7 @@ francis&nbsp;: en effet, une erreur de ma part --> validé.</translatorco </message> <message> <source>Color Scheme name:</source> - <translation type="obsolete">Nom du jeu de couleurs&nbsp;:</translation> + <translation type="obsolete">Nom du jeu de couleurs :</translation> </message> <message> <source>Font && Colors</source> @@ -19605,7 +19605,7 @@ francis&nbsp;: en effet, une erreur de ma part --> validé.</translatorco </message> <message> <source>Color scheme name:</source> - <translation>Nom du jeu de couleurs&nbsp;:</translation> + <translation>Nom du jeu de couleurs :</translation> </message> <message> <source>%1 (copy)</source> @@ -19617,7 +19617,7 @@ francis&nbsp;: en effet, une erreur de ma part --> validé.</translatorco </message> <message> <source>Are you sure you want to delete this color scheme permanently?</source> - <translation>Êtes vous sûr de vouloir supprimer ce jeu de couleurs&nbsp;?</translation> + <translation>Êtes vous sûr de vouloir supprimer ce jeu de couleurs ?</translation> </message> <message> <source>Delete</source> @@ -19629,7 +19629,7 @@ francis&nbsp;: en effet, une erreur de ma part --> validé.</translatorco </message> <message> <source>The color scheme "%1" was modified, do you want to save the changes?</source> - <translation>Le jeu de couleurs "%1" a été modifié, voulez-vous enregistrer les changements&nbsp;?</translation> + <translation>Le jeu de couleurs "%1" a été modifié, voulez-vous enregistrer les changements ?</translation> </message> <message> <source>Discard</source> @@ -19651,7 +19651,7 @@ francis&nbsp;: en effet, une erreur de ma part --> validé.</translatorco <source> The following encodings are likely to fit:</source> <translation> -Les encodages suivants pourraient convenir&nbsp;:</translation> +Les encodages suivants pourraient convenir :</translation> </message> <message> <source>Select encoding for "%1".%2</source> @@ -19675,12 +19675,12 @@ Les encodages suivants pourraient convenir&nbsp;:</translation> </message> <message> <source>File '%1':</source> - <translation>Fichier '%1'&nbsp;:</translation> + <translation>Fichier '%1' :</translation> </message> <message> <source>File path: %1 %2</source> - <translation>Chemin de fichier&nbsp;: %1 + <translation>Chemin de fichier : %1 %2</translation> </message> </context> @@ -19697,7 +19697,7 @@ Les encodages suivants pourraient convenir&nbsp;:</translation> </message> <message> <source>&Directory:</source> - <translation type="obsolete">&Dossier&nbsp;:</translation> + <translation type="obsolete">&Dossier :</translation> </message> <message> <source>&Browse</source> @@ -19705,8 +19705,8 @@ Les encodages suivants pourraient convenir&nbsp;:</translation> </message> <message> <source>File &pattern:</source> - <translatorcomment>Schéma ou motif&nbsp;? (motif ça fait penser au style du même nom...)</translatorcomment> - <translation type="obsolete">&Motif de fichier&nbsp;:</translation> + <translatorcomment>Schéma ou motif ? (motif ça fait penser au style du même nom...)</translatorcomment> + <translation type="obsolete">&Motif de fichier :</translation> </message> <message> <source>Directory to search</source> @@ -19721,15 +19721,15 @@ Les encodages suivants pourraient convenir&nbsp;:</translation> </message> <message> <source>Family:</source> - <translation>Famille&nbsp;:</translation> + <translation>Famille :</translation> </message> <message> <source>Size:</source> - <translation>Taille&nbsp;:</translation> + <translation>Taille :</translation> </message> <message> <source>Antialias</source> - <translatorcomment>c'est le français pour anti-aliasing&nbsp;?</translatorcomment> + <translatorcomment>c'est le français pour anti-aliasing ?</translatorcomment> <translation>Anticrénelage</translation> </message> <message> @@ -19746,11 +19746,11 @@ Les encodages suivants pourraient convenir&nbsp;:</translation> </message> <message> <source>Background:</source> - <translation type="obsolete">Arrière plan&nbsp;:</translation> + <translation type="obsolete">Arrière plan :</translation> </message> <message> <source>Foreground:</source> - <translation type="obsolete">Premier plan&nbsp;:</translation> + <translation type="obsolete">Premier plan :</translation> </message> <message> <source>Erase background</source> @@ -19758,7 +19758,7 @@ Les encodages suivants pourraient convenir&nbsp;:</translation> </message> <message> <source>Preview:</source> - <translation type="obsolete">Aperçu&nbsp;:</translation> + <translation type="obsolete">Aperçu :</translation> </message> <message> <source>Copy...</source> @@ -19774,7 +19774,7 @@ Les encodages suivants pourraient convenir&nbsp;:</translation> </message> <message> <source>Zoom:</source> - <translation>Zoom&nbsp;:</translation> + <translation>Zoom :</translation> </message> </context> <context> @@ -20491,7 +20491,7 @@ Appliquée au texte, s'il n'y a pas d'autres règles correspondan </message> <message> <source>Search Scope</source> - <translatorcomment>contexte/portée/autre&nbsp;?</translatorcomment> + <translatorcomment>contexte/portée/autre ?</translatorcomment> <translation>Portée de la recherche</translation> </message> <message> @@ -20553,7 +20553,7 @@ Appliquée au texte, s'il n'y a pas d'autres règles correspondan </message> <message> <source>Number literal.</source> - <translatorcomment>ou nombre littéral&nbsp;?</translatorcomment> + <translatorcomment>ou nombre littéral ?</translatorcomment> <translation>Nombre constant. </translation> </message> <message> @@ -20966,7 +20966,7 @@ Ne sera pas appliquée aux espaces dans les commentaires et les chaînes.</trans <name>TopicChooser</name> <message> <source>Choose Topic</source> - <translatorcomment>thème&nbsp;?</translatorcomment> + <translatorcomment>thème ?</translatorcomment> <translation>Choisissez le thème</translation> </message> <message> @@ -20987,7 +20987,7 @@ Ne sera pas appliquée aux espaces dans les commentaires et les chaînes.</trans </message> <message> <source>Choose a topic for <b>%1</b>:</source> - <translation>Choisissez un thème pour <b>%1</b>&nbsp;:</translation> + <translation>Choisissez un thème pour <b>%1</b> :</translation> </message> </context> <context> @@ -21017,7 +21017,7 @@ Ne sera pas appliquée aux espaces dans les commentaires et les chaînes.</trans </message> <message> <source>E-mail</source> - <translatorcomment>avec ou sans '-'&nbsp;?</translatorcomment> + <translatorcomment>avec ou sans '-' ?</translatorcomment> <translation>Email</translation> </message> <message> @@ -21030,7 +21030,7 @@ Ne sera pas appliquée aux espaces dans les commentaires et les chaînes.</trans </message> <message> <source>Cannot open '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir "%1" : %2</translation> </message> <message> <source>Nicknames</source> @@ -21107,11 +21107,11 @@ Ne sera pas appliquée aux espaces dans les commentaires et les chaînes.</trans </message> <message> <source>Unable to open '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir "%1" : %2</translation> </message> <message> <source>The check script '%1' could not be started: %2</source> - <translation>Le script de vérification "%1" ne peut pas être démarré&nbsp;: %2</translation> + <translation>Le script de vérification "%1" ne peut pas être démarré : %2</translation> </message> <message> <source>The check script '%1' timed out.</source> @@ -21123,7 +21123,7 @@ Ne sera pas appliquée aux espaces dans les commentaires et les chaînes.</trans </message> <message> <source>The check script '%1' could not be run: %2</source> - <translation type="obsolete">Le script de vérification "%1" ne peut pas être exécuté&nbsp;: %2</translation> + <translation type="obsolete">Le script de vérification "%1" ne peut pas être exécuté : %2</translation> </message> <message> <source>The check script returned exit code %1.</source> @@ -21138,25 +21138,25 @@ Ne sera pas appliquée aux espaces dans les commentaires et les chaînes.</trans </message> <message> <source>Wrap submit message at:</source> - <translation type="obsolete">Limiter la largeur du message à &nbsp;:</translation> + <translation type="obsolete">Limiter la largeur du message à :</translation> </message> <message> - <source>An executable which is called with the submit message in a temporary file as first argument. It should return with an exit&nbsp;!= 0 and a message on standard error to indicate failure.</source> - <translation type="obsolete">Un fichier exécutable qui est appelé avec comme premier argument le message dans un fichier temporaire. Pour indiquer une erreur, il doit se terminer avec un code&nbsp;!= 0 et un message sur la sortie d'erreur standard.</translation> + <source>An executable which is called with the submit message in a temporary file as first argument. It should return with an exit != 0 and a message on standard error to indicate failure.</source> + <translation type="obsolete">Un fichier exécutable qui est appelé avec comme premier argument le message dans un fichier temporaire. Pour indiquer une erreur, il doit se terminer avec un code != 0 et un message sur la sortie d'erreur standard.</translation> </message> <message> <source>Submit message check script:</source> - <translation type="obsolete">Script de vérification du message&nbsp;:</translation> + <translation type="obsolete">Script de vérification du message :</translation> </message> <message> <source>A file listing user names and email addresses in a 4-column mailmap format: name <email> alias <email></source> - <translation type="obsolete">Un fichier listant les noms d'utilisateur et leur adresse email dans le format 4 colonnes de mailmap&nbsp;: + <translation type="obsolete">Un fichier listant les noms d'utilisateur et leur adresse email dans le format 4 colonnes de mailmap : nom <email> alias <email></translation> </message> <message> <source>User/alias configuration file:</source> - <translation type="obsolete">Fichier de configuration des alias utilisateur&nbsp;:</translation> + <translation type="obsolete">Fichier de configuration des alias utilisateur :</translation> </message> <message> <source>A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor.</source> @@ -21164,7 +21164,7 @@ nom <email> alias <email></translation> </message> <message> <source>User fields configuration file:</source> - <translation type="obsolete">Fichier de configuration des champs utilisateurs&nbsp;:</translation> + <translation type="obsolete">Fichier de configuration des champs utilisateurs :</translation> </message> </context> <context> @@ -21176,8 +21176,8 @@ nom <email> alias <email></translation> <message> <source>Would you like to remove this file from the version control system (%1)? Note: This might remove the local file.</source> - <translation type="obsolete">Voulez-vous retirer ce fichier du système de gestion de versions (%1)&nbsp;? -Note&nbsp;: Ceci risque de supprimer le fichier du disque.</translation> + <translation type="obsolete">Voulez-vous retirer ce fichier du système de gestion de versions (%1) ? +Note : Ceci risque de supprimer le fichier du disque.</translation> </message> </context> <context> @@ -21207,7 +21207,7 @@ Note&nbsp;: Ceci risque de supprimer le fichier du disque.</translation> </message> <message> <source>&Username:</source> - <translation type="obsolete">&Utilisateur&nbsp;:</translation> + <translation type="obsolete">&Utilisateur :</translation> </message> <message> <source><Username></source> @@ -21215,7 +21215,7 @@ Note&nbsp;: Ceci risque de supprimer le fichier du disque.</translation> </message> <message> <source>&Description:</source> - <translation type="obsolete">&Description&nbsp;:</translation> + <translation type="obsolete">&Description :</translation> </message> <message> <source><Description></source> @@ -21245,7 +21245,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Protocol:</source> - <translation type="obsolete">Protocole&nbsp;:</translation> + <translation type="obsolete">Protocole :</translation> </message> <message> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -21288,7 +21288,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Text1:</source> - <translation type="obsolete">Texte 1&nbsp;:</translation> + <translation type="obsolete">Texte 1 :</translation> </message> <message> <source>N/A</source> @@ -21296,11 +21296,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Text2:</source> - <translation type="obsolete">Texte 2&nbsp;:</translation> + <translation type="obsolete">Texte 2 :</translation> </message> <message> <source>Text3:</source> - <translation type="obsolete">Texte 3&nbsp;:</translation> + <translation type="obsolete">Texte 3 :</translation> </message> </context> <context> @@ -21311,7 +21311,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Server Prefix:</source> - <translation type="obsolete">Préfixe du serveur&nbsp;:</translation> + <translation type="obsolete">Préfixe du serveur :</translation> </message> <message> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -21329,7 +21329,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Server prefix:</source> - <translation type="obsolete">Préfixe du serveur&nbsp;:</translation> + <translation type="obsolete">Préfixe du serveur :</translation> </message> <message> <source><html><head/><body> @@ -21345,7 +21345,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source><i>Note: The plugin will use this for posting as well as fetching.</i></source> - <translation type="obsolete"><i>Note&nbsp;: le plug-in utilisera ceci pour poster et récupérer. </i></translation> + <translation type="obsolete"><i>Note : le plug-in utilisera ceci pour poster et récupérer. </i></translation> </message> </context> <context> @@ -21360,19 +21360,19 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Describe all files matching commit id:</source> - <translation type="obsolete">Décrire tous les fichiers correspondant à l'id de commit&nbsp;:</translation> + <translation type="obsolete">Décrire tous les fichiers correspondant à l'id de commit :</translation> </message> <message> <source>CVS Command:</source> - <translation type="obsolete">Commande CVS&nbsp;:</translation> + <translation type="obsolete">Commande CVS :</translation> </message> <message> <source>CVS Root:</source> - <translation type="obsolete">Racine CVS&nbsp;:</translation> + <translation type="obsolete">Racine CVS :</translation> </message> <message> <source>Diff Options:</source> - <translation type="obsolete">Options Diff&nbsp;:</translation> + <translation type="obsolete">Options Diff :</translation> </message> <message> <source>CVS</source> @@ -21384,11 +21384,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>CVS command:</source> - <translation>Commande CVS&nbsp;:</translation> + <translation>Commande CVS :</translation> </message> <message> <source>CVS root:</source> - <translation>Racine CVS&nbsp;:</translation> + <translation>Racine CVS :</translation> </message> <message> <source>Miscellaneous</source> @@ -21396,7 +21396,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Diff options:</source> - <translation>Options diff&nbsp;:</translation> + <translation>Options diff :</translation> </message> <message> <source>Prompt on submit</source> @@ -21412,7 +21412,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Timeout:</source> - <translation>Timeout&nbsp;:</translation> + <translation>Timeout :</translation> </message> <message> <source>s</source> @@ -21431,7 +21431,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Symbian ARM gdb location:</source> - <translation type="obsolete">Emplacement du gdb ARM Symbian&nbsp;:</translation> + <translation type="obsolete">Emplacement du gdb ARM Symbian :</translation> </message> <message> <source>Communication</source> @@ -21447,11 +21447,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Port:</source> - <translation type="obsolete">Port&nbsp;:</translation> + <translation type="obsolete">Port :</translation> </message> <message> <source>Device:</source> - <translation type="obsolete">Appareil mobile&nbsp;:</translation> + <translation type="obsolete">Appareil mobile :</translation> </message> </context> <context> @@ -21528,7 +21528,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Filter:</source> - <translation type="obsolete">Filtre&nbsp;:</translation> + <translation type="obsolete">Filtre :</translation> </message> <message> <source>...</source> @@ -21555,7 +21555,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Filter:</source> - <translation type="obsolete">Filtre&nbsp;:</translation> + <translation type="obsolete">Filtre :</translation> </message> <message> <source>...</source> @@ -21614,15 +21614,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Family:</source> - <translation type="obsolete">Famille&nbsp;:</translation> + <translation type="obsolete">Famille :</translation> </message> <message> <source>Style:</source> - <translation type="obsolete">Style&nbsp;:</translation> + <translation type="obsolete">Style :</translation> </message> <message> <source>Size:</source> - <translation type="obsolete">Taille&nbsp;:</translation> + <translation type="obsolete">Taille :</translation> </message> <message> <source>Startup</source> @@ -21630,7 +21630,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>On context help:</source> - <translation type="obsolete">Pour l'aide contextuelle&nbsp;:</translation> + <translation type="obsolete">Pour l'aide contextuelle :</translation> </message> <message> <source>Show side-by-side if possible</source> @@ -21646,7 +21646,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>On help start:</source> - <translation type="obsolete">Au démarrage de l'aide&nbsp;:</translation> + <translation type="obsolete">Au démarrage de l'aide :</translation> </message> <message> <source>Show my home page</source> @@ -21662,7 +21662,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Home Page:</source> - <translation type="obsolete">Page d'accueil&nbsp;:</translation> + <translation type="obsolete">Page d'accueil :</translation> </message> <message> <source>Use &Current Page</source> @@ -21714,7 +21714,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Home page:</source> - <translation type="obsolete">Page d'accueil&nbsp;:</translation> + <translation type="obsolete">Page d'accueil :</translation> </message> <message> <source>Always Show Help in External Window</source> @@ -21869,7 +21869,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Default build directory:</source> - <translation>Répertoire par défaut de compilation&nbsp;:</translation> + <translation>Répertoire par défaut de compilation :</translation> </message> <message> <source>Reset</source> @@ -21954,15 +21954,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Widget librar&y:</source> - <translation>B&ibliothèque de widget&nbsp;:</translation> + <translation>B&ibliothèque de widget :</translation> </message> <message> <source>Widget project &file:</source> - <translation>Fichier de &projet du widget&nbsp;:</translation> + <translation>Fichier de &projet du widget :</translation> </message> <message> <source>Widget h&eader file:</source> - <translation>Fichier d'en-&tête du widget&nbsp;:</translation> + <translation>Fichier d'en-&tête du widget :</translation> </message> <message> <source>The header file has to be specified in source code.</source> @@ -21970,11 +21970,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Widge&t source file:</source> - <translation>Fichier source du &widget&nbsp;:</translation> + <translation>Fichier source du &widget :</translation> </message> <message> <source>Widget &base class:</source> - <translation>Classe de &base du widget&nbsp;:</translation> + <translation>Classe de &base du widget :</translation> </message> <message> <source>QWidget</source> @@ -21982,19 +21982,19 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Plugin class &name:</source> - <translation>&Nom de la classe du plug-in&nbsp;:</translation> + <translation>&Nom de la classe du plug-in :</translation> </message> <message> <source>Plugin &header file:</source> - <translation>Fichier d'&en-tête du plug-in&nbsp;:</translation> + <translation>Fichier d'&en-tête du plug-in :</translation> </message> <message> <source>Plugin sou&rce file:</source> - <translation>Fichier sou&rce du plug-in&nbsp;:</translation> + <translation>Fichier sou&rce du plug-in :</translation> </message> <message> <source>Icon file:</source> - <translation>Fichier de l'icône&nbsp;:</translation> + <translation>Fichier de l'icône :</translation> </message> <message> <source>&Link library</source> @@ -22014,15 +22014,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source>G&roup:</source> - <translation>&Groupe&nbsp;:</translation> + <translation>&Groupe :</translation> </message> <message> <source>&Tooltip:</source> - <translation>&Info-bulle&nbsp;:</translation> + <translation>&Info-bulle :</translation> </message> <message> <source>W&hat's this:</source> - <translation>&Qu'est-ce que c'est?&nbsp;:</translation> + <translation>&Qu'est-ce que c'est? :</translation> </message> <message> <source>The widget is a &container</source> @@ -22034,7 +22034,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>dom&XML:</source> - <translation>dom &XML&nbsp;:</translation> + <translation>dom &XML :</translation> </message> <message> <source>Select Icon</source> @@ -22061,23 +22061,23 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Collection class:</source> - <translation>Classe de collection&nbsp;:</translation> + <translation>Classe de collection :</translation> </message> <message> <source>Collection header file:</source> - <translation>Fichier d'en-tête de la collection&nbsp;:</translation> + <translation>Fichier d'en-tête de la collection :</translation> </message> <message> <source>Collection source file:</source> - <translation>Fichier source de la collection&nbsp;:</translation> + <translation>Fichier source de la collection :</translation> </message> <message> <source>Plugin name:</source> - <translation>Nom du plug-in&nbsp;:</translation> + <translation>Nom du plug-in :</translation> </message> <message> <source>Resource file:</source> - <translation>Fichier ressource&nbsp;:</translation> + <translation>Fichier ressource :</translation> </message> <message> <source>icons.qrc</source> @@ -22096,7 +22096,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Widget &Classes:</source> - <translation>&Classes des widgets&nbsp;:</translation> + <translation>&Classes des widgets :</translation> </message> <message> <source>Specify the list of custom widgets and their properties.</source> @@ -22131,7 +22131,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Did You Know?</source> - <translation type="obsolete">Le saviez-vous&nbsp;?</translation> + <translation type="obsolete">Le saviez-vous ?</translation> </message> <message> <source><b>Qt Creator - A quick tour</b></source> @@ -22183,15 +22183,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Copy Project to writable Location?</source> - <translation type="obsolete">Copier le projet à un emplacement inscriptible&nbsp;?</translation> + <translation type="obsolete">Copier le projet à un emplacement inscriptible ?</translation> </message> <message> <source><p>The project you are about to open is located in the write-protected location:</p><blockquote>%1</blockquote><p>Please select a writable location below and click "Copy Project and Open" to open a modifiable copy of the project or click "Keep Project and Open" to open the project in location.</p><p><b>Note:</b> You will not be able to alter or compile your project in the current location.</p></source> - <translation type="obsolete"><p>Le projet que vous vous apprêtez à ouvrir se trouve dans un emplacement accessible en lecture seule&nbsp;:</p><blockquote>%1</blockquote><p>Veuillez sélectionner un emplacement accessible en écriture et cliquez sur "Copier projet et ouvrir" pour ouvrir une copie modifiable. Cliquez sur "Conserver l'emplacement et ouvrir" pour ouvrir le projet à l'emplacement courant.</p><p><b>Note&nbsp;:</b> Vous ne pourrez pas modifier ou compiler votre projet à l'emplacement courant.</p></translation> + <translation type="obsolete"><p>Le projet que vous vous apprêtez à ouvrir se trouve dans un emplacement accessible en lecture seule :</p><blockquote>%1</blockquote><p>Veuillez sélectionner un emplacement accessible en écriture et cliquez sur "Copier projet et ouvrir" pour ouvrir une copie modifiable. Cliquez sur "Conserver l'emplacement et ouvrir" pour ouvrir le projet à l'emplacement courant.</p><p><b>Note :</b> Vous ne pourrez pas modifier ou compiler votre projet à l'emplacement courant.</p></translation> </message> <message> <source>&Location:</source> - <translation type="obsolete">&Emplacement&nbsp;:</translation> + <translation type="obsolete">&Emplacement :</translation> </message> <message> <source>&Copy Project and Open</source> @@ -22235,7 +22235,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom: <br /><br />1: Build Issues, 2: Search Results, 3: Application Output, 4: Compile Output</source> - <translation type="obsolete">Vous pouvez passer d'un panneau de sortie à l'autre avec les touches <tt>%1+n</tt> où n est le numéro qui apparaît sur les boutons en dessous de la fenêtre&nbsp;: <ul><li>1 - Problèmes de compilation</li><li>2 - Résultat de la recherche</li><li>3 - Sortie de l'application</li><li>4 - Sortie de compilation</li></ul></translation> + <translation type="obsolete">Vous pouvez passer d'un panneau de sortie à l'autre avec les touches <tt>%1+n</tt> où n est le numéro qui apparaît sur les boutons en dessous de la fenêtre : <ul><li>1 - Problèmes de compilation</li><li>2 - Résultat de la recherche</li><li>3 - Sortie de l'application</li><li>4 - Sortie de compilation</li></ul></translation> </message> <message> <source>You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-editor-locator.html">Locator bar</a> (<tt>%1+K</tt>).</source> @@ -22299,7 +22299,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul></source> - <translation type="obsolete">Vous pouvez passer d'un panneau de sortie à l'autre avec les touches <tt>%1+x</tt> où x est le numéro qui apparaît sur les boutons en dessous de la fenêtre&nbsp;: <ul><li>1 - Problèmes de compilation</li><li>2 - Résultat de la recherche</li><li>3 - Sortie de l'application</li><li>4 - Sortie de compilation</li></ul></translation> + <translation type="obsolete">Vous pouvez passer d'un panneau de sortie à l'autre avec les touches <tt>%1+x</tt> où x est le numéro qui apparaît sur les boutons en dessous de la fenêtre : <ul><li>1 - Problèmes de compilation</li><li>2 - Résultat de la recherche</li><li>3 - Sortie de l'application</li><li>4 - Sortie de compilation</li></ul></translation> </message> <message> <source>You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>).</source> @@ -22323,7 +22323,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>You can modify the binary that is being executed when you press the <tt>Run</tt> button: Add a <tt>Custom Executable</tt> by clicking the <tt>+</tt> button in <tt>Projects -> Run Settings -> Run Configuration</tt> and then select the new target in the combo box.</source> - <translation type="obsolete">Vous pouvez modifier le binaire qui sera exécuté lorsque vous appuyez sur le bouton <tt>Lancer</tt>&nbsp;: Ajoutez un <tt>exécutable personnalisé</tt> en cliquant sur le bouton <tt>+</tt> dans <tt>Projets -> Paramètres d'exécutions -> Configuration d'exécution</tt> et sélectionnez une nouvelle cible dans le menu déroulant.</translation> + <translation type="obsolete">Vous pouvez modifier le binaire qui sera exécuté lorsque vous appuyez sur le bouton <tt>Lancer</tt> : Ajoutez un <tt>exécutable personnalisé</tt> en cliquant sur le bouton <tt>+</tt> dans <tt>Projets -> Paramètres d'exécutions -> Configuration d'exécution</tt> et sélectionnez une nouvelle cible dans le menu déroulant.</translation> </message> <message> <source>You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git.</source> @@ -22359,7 +22359,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Explore Qt C++ examples:</source> - <translation type="obsolete">Parcourir les exemples Qt C++&nbsp;:</translation> + <translation type="obsolete">Parcourir les exemples Qt C++ :</translation> </message> <message> <source>Examples Not Installed...</source> @@ -22367,11 +22367,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Explore Qt Quick examples:</source> - <translation type="obsolete">Parcourir les exemples Qt Quick&nbsp;:</translation> + <translation type="obsolete">Parcourir les exemples Qt Quick :</translation> </message> <message> <source>Explore Qt C++ mobile examples:</source> - <translation type="obsolete">Parcourir les exemples Qt C++ mobiles&nbsp;:</translation> + <translation type="obsolete">Parcourir les exemples Qt C++ mobiles :</translation> </message> <message> <source>Featured</source> @@ -22386,7 +22386,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Installed S60 SDKs:</source> - <translation type="obsolete">SDKs S60 installés&nbsp;:</translation> + <translation type="obsolete">SDKs S60 installés :</translation> </message> <message> <source>SDK Location</source> @@ -22433,11 +22433,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Background:</source> - <translation>Arrière plan&nbsp;:</translation> + <translation>Arrière plan :</translation> </message> <message> <source>Foreground:</source> - <translation>Premier plan&nbsp;:</translation> + <translation>Premier plan :</translation> </message> <message> <source>Erase background</source> @@ -22461,11 +22461,11 @@ p, li { white-space: pre-wrap; } <message> <source>Checkout Directory:</source> <translatorcomment>checkout should stay in English? </translatorcomment> - <translation type="obsolete">Répertoire d'import&nbsp;:</translation> + <translation type="obsolete">Répertoire d'import :</translation> </message> <message> <source>Path:</source> - <translation type="obsolete">Chemin&nbsp;:</translation> + <translation type="obsolete">Chemin :</translation> </message> <message> <source>Repository</source> @@ -22473,12 +22473,12 @@ p, li { white-space: pre-wrap; } </message> <message> <source>The remote repository to check out.</source> - <translatorcomment>check out&nbsp;? </translatorcomment> + <translatorcomment>check out ? </translatorcomment> <translation type="obsolete">Le dépôt distant à importer. </translation> </message> <message> <source>Branch:</source> - <translation type="obsolete">Branche&nbsp;:</translation> + <translation type="obsolete">Branche :</translation> </message> <message> <source>The development branch in the remote repository to check out.</source> @@ -22502,7 +22502,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Checkout Path:</source> - <translation type="obsolete">Chemin d'import&nbsp;:</translation> + <translation type="obsolete">Chemin d'import :</translation> </message> <message> <source>The local directory that will contain the code after the checkout.</source> @@ -22510,11 +22510,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Checkout path:</source> - <translation type="obsolete">Chemin d'import&nbsp;:</translation> + <translation type="obsolete">Chemin d'import :</translation> </message> <message> <source>Checkout directory:</source> - <translation type="obsolete">Répertoire d'import&nbsp;:</translation> + <translation type="obsolete">Répertoire d'import :</translation> </message> </context> <context> @@ -22720,11 +22720,11 @@ p, li { white-space: pre-wrap; } <name>CodePaster::CodePasterProtocol</name> <message> <source>No Server defined in the CodePaster preferences!</source> - <translation type="obsolete">Aucun serveur définit dans les préférences CodePaster&nbsp;!</translation> + <translation type="obsolete">Aucun serveur définit dans les préférences CodePaster !</translation> </message> <message> <source>No Server defined in the CodePaster options!</source> - <translation type="obsolete">Aucun serveur défini dans les options CodePaster&nbsp;!</translation> + <translation type="obsolete">Aucun serveur défini dans les options CodePaster !</translation> </message> <message> <source>No Server defined in the CodePaster preferences.</source> @@ -22747,7 +22747,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source><i>Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com).</i></source> - <translation><i>Note&nbsp;: spécifier le nom d'hôte pour le service CodePaster sans aucun protocole (par exemple, codepaster.mycompany.com).</i></translation> + <translation><i>Note : spécifier le nom d'hôte pour le service CodePaster sans aucun protocole (par exemple, codepaster.mycompany.com).</i></translation> </message> <message> <source>Code Pasting</source> @@ -22755,11 +22755,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Server:</source> - <translation>Serveur&nbsp;:</translation> + <translation>Serveur :</translation> </message> <message> <source>Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com).</source> - <translation type="obsolete">Note&nbsp;: spécifiez le nom d'hôte du service CodePaster sans aucun protocole (par exemple, codepaster.mycompany.com).</translation> + <translation type="obsolete">Note : spécifiez le nom d'hôte du service CodePaster sans aucun protocole (par exemple, codepaster.mycompany.com).</translation> </message> </context> <context> @@ -22811,7 +22811,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>C++ Usages:</source> - <translation>Utilisations de C++&nbsp;:</translation> + <translation>Utilisations de C++ :</translation> </message> <message> <source>Searching</source> @@ -22819,7 +22819,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>C++ Macro Usages:</source> - <translation>Utilisations de macros C++&nbsp;:</translation> + <translation>Utilisations de macros C++ :</translation> </message> </context> <context> @@ -22849,7 +22849,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Repository:</source> - <translation>Dépôt&nbsp;:</translation> + <translation>Dépôt :</translation> </message> </context> <context> @@ -23079,11 +23079,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Do you want to commit the change?</source> - <translation>Voulez vous envoyer les changements&nbsp;?</translation> + <translation>Voulez vous envoyer les changements ?</translation> </message> <message> <source>The commit message check failed. Do you want to commit the change?</source> - <translation>La vérification du message de commit a échoué. Voulez-vous soumettre vos modifications&nbsp;?</translation> + <translation>La vérification du message de commit a échoué. Voulez-vous soumettre vos modifications ?</translation> </message> <message> <source>The files do not differ.</source> @@ -23095,15 +23095,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Revert all pending changes to the repository?</source> - <translation>Rétablir toutes les changements en attente sur le dépôt&nbsp;? </translation> + <translation>Rétablir toutes les changements en attente sur le dépôt ? </translation> </message> <message> <source>Would you like to revert all changes to the repository?</source> - <translation type="obsolete">Souhaitez-vous rétablir toutes les modifications sur le dépôt&nbsp;?</translation> + <translation type="obsolete">Souhaitez-vous rétablir toutes les modifications sur le dépôt ?</translation> </message> <message> <source>Revert failed: %1</source> - <translation>Éche de la restauration&nbsp;: %1</translation> + <translation>Éche de la restauration : %1</translation> </message> <message> <source>The file '%1' could not be deleted.</source> @@ -23111,7 +23111,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>The file has been changed. Do you want to revert it?</source> - <translation>Le fichier a été modifié. Voulez-vous le rétablir&nbsp;?</translation> + <translation>Le fichier a été modifié. Voulez-vous le rétablir ?</translation> </message> <message> <source>The commit list spans several repositories (%1). Please commit them one by one.</source> @@ -23127,15 +23127,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Cannot create temporary file: %1</source> - <translation type="obsolete">Impossible de créer le fichier temporaire&nbsp;: %1</translation> + <translation type="obsolete">Impossible de créer le fichier temporaire : %1</translation> </message> <message> <source>Would you like to discard your changes to the repository '%1'?</source> - <translation>Voulez-vous annuler tous les changements sur le dépôt "%1"&nbsp;? </translation> + <translation>Voulez-vous annuler tous les changements sur le dépôt "%1" ? </translation> </message> <message> <source>Would you like to discard your changes to the file '%1'?</source> - <translation>Voulez-vous annuler tous les changements sur le fichier "%1"&nbsp;? </translation> + <translation>Voulez-vous annuler tous les changements sur le fichier "%1" ? </translation> </message> <message> <source>Project status</source> @@ -23157,18 +23157,18 @@ p, li { white-space: pre-wrap; } <message> <source>Executing: %1 %2 </source> - <translation type="obsolete">Exécuter&nbsp;: %1 %2 + <translation type="obsolete">Exécuter : %1 %2 </translation> </message> <message> <source>Executing in %1: %2 %3 </source> - <translation type="obsolete">Exécuter dans %1&nbsp;: %2 %3 + <translation type="obsolete">Exécuter dans %1 : %2 %3 </translation> </message> <message> <source>No cvs executable specified!</source> - <translation>Aucun exécutable CVS spécifié&nbsp;!</translation> + <translation>Aucun exécutable CVS spécifié !</translation> </message> <message> <source>The process terminated with exit code %1.</source> @@ -23282,7 +23282,7 @@ p, li { white-space: pre-wrap; } <message> <source>Loading symbols from "%1" failed: </source> - <translation type="obsolete">Échec de chargement des symboles depuis "%1"&nbsp;: + <translation type="obsolete">Échec de chargement des symboles depuis "%1" : </translation> </message> <message> @@ -23296,7 +23296,7 @@ p, li { white-space: pre-wrap; } <message> <source>Attach to core "%1" failed: </source> - <translation type="obsolete">Échec de liaison au core "%1"&nbsp;: + <translation type="obsolete">Échec de liaison au core "%1" : </translation> </message> <message> @@ -23336,12 +23336,12 @@ p, li { white-space: pre-wrap; } <name>Debugger::Internal::PlainGdbAdapter</name> <message> <source>Cannot set up communication with child process: %1</source> - <translation type="obsolete">Impossible de mettre en place la communication avec le processus enfant&nbsp;: %1</translation> + <translation type="obsolete">Impossible de mettre en place la communication avec le processus enfant : %1</translation> </message> <message> <source>Starting executable failed: </source> - <translation type="obsolete">Échec du lancement de l'exécutable&nbsp;: + <translation type="obsolete">Échec du lancement de l'exécutable : </translation> </message> </context> @@ -23349,7 +23349,7 @@ p, li { white-space: pre-wrap; } <name>Debugger::Internal::RemoteGdbAdapter</name> <message> <source>The upload process failed to start. Shell missing?</source> - <translation type="obsolete">Le processus d'upload n'a pas pu démarrer. Le shell est manquant&nbsp;?</translation> + <translation type="obsolete">Le processus d'upload n'a pas pu démarrer. Le shell est manquant ?</translation> </message> <message> <source>The upload process crashed some time after starting successfully.</source> @@ -23378,12 +23378,12 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Adapter too old: does not support asynchronous mode.</source> - <translation type="obsolete">Adaptateur trop ancien&nbsp;: aucun support du mode asynchrone.</translation> + <translation type="obsolete">Adaptateur trop ancien : aucun support du mode asynchrone.</translation> </message> <message> <source>Starting remote executable failed: </source> - <translation type="obsolete">Le démarrage de l'exécutable distant a échoué&nbsp;: + <translation type="obsolete">Le démarrage de l'exécutable distant a échoué : </translation> </message> </context> @@ -23399,7 +23399,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4.</source> - <translation type="obsolete">Processus démarré, PID&nbsp;: 0x%1, id du thread&nbsp;: 0x%2, segment de code&nbsp;: 0x%3, segment de données&nbsp;: 0x%4.</translation> + <translation type="obsolete">Processus démarré, PID : 0x%1, id du thread : 0x%2, segment de code : 0x%3, segment de données : 0x%4.</translation> </message> <message> <source>The reported code segment address (0x%1) might be invalid. Symbol resolution or setting breakoints may not work.</source> @@ -23408,13 +23408,13 @@ p, li { white-space: pre-wrap; } <message> <source>Connecting to TRK server adapter failed: </source> - <translation type="obsolete">La connection à l'adaptateur du serveur TRK a échoué&nbsp;: + <translation type="obsolete">La connection à l'adaptateur du serveur TRK a échoué : </translation> </message> <message> <source>Connecting to trk server adapter failed: </source> - <translation type="obsolete">Échec de la connexion à l'adapteur au serveur TRK&nbsp;: + <translation type="obsolete">Échec de la connexion à l'adapteur au serveur TRK : </translation> </message> </context> @@ -23446,11 +23446,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Invalid qualifiers: unexpected 'volatile'</source> - <translation type="obsolete">Qualificateurs invalides&nbsp;: 'volatile" inattendu</translation> + <translation type="obsolete">Qualificateurs invalides : 'volatile" inattendu</translation> </message> <message> <source>Invalid qualifiers: 'const' appears twice</source> - <translation type="obsolete">Qualificateurs invalides&nbsp;: 'const' apparaît deux fois</translation> + <translation type="obsolete">Qualificateurs invalides : 'const' apparaît deux fois</translation> </message> <message> <source>Invalid non-negative number</source> @@ -23510,11 +23510,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Invalid substitution: element %1 was requested, but there are only %2</source> - <translation type="obsolete">Substitution invalide&nbsp;: l'élément %1 était requis mais il y a seulement %2</translation> + <translation type="obsolete">Substitution invalide : l'élément %1 était requis mais il y a seulement %2</translation> </message> <message> <source>Invalid substitution: There are no elements</source> - <translation type="obsolete">Substitution invalide&nbsp;: il n'y a aucun éléments</translation> + <translation type="obsolete">Substitution invalide : il n'y a aucun éléments</translation> </message> <message> <source>Invalid special-name</source> @@ -23546,7 +23546,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>At position %1: </source> - <translation type="obsolete">À la position %1&nbsp;: </translation> + <translation type="obsolete">À la position %1 : </translation> </message> </context> <context> @@ -23591,7 +23591,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Clone URL:</source> - <translation>URL de clone&nbsp;:</translation> + <translation>URL de clone :</translation> </message> <message> <source>Recursive</source> @@ -23610,11 +23610,11 @@ p, li { white-space: pre-wrap; } <name>Gitorious::Internal::Gitorious</name> <message> <source>Error parsing reply from '%1': %2</source> - <translation>Erreur d'analyse de la réponse de "%1"&nbsp;: %2</translation> + <translation>Erreur d'analyse de la réponse de "%1" : %2</translation> </message> <message> <source>Request failed for '%1': %2</source> - <translation>Échec de la requête pour "%1"&nbsp;: %2</translation> + <translation>Échec de la requête pour "%1" : %2</translation> </message> <message> <source>Open source projects that use Git.</source> @@ -23694,11 +23694,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>There was an error while importing bookmarks!</source> - <translation type="obsolete">Erreur lors de l'importation des signets&nbsp;!</translation> + <translation type="obsolete">Erreur lors de l'importation des signets !</translation> </message> <message> <source>Save File</source> - <translatorcomment>Enregistrer&nbsp;? (tout court)</translatorcomment> + <translatorcomment>Enregistrer ? (tout court)</translatorcomment> <translation>Enregistrer le fichier</translation> </message> <message> @@ -23711,15 +23711,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Family:</source> - <translation>Famille&nbsp;:</translation> + <translation>Famille :</translation> </message> <message> <source>Style:</source> - <translation>Style&nbsp;:</translation> + <translation>Style :</translation> </message> <message> <source>Size:</source> - <translation>Taille&nbsp;:</translation> + <translation>Taille :</translation> </message> <message> <source>Startup</source> @@ -23727,7 +23727,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>On context help:</source> - <translation>Pour l'aide contextuelle&nbsp;:</translation> + <translation>Pour l'aide contextuelle :</translation> </message> <message> <source>Show Side-by-Side if Possible</source> @@ -23747,7 +23747,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>On help start:</source> - <translation>Au démarrage de l'aide&nbsp;:</translation> + <translation>Au démarrage de l'aide :</translation> </message> <message> <source>Show My Home Page</source> @@ -23763,7 +23763,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Home page:</source> - <translation>Page d'accueil&nbsp;:</translation> + <translation>Page d'accueil :</translation> </message> <message> <source>Use &Current Page</source> @@ -23807,7 +23807,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Note: This setting takes effect only if the HTML file does not use a style sheet.</source> - <translation>Remarque&nbsp;: ce paramètre ne prend effet que si le fichier HTML n'utilise pas une feuille de style.</translation> + <translation>Remarque : ce paramètre ne prend effet que si le fichier HTML n'utilise pas une feuille de style.</translation> </message> <message> <source>Import Bookmarks...</source> @@ -23833,7 +23833,7 @@ p, li { white-space: pre-wrap; } <name>ProjectExplorer::ApplicationLauncher</name> <message> <source>Failed to start program. Path or permissions wrong?</source> - <translation>Échec lors de l'exécution du programme. Mauvais chemin ou permissions&nbsp;?</translation> + <translation>Échec lors de l'exécution du programme. Mauvais chemin ou permissions ?</translation> </message> <message> <source>The program has unexpectedly finished.</source> @@ -23917,10 +23917,10 @@ p, li { white-space: pre-wrap; } - %1 Reason: %2</source> - <translation>Les assistances au débogage n'ont pas pu être compilées dans aucun des dossiers suivants&nbsp;: + <translation>Les assistances au débogage n'ont pas pu être compilées dans aucun des dossiers suivants : - %1 -Raison&nbsp;: %2</translation> +Raison : %2</translation> </message> <message> <source>GDB helper</source> @@ -23941,7 +23941,7 @@ Raison&nbsp;: %2</translation> <message> <source>%1 not found in PATH </source> - <translatorcomment>traduire PATH ici&nbsp;?</translatorcomment> + <translatorcomment>traduire PATH ici ?</translatorcomment> <translation>%1 non trouvé dans le PATH </translation> </message> @@ -24015,7 +24015,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>New id:</source> - <translation type="obsolete">Nouvel identifiant&nbsp;:</translation> + <translation type="obsolete">Nouvel identifiant :</translation> </message> <message> <source>Rename id '%1'...</source> @@ -24063,7 +24063,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Delete class %1 from list?</source> - <translation>Supprimer la classe %1 de la liste&nbsp;?</translation> + <translation>Supprimer la classe %1 de la liste ?</translation> </message> </context> <context> @@ -24093,7 +24093,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>This wizard generates a Qt Designer Custom Widget or a Qt Designer Custom Widget Collection project.</source> - <translatorcomment>lourd&nbsp;? "contenant un widget ou une collection de widgets, personnalisé pour Qt Designer"&nbsp;?</translatorcomment> + <translatorcomment>lourd ? "contenant un widget ou une collection de widgets, personnalisé pour Qt Designer" ?</translatorcomment> <translation>Cet assistant génère un projet contenant un widget ou une collection de widgets personnalisés pour Qt Designer.</translation> </message> <message> @@ -24117,7 +24117,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Cannot open %1: %2</source> - <translation type="obsolete">Imposible d'ouvrir %1&nbsp;: %2</translation> + <translation type="obsolete">Imposible d'ouvrir %1 : %2</translation> </message> </context> <context> @@ -24152,35 +24152,35 @@ Raison&nbsp;: %2</translation> <name>QmakeProjectManager::Internal::S60DeviceRunConfigurationWidget</name> <message> <source>Device:</source> - <translation type="obsolete">Appareil mobile&nbsp;:</translation> + <translation type="obsolete">Appareil mobile :</translation> </message> <message> <source>Name:</source> - <translation type="obsolete">Nom&nbsp;:</translation> + <translation type="obsolete">Nom :</translation> </message> <message> <source>Arguments:</source> - <translation type="obsolete">Arguments&nbsp;:</translation> + <translation type="obsolete">Arguments :</translation> </message> <message> <source>Debugger:</source> - <translation type="obsolete">Débogueur&nbsp;:</translation> + <translation type="obsolete">Débogueur :</translation> </message> <message> <source>Installation file:</source> - <translation type="obsolete">Fichier d'installation&nbsp;:</translation> + <translation type="obsolete">Fichier d'installation :</translation> </message> <message> <source>Device on serial port:</source> - <translation type="obsolete">Appareil mobile sur port série&nbsp;:</translation> + <translation type="obsolete">Appareil mobile sur port série :</translation> </message> <message> <source>Install File:</source> - <translation type="obsolete">Fichier d'installation&nbsp;:</translation> + <translation type="obsolete">Fichier d'installation :</translation> </message> <message> <source>Device on Serial Port:</source> - <translation type="obsolete">Appareil mobile sur port série&nbsp;:</translation> + <translation type="obsolete">Appareil mobile sur port série :</translation> </message> <message> <source>Queries the device for information</source> @@ -24196,7 +24196,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Custom certificate:</source> - <translation type="obsolete">Certificat personnalisé&nbsp;:</translation> + <translation type="obsolete">Certificat personnalisé :</translation> </message> <message> <source>Choose key file (.key / .pem)</source> @@ -24204,7 +24204,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Key file:</source> - <translation type="obsolete">Fichier contenant la clé&nbsp;:</translation> + <translation type="obsolete">Fichier contenant la clé :</translation> </message> <message> <source><No Device></source> @@ -24221,7 +24221,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Summary: Run on '%1' %2</source> - <translation type="obsolete">Résumé&nbsp;: fonctionne avec "%1" %2</translation> + <translation type="obsolete">Résumé : fonctionne avec "%1" %2</translation> </message> <message> <source>Connecting...</source> @@ -24248,7 +24248,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Executable file: %1</source> - <translation type="obsolete">Fichier exécutable&nbsp;: %1</translation> + <translation type="obsolete">Fichier exécutable : %1</translation> </message> <message> <source>Debugger for Symbian Platform</source> @@ -24274,22 +24274,22 @@ Raison&nbsp;: %2</translation> <message> <source>Package: %1 Deploying application to '%2'...</source> - <translation type="obsolete">Package&nbsp;: %1 + <translation type="obsolete">Package : %1 Déploiement de l'application sur '%2'...</translation> </message> <message> <source>Could not connect to phone on port '%1': %2 Check if the phone is connected and the TRK application is running.</source> - <translation type="obsolete">Impossible de se connecter au téléphone sur le port '%1'&nbsp;: %2 + <translation type="obsolete">Impossible de se connecter au téléphone sur le port '%1' : %2 Veuillez vérifier si le téléphone est connecté et que l'application TRK est lancée.</translation> </message> <message> <source>Unable to remove existing file '%1': %2</source> - <translation type="obsolete">Impossible de supprimer le fichier existant "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de supprimer le fichier existant "%1" : %2</translation> </message> <message> <source>Unable to rename file '%1' to '%2': %3</source> - <translation type="obsolete">Impossible de renommer le fichier "%1" en "%2"&nbsp;: %3</translation> + <translation type="obsolete">Impossible de renommer le fichier "%1" en "%2" : %3</translation> </message> <message> <source>Deploying</source> @@ -24313,12 +24313,12 @@ Veuillez vérifier si le téléphone est connecté et que l'application TRK </message> <message> <source>Failed to find package '%1': %2</source> - <translation type="obsolete">Impossible de trouver le paquet "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de trouver le paquet "%1" : %2</translation> </message> <message> <source>Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running.</source> - <translation type="obsolete">Impossible de connecter le téléphone sur le port '%1'&nbsp;: %2 + <translation type="obsolete">Impossible de connecter le téléphone sur le port '%1' : %2 Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</translation> </message> <message> @@ -24327,7 +24327,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not write to file %1 on device: %2</source> - <translation type="obsolete">Impossible d'écrire le fichier %1 sur l'appareil mobile&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'écrire le fichier %1 sur l'appareil mobile : %2</translation> </message> <message> <source>Could not close file %1 on device: %2. It will be closed when App TRK is closed.</source> @@ -24335,7 +24335,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not connect to App TRK on device: %1. Restarting App TRK might help.</source> - <translation type="obsolete">Impossible de se connecter à App TRK sur l'appareil mobile&nbsp;: %1. Redémarrer App TRK pourrait résoudre le problème.</translation> + <translation type="obsolete">Impossible de se connecter à App TRK sur l'appareil mobile : %1. Redémarrer App TRK pourrait résoudre le problème.</translation> </message> <message> <source>Copying installation file...</source> @@ -24359,7 +24359,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not install from package %1 on device: %2</source> - <translation type="obsolete">Impossible d'installer à partir du package %1 sur l'appareil mobile&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'installer à partir du package %1 sur l'appareil mobile : %2</translation> </message> <message> <source>Waiting for App TRK</source> @@ -24398,7 +24398,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Executable file: %1</source> - <translation type="obsolete">Fichier exécutable&nbsp;: %1</translation> + <translation type="obsolete">Fichier exécutable : %1</translation> </message> <message> <source>Debugger for Symbian Platform</source> @@ -24407,12 +24407,12 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ <message> <source>Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running.</source> - <translation type="obsolete">Impossible de connecter le téléphone sur le port '%1'&nbsp;: %2 + <translation type="obsolete">Impossible de connecter le téléphone sur le port '%1' : %2 Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</translation> </message> <message> <source>Could not connect to App TRK on device: %1. Restarting App TRK might help.</source> - <translation type="obsolete">Impossible de se connecter à App TRK sur l'appareil mobile&nbsp;: %1. Redémarrer App TRK pourrait résoudre le problème.</translation> + <translation type="obsolete">Impossible de se connecter à App TRK sur l'appareil mobile : %1. Redémarrer App TRK pourrait résoudre le problème.</translation> </message> <message> <source>Waiting for App TRK</source> @@ -24444,19 +24444,19 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not start application: %1</source> - <translation type="obsolete">Impossible de démarrer l'application&nbsp;: %1</translation> + <translation type="obsolete">Impossible de démarrer l'application : %1</translation> </message> </context> <context> <name>QmakeProjectManager::Internal::S60DeviceDebugRunControl</name> <message> <source>Warning: Cannot locate the symbol file belonging to %1.</source> - <translation type="obsolete">Attention&nbsp;: Impossible de trouver le fichier de symboles appartenant à %1.</translation> + <translation type="obsolete">Attention : Impossible de trouver le fichier de symboles appartenant à %1.</translation> </message> <message> <source>Warning: Cannot locate the symbol file belonging to %1. </source> - <translation type="obsolete">Attention&nbsp;: impossible de trouver le fichier de symboles appartenant à %1.</translation> + <translation type="obsolete">Attention : impossible de trouver le fichier de symboles appartenant à %1.</translation> </message> <message> <source>Launching debugger... @@ -24495,15 +24495,15 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ <name>QmakeProjectManager::Internal::S60EmulatorRunConfigurationWidget</name> <message> <source>Name:</source> - <translation type="obsolete">Nom&nbsp;:</translation> + <translation type="obsolete">Nom :</translation> </message> <message> <source>Executable:</source> - <translation type="obsolete">Exécutable&nbsp;:</translation> + <translation type="obsolete">Exécutable :</translation> </message> <message> <source>Summary: Run %1 in emulator</source> - <translation type="obsolete">Sommaire&nbsp;: démarrer %1 sur l'émulateur</translation> + <translation type="obsolete">Sommaire : démarrer %1 sur l'émulateur</translation> </message> </context> <context> @@ -24604,7 +24604,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>New Configuration Name:</source> - <translation type="obsolete">Nom de la nouvelle configuration&nbsp;:</translation> + <translation type="obsolete">Nom de la nouvelle configuration :</translation> </message> <message> <source>Qmake based build</source> @@ -24616,7 +24616,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>New configuration name:</source> - <translation>Nom de la nouvelle configuration&nbsp;:</translation> + <translation>Nom de la nouvelle configuration :</translation> </message> <message> <source>%1 Debug</source> @@ -24673,14 +24673,14 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>Repository:</source> - <translation>Dépôt&nbsp;:</translation> + <translation>Dépôt :</translation> </message> </context> <context> <name>TextEditor::Internal::ColorScheme</name> <message> <source>Not a color scheme file.</source> - <translatorcomment>Pas sur&nbsp;?</translatorcomment> + <translatorcomment>Pas sur ?</translatorcomment> <translation>Pas un fichier de jeu de couleur.</translation> </message> </context> @@ -24722,7 +24722,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e <name>VcsBase::ProcessCheckoutJob</name> <message> <source>Unable to start %1: %2</source> - <translation>Impossible de démarrer "%1"&nbsp;: %2</translation> + <translation>Impossible de démarrer "%1" : %2</translation> </message> <message> <source>The process terminated with exit code %1.</source> @@ -24780,22 +24780,22 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>Executing: %1 %2</source> - <translation>Exécution de&nbsp;: %1 %2</translation> + <translation>Exécution de : %1 %2</translation> </message> <message> <source>Executing in %1: %2 %3</source> - <translation>Exécution dans %1&nbsp;: %2 %3</translation> + <translation>Exécution dans %1 : %2 %3</translation> </message> <message> <source>Executing: %1 %2 </source> - <translation>Exécution de&nbsp;: %1 %2 + <translation>Exécution de : %1 %2 </translation> </message> <message> <source>Executing in %1: %2 %3 </source> - <translation>Exécution dans %1&nbsp;: %2 %3 + <translation>Exécution dans %1 : %2 %3 </translation> </message> </context> @@ -25054,19 +25054,19 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e <message> <source>The Gdb process could not be stopped: %1</source> - <translation type="obsolete">Le processus Gdb ne peut pas être arrêté&nbsp;: + <translation type="obsolete">Le processus Gdb ne peut pas être arrêté : %1</translation> </message> <message> <source>The gdb process could not be stopped: %1</source> - <translation type="obsolete">Le processus gdb n'a pas pu être arrêté&nbsp;: + <translation type="obsolete">Le processus gdb n'a pas pu être arrêté : %1</translation> </message> <message> <source>Application process could not be stopped: %1</source> - <translation type="obsolete">Le processus de l'application ne peut être arrêté&nbsp;: + <translation type="obsolete">Le processus de l'application ne peut être arrêté : %1</translation> </message> <message> @@ -25084,7 +25084,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e <message> <source>Inferior process could not be stopped: %1</source> - <translation type="obsolete">Le processus inférieur ne peut pas être arrêté&nbsp;: + <translation type="obsolete">Le processus inférieur ne peut pas être arrêté : %1</translation> </message> <message> @@ -25102,7 +25102,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e <message> <source>Connecting to remote server failed: %1</source> - <translation type="obsolete">La connexion au serveur distant a échoué&nbsp;: + <translation type="obsolete">La connexion au serveur distant a échoué : %1</translation> </message> </context> @@ -25151,7 +25151,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>Illegal unicode escape sequence</source> - <translatorcomment>trad illegal&nbsp;?</translatorcomment> + <translatorcomment>trad illegal ?</translatorcomment> <translation>Séquence d'échappement unicode invalide</translation> </message> <message> @@ -25168,7 +25168,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>Identifier cannot start with numeric literal</source> - <translatorcomment>Trad numeric literal&nbsp;?</translatorcomment> + <translatorcomment>Trad numeric literal ?</translatorcomment> <translation type="obsolete">Un identificateur ne peut pas commencer par un nombre</translation> </message> <message> @@ -25232,54 +25232,54 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e <name>QmakeProjectManager::Internal::S60Devices::Device</name> <message> <source>Id:</source> - <translation type="obsolete">Id&nbsp;:</translation> + <translation type="obsolete">Id :</translation> </message> <message> <source>Name:</source> - <translation type="obsolete">Nom&nbsp;:</translation> + <translation type="obsolete">Nom :</translation> </message> <message> <source>EPOC:</source> - <translation type="obsolete">EPOC&nbsp;:</translation> + <translation type="obsolete">EPOC :</translation> </message> <message> <source>Tools:</source> - <translation type="obsolete">Outils&nbsp;:</translation> + <translation type="obsolete">Outils :</translation> </message> <message> <source>Qt:</source> - <translation type="obsolete">Qt&nbsp;:</translation> + <translation type="obsolete">Qt :</translation> </message> </context> <context> <name>trk::BluetoothListener</name> <message> <source>%1: Stopping listener %2...</source> - <translation type="obsolete">%1&nbsp;: arrêt de l'observateur %2...</translation> + <translation type="obsolete">%1 : arrêt de l'observateur %2...</translation> </message> <message> <source>%1: Starting Bluetooth listener %2...</source> - <translation type="obsolete">%1&nbsp;: démarrage de l'observateur Bluetooth %2...</translation> + <translation type="obsolete">%1 : démarrage de l'observateur Bluetooth %2...</translation> </message> <message> <source>Unable to run '%1': %2</source> - <translation type="obsolete">Impossible de démarrer "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de démarrer "%1" : %2</translation> </message> <message> <source>%1: Bluetooth listener running (%2).</source> - <translation type="obsolete">%1&nbsp;: observateur Bluetooth en cours d'éxecution (%2).</translation> + <translation type="obsolete">%1 : observateur Bluetooth en cours d'éxecution (%2).</translation> </message> <message> <source>%1: Process %2 terminated with exit code %3.</source> - <translation type="obsolete">%1&nbsp;: processus %2 terminé avec le code %3.</translation> + <translation type="obsolete">%1 : processus %2 terminé avec le code %3.</translation> </message> <message> <source>%1: Process %2 crashed.</source> - <translation type="obsolete">%1&nbsp;: processus %2 planté.</translation> + <translation type="obsolete">%1 : processus %2 planté.</translation> </message> <message> <source>%1: Process error %2: %3</source> - <translation type="obsolete">%1&nbsp;: erreur de processus %2&nbsp;: %3</translation> + <translation type="obsolete">%1 : erreur de processus %2 : %3</translation> </message> </context> <context> @@ -25294,7 +25294,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>Waiting for TRK to start on %1...</source> - <translatorcomment>Attente que TRK ai démarré sur %1...&nbsp;??? [pierre: je plussoie]</translatorcomment> + <translatorcomment>Attente que TRK ai démarré sur %1... ??? [pierre: je plussoie]</translatorcomment> <translation type="obsolete">Démarrage de TRK sur %1 en attente...</translation> </message> <message> @@ -25319,17 +25319,17 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e <message numerus="yes"> <source>%1: timed out after %n attempts using an interval of %2ms.</source> <translation type="obsolete"> - <numerusform>%1&nbsp;: interruption après %n tentative en utilisant un intervalle de %2ms.</numerusform> - <numerusform>%1&nbsp;: interruption après %n tentatives en utilisant un intervalle de %2ms.</numerusform> + <numerusform>%1 : interruption après %n tentative en utilisant un intervalle de %2ms.</numerusform> + <numerusform>%1 : interruption après %n tentatives en utilisant un intervalle de %2ms.</numerusform> </translation> </message> <message> <source>%1: Connection attempt %2 succeeded.</source> - <translation type="obsolete">%1&nbsp;: tentative de connexion %2 réussie.</translation> + <translation type="obsolete">%1 : tentative de connexion %2 réussie.</translation> </message> <message> <source>%1: Connection attempt %2 failed: %3 (retrying)...</source> - <translation type="obsolete">%1&nbsp;: tenative de connexion %2 echoué&nbsp;: %3 (nouvel essai)...</translation> + <translation type="obsolete">%1 : tenative de connexion %2 echoué : %3 (nouvel essai)...</translation> </message> </context> <context> @@ -25379,7 +25379,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>Choose build configuration:</source> - <translation type="obsolete">Choisir la configuration de compilation&nbsp;:</translation> + <translation type="obsolete">Choisir la configuration de compilation :</translation> </message> </context> <context> @@ -25387,11 +25387,11 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e <message> <source>CPU: v%1.%2%3%4</source> <extracomment>CPU description of an S60 device %1 major verison, %2 minor version %3 real name of major verison, %4 real name of minor version</extracomment> - <translation type="obsolete">CPU&nbsp;: v%1.%2%3%4</translation> + <translation type="obsolete">CPU : v%1.%2%3%4</translation> </message> <message> <source>App TRK: v%1.%2 TRK protocol: v%3.%4</source> - <translation type="obsolete">App TRK&nbsp;: v%1.%2 protocole TRK&nbsp;: v%3.%4</translation> + <translation type="obsolete">App TRK : v%1.%2 protocole TRK : v%3.%4</translation> </message> <message> <source>%1, %2%3%4, %5</source> @@ -25400,7 +25400,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>big endian</source> - <translatorcomment>gros-boutiste&nbsp;??</translatorcomment> + <translatorcomment>gros-boutiste ??</translatorcomment> <translation type="obsolete">big endian</translation> </message> <message> @@ -25410,12 +25410,12 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e <message> <source>, type size: %1</source> <extracomment>will be inserted into s60description</extracomment> - <translation type="obsolete">, taille du type&nbsp;: %1</translation> + <translation type="obsolete">, taille du type : %1</translation> </message> <message> <source>, float size: %1</source> <extracomment>will be inserted into s60description</extracomment> - <translation type="obsolete">, taille d'un flottant&nbsp;: %1</translation> + <translation type="obsolete">, taille d'un flottant : %1</translation> </message> </context> <context> @@ -25454,7 +25454,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>Target:</source> - <translation type="obsolete">Cible&nbsp;:</translation> + <translation type="obsolete">Cible :</translation> </message> <message> <source>Reset</source> @@ -25481,11 +25481,11 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e </message> <message> <source>&Path:</source> - <translation type="obsolete">Che&min&nbsp;:</translation> + <translation type="obsolete">Che&min :</translation> </message> <message> <source>&Display:</source> - <translation type="obsolete">&Afficher&nbsp;:</translation> + <translation type="obsolete">&Afficher :</translation> </message> <message> <source>entries</source> @@ -25494,7 +25494,7 @@ S60 emulator run configuration default display name, %1 is base pro-File name</e <message> <source>The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted.</source> <translatorcomment>J'ai traduis "fileshare". Mais la phrase me semble lourde... -cédric&nbsp;: je pense qu'il faut laisser comme ça moi ou alors carrément enlever "basé sur le partage de fichiers" mais du coup on en perd en route ... (j'ai changé "Les fichiers" en "Ces fichiers", je trouve que ça fait moins pompeux.</translatorcomment> +cédric : je pense qu'il faut laisser comme ça moi ou alors carrément enlever "basé sur le partage de fichiers" mais du coup on en perd en route ... (j'ai changé "Les fichiers" en "Ces fichiers", je trouve que ça fait moins pompeux.</translatorcomment> <translation type="obsolete">Le protocole de collage basé sur le partage de fichier permet de partager des fragments de code en utilisant de simples fichiers sur un disque réseau partagé. Ces fichiers ne sont jamais effacés.</translation> </message> </context> @@ -25547,7 +25547,7 @@ cédric&nbsp;: je pense qu'il faut laisser comme ça moi ou alors carr </message> <message> <source>Repository: %1</source> - <translation>Dépôt&nbsp;: %1</translation> + <translation>Dépôt : %1</translation> </message> <message> <source>Delete stashes</source> @@ -25555,13 +25555,13 @@ cédric&nbsp;: je pense qu'il faut laisser comme ça moi ou alors carr </message> <message> <source>Do you want to delete all stashes?</source> - <translation>Voulez-vous supprimer toutes les remises&nbsp;?</translation> + <translation>Voulez-vous supprimer toutes les remises ?</translation> </message> <message numerus="yes"> <source>Do you want to delete %n stash(es)?</source> <translation> - <numerusform>Voulez-vous effacer %n remise&nbsp;?</numerusform> - <numerusform>Voulez-vous effacer %n remises&nbsp;?</numerusform> + <numerusform>Voulez-vous effacer %n remise ?</numerusform> + <numerusform>Voulez-vous effacer %n remises ?</numerusform> </translation> </message> <message> @@ -25630,7 +25630,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Branch:</source> - <translation>Branche&nbsp;:</translation> + <translation>Branche :</translation> </message> <message> <source>Stash Restore</source> @@ -25638,7 +25638,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Would you like to restore %1?</source> - <translation>Souhaitez-vous restaurer "%1"&nbsp;?</translation> + <translation>Souhaitez-vous restaurer "%1" ?</translation> </message> <message> <source>Error restoring %1</source> @@ -25653,7 +25653,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Repository:</source> - <translation>Dépôt&nbsp;:</translation> + <translation>Dépôt :</translation> </message> <message> <source>repository</source> @@ -25661,7 +25661,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Branch:</source> - <translation>Branche&nbsp;:</translation> + <translation>Branche :</translation> </message> <message> <source>branch</source> @@ -25673,11 +25673,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Author:</source> - <translation>Auteur&nbsp;:</translation> + <translation>Auteur :</translation> </message> <message> <source>Email:</source> - <translation>Email&nbsp;:</translation> + <translation>Email :</translation> </message> </context> <context> @@ -25692,7 +25692,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Command:</source> - <translation>Commande&nbsp;:</translation> + <translation>Commande :</translation> </message> <message> <source>User</source> @@ -25704,7 +25704,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Default username:</source> - <translation>Nom d'utilisateur par défaut&nbsp;:</translation> + <translation>Nom d'utilisateur par défaut :</translation> </message> <message> <source>Email to use by default on commit.</source> @@ -25712,7 +25712,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Default email:</source> - <translation>Email par défaut&nbsp;:</translation> + <translation>Email par défaut :</translation> </message> <message> <source>Miscellaneous</source> @@ -25720,7 +25720,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Log count:</source> - <translation>Nombre de log&nbsp;:</translation> + <translation>Nombre de log :</translation> </message> <message> <source>The number of recent commit logs to show, choose 0 to see all enteries</source> @@ -25728,7 +25728,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Timeout:</source> - <translation>Timeout&nbsp;:</translation> + <translation>Timeout :</translation> </message> <message> <source>s</source> @@ -25755,11 +25755,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Specify a revision other than the default?</source> - <translation>Spécifier une revision différente de celle par défaut&nbsp;?</translation> + <translation>Spécifier une revision différente de celle par défaut ?</translation> </message> <message> <source>Revision:</source> - <translation>Révision&nbsp;:</translation> + <translation>Révision :</translation> </message> </context> <context> @@ -25774,7 +25774,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Local filesystem:</source> - <translation>Système local de fichier&nbsp;:</translation> + <translation>Système local de fichier :</translation> </message> <message> <source>e.g. https://[user[:pass]@]host[:port]/[path]</source> @@ -25782,11 +25782,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Specify Url:</source> - <translation type="obsolete">Spécifier l'URL&nbsp;:</translation> + <translation type="obsolete">Spécifier l'URL :</translation> </message> <message> <source>Specify URL:</source> - <translation>Spécifier l'URL&nbsp;: </translation> + <translation>Spécifier l'URL : </translation> </message> <message> <source>Prompt for credentials</source> @@ -25801,7 +25801,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Target:</source> - <translation type="obsolete">Cible&nbsp;:</translation> + <translation type="obsolete">Cible :</translation> </message> </context> <context> @@ -25834,15 +25834,15 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Type:</source> - <translation type="obsolete">Type&nbsp;:</translation> + <translation type="obsolete">Type :</translation> </message> <message> <source>Id:</source> - <translation type="obsolete">Id&nbsp;:</translation> + <translation type="obsolete">Id :</translation> </message> <message> <source>Property Name:</source> - <translation type="obsolete">Nom de la propriété&nbsp;:</translation> + <translation type="obsolete">Nom de la propriété :</translation> </message> <message> <source>Animation</source> @@ -25858,11 +25858,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Duration:</source> - <translation type="obsolete">Durée&nbsp;:</translation> + <translation type="obsolete">Durée :</translation> </message> <message> <source>Curve:</source> - <translation type="obsolete">Courbe&nbsp;:</translation> + <translation type="obsolete">Courbe :</translation> </message> <message> <source>easeNone</source> @@ -25870,27 +25870,27 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Source:</source> - <translation type="obsolete">Source&nbsp;:</translation> + <translation type="obsolete">Source :</translation> </message> <message> <source>Velocity:</source> - <translation type="obsolete">Vitesse&nbsp;:</translation> + <translation type="obsolete">Vitesse :</translation> </message> <message> <source>Spring:</source> - <translation type="obsolete">Élasticité&nbsp;:</translation> + <translation type="obsolete">Élasticité :</translation> </message> <message> <source>Damping:</source> - <translation type="obsolete">Amortissement&nbsp;:</translation> + <translation type="obsolete">Amortissement :</translation> </message> <message> <source>ID:</source> - <translation type="obsolete">Id&nbsp;:</translation> + <translation type="obsolete">Id :</translation> </message> <message> <source>Property name:</source> - <translation type="obsolete">Nom de la propriété&nbsp;:</translation> + <translation type="obsolete">Nom de la propriété :</translation> </message> </context> <context> @@ -26425,7 +26425,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Are you sure you want to remove the selected gradient?</source> - <translation type="obsolete">Êtes-vous sur de vouloir supprimer le dégradé sélectionné&nbsp;?</translation> + <translation type="obsolete">Êtes-vous sur de vouloir supprimer le dégradé sélectionné ?</translation> </message> </context> <context> @@ -26461,11 +26461,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Snap margin:</source> - <translation type="obsolete">Distance d'aimantation&nbsp;: </translation> + <translation type="obsolete">Distance d'aimantation : </translation> </message> <message> <source>Item spacing:</source> - <translation type="obsolete">Espacement entre les éléments&nbsp;: </translation> + <translation type="obsolete">Espacement entre les éléments : </translation> </message> <message> <source>Canvas</source> @@ -26513,11 +26513,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Parent item padding:</source> - <translation>Décalage de l'élement parent&nbsp;:</translation> + <translation>Décalage de l'élement parent :</translation> </message> <message> <source>Sibling item spacing:</source> - <translation>Espacement avec les éléments frères&nbsp;:</translation> + <translation>Espacement avec les éléments frères :</translation> </message> </context> <context> @@ -26528,11 +26528,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Debugging address:</source> - <translation type="obsolete">Addresse du débogeur&nbsp;:</translation> + <translation type="obsolete">Addresse du débogeur :</translation> </message> <message> <source>Debugging port:</source> - <translation type="obsolete">Port du débogueur&nbsp;:</translation> + <translation type="obsolete">Port du débogueur :</translation> </message> <message> <source>127.0.0.1</source> @@ -26540,7 +26540,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Project:</source> - <translation type="obsolete">Projet&nbsp;:</translation> + <translation type="obsolete">Projet :</translation> </message> <message> <source><No project></source> @@ -26548,11 +26548,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Viewer path:</source> - <translation type="obsolete">Chemin du visualisateur&nbsp;:</translation> + <translation type="obsolete">Chemin du visualisateur :</translation> </message> <message> <source>Viewer arguments:</source> - <translation type="obsolete">Arguments du visualisateur&nbsp;:</translation> + <translation type="obsolete">Arguments du visualisateur :</translation> </message> <message> <source>To switch languages while debugging, go to Debug->Language menu.</source> @@ -26570,7 +26570,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband <name>MaemoPackageCreationWidget</name> <message> <source>Package contents:</source> - <translation type="obsolete">Contenu du paquet&nbsp;:</translation> + <translation type="obsolete">Contenu du paquet :</translation> </message> <message> <source>Add File to Package</source> @@ -26590,31 +26590,31 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Version number:</source> - <translation type="obsolete">Numéro de version&nbsp;:</translation> + <translation type="obsolete">Numéro de version :</translation> </message> <message> <source>Major:</source> - <translation type="obsolete">Majeur&nbsp;:</translation> + <translation type="obsolete">Majeur :</translation> </message> <message> <source>Minor:</source> - <translation type="obsolete">Mineur&nbsp;:</translation> + <translation type="obsolete">Mineur :</translation> </message> <message> <source>Patch:</source> - <translation type="obsolete">Patch&nbsp;:</translation> + <translation type="obsolete">Patch :</translation> </message> <message> <source>Files to deploy:</source> - <translation type="obsolete">Fichiers à déployer&nbsp;:</translation> + <translation type="obsolete">Fichiers à déployer :</translation> </message> <message> <source><b>Version number:</b></source> - <translation type="obsolete"><b>Numéro de version&nbsp;:</b></translation> + <translation type="obsolete"><b>Numéro de version :</b></translation> </message> <message> <source><b>Adapt Debian file:</b></source> - <translation type="obsolete"><b>Adapter le fichier Debian&nbsp;:</b></translation> + <translation type="obsolete"><b>Adapter le fichier Debian :</b></translation> </message> <message> <source>Edit</source> @@ -26622,27 +26622,27 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source><b>Package Manager icon:</b></source> - <translation type="obsolete"><b>Icône du gestionaire de paquet&nbsp;:</b></translation> + <translation type="obsolete"><b>Icône du gestionaire de paquet :</b></translation> </message> <message> <source>Package name:</source> - <translation type="obsolete">Nom du paquet&nbsp;: </translation> + <translation type="obsolete">Nom du paquet : </translation> </message> <message> <source>Package version:</source> - <translation type="obsolete">Version du paquet&nbsp;: </translation> + <translation type="obsolete">Version du paquet : </translation> </message> <message> <source>Short package description:</source> - <translation type="obsolete">Description couret du paquet&nbsp;: </translation> + <translation type="obsolete">Description couret du paquet : </translation> </message> <message> <source>Name to be displayed in Package Manager:</source> - <translation type="obsolete">Nom à afficher dans le gestionnaire de paquets&nbsp;: </translation> + <translation type="obsolete">Nom à afficher dans le gestionnaire de paquets : </translation> </message> <message> <source>Icon to be displayed in Package Manager:</source> - <translation type="obsolete">Icône à afficher dans le gestionnaire de paquets&nbsp;: </translation> + <translation type="obsolete">Icône à afficher dans le gestionnaire de paquets : </translation> </message> <message> <source>Size is 48x48 pixels</source> @@ -26650,7 +26650,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Adapt Debian file:</source> - <translation type="obsolete">Adapter le fichier Debian&nbsp;: </translation> + <translation type="obsolete">Adapter le fichier Debian : </translation> </message> <message> <source>Edit spec file</source> @@ -26669,7 +26669,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Configuration:</source> - <translation type="obsolete">Configuration&nbsp;:</translation> + <translation type="obsolete">Configuration :</translation> </message> <message> <source>Name</source> @@ -26677,7 +26677,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Device type:</source> - <translation type="obsolete">Type de périphérique&nbsp;:</translation> + <translation type="obsolete">Type de périphérique :</translation> </message> <message> <source>Remote device</source> @@ -26689,7 +26689,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Authentication type:</source> - <translation type="obsolete">Type d'identification&nbsp;:</translation> + <translation type="obsolete">Type d'identification :</translation> </message> <message> <source>Password</source> @@ -26701,7 +26701,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Host name:</source> - <translation type="obsolete">Nom de l'hôte&nbsp;:</translation> + <translation type="obsolete">Nom de l'hôte :</translation> </message> <message> <source>IP or host name of the device</source> @@ -26709,19 +26709,19 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Ports:</source> - <translation type="obsolete">Ports&nbsp;:</translation> + <translation type="obsolete">Ports :</translation> </message> <message> <source>SSH:</source> - <translation type="obsolete">SSH&nbsp;:</translation> + <translation type="obsolete">SSH :</translation> </message> <message> <source>Gdb server:</source> - <translation type="obsolete">Serveur Gdb&nbsp;:</translation> + <translation type="obsolete">Serveur Gdb :</translation> </message> <message> <source>Connection timeout:</source> - <translation type="obsolete">Timeout de la connection&nbsp;:</translation> + <translation type="obsolete">Timeout de la connection :</translation> </message> <message> <source>s</source> @@ -26729,15 +26729,15 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Username:</source> - <translation type="obsolete">Nom d'utilisateur&nbsp;:</translation> + <translation type="obsolete">Nom d'utilisateur :</translation> </message> <message> <source>Password:</source> - <translation type="obsolete">Mot de passe&nbsp;:</translation> + <translation type="obsolete">Mot de passe :</translation> </message> <message> <source>Private key file:</source> - <translation type="obsolete">Fichier de clé privée&nbsp;:</translation> + <translation type="obsolete">Fichier de clé privée :</translation> </message> <message> <source>Add</source> @@ -26761,15 +26761,15 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>SSH port:</source> - <translation type="obsolete">Port SSH&nbsp;: </translation> + <translation type="obsolete">Port SSH : </translation> </message> <message> <source>Free ports:</source> - <translation type="obsolete">Ports libres&nbsp;: </translation> + <translation type="obsolete">Ports libres : </translation> </message> <message> <source>You can enter lists and ranges like this: 1024,1026-1028,1030</source> - <translation type="obsolete">Vous pouvez entrer des listes et des intervalles comme ceci&nbsp;: 1024,1026-1028,1030</translation> + <translation type="obsolete">Vous pouvez entrer des listes et des intervalles comme ceci : 1024,1026-1028,1030</translation> </message> <message> <source>TextLabel</source> @@ -26792,11 +26792,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Key size:</source> - <translation type="obsolete">Taille de clé&nbsp;:</translation> + <translation type="obsolete">Taille de clé :</translation> </message> <message> <source>Key algorithm:</source> - <translation type="obsolete">Algorithme de la clé&nbsp;:</translation> + <translation type="obsolete">Algorithme de la clé :</translation> </message> <message> <source>RSA</source> @@ -26828,7 +26828,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Key &size:</source> - <translation type="obsolete">Taille de la clé (&S)&nbsp;: </translation> + <translation type="obsolete">Taille de la clé (&S) : </translation> </message> <message> <source>&RSA</source> @@ -26867,7 +26867,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Custom certificate:</source> - <translation type="obsolete">Certificat personnalisé&nbsp;:</translation> + <translation type="obsolete">Certificat personnalisé :</translation> </message> <message> <source>Choose certificate file (.cer)</source> @@ -26875,7 +26875,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Key file:</source> - <translation type="obsolete">Fichier contenant la clé&nbsp;:</translation> + <translation type="obsolete">Fichier contenant la clé :</translation> </message> <message> <source>Not signed</source> @@ -26910,7 +26910,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Qt Creator can set up the following targets:</source> - <translation type="obsolete">Qt Creator peut mettre en place les cibles suivantes&nbsp;:</translation> + <translation type="obsolete">Qt Creator peut mettre en place les cibles suivantes :</translation> </message> <message> <source>Qt Version</source> @@ -26941,12 +26941,12 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband <message> <source>Qt Creator can set up the following targets for project <b>%1</b>:</source> <comment>%1: Project name</comment> - <translation type="obsolete">Qt Creator peut mettre en place les cibles suivantes pour le projet <b>%1</b>&nbsp;:</translation> + <translation type="obsolete">Qt Creator peut mettre en place les cibles suivantes pour le projet <b>%1</b> :</translation> </message> <message> <source>Qt Creator can set up the following targets for<br>project <b>%1</b>:</source> <comment>%1: Project name</comment> - <translation type="obsolete">Qt Creator peut mettre en place les cibles suivantes pour le projet <b>%1</b>&nbsp;:</translation> + <translation type="obsolete">Qt Creator peut mettre en place les cibles suivantes pour le projet <b>%1</b> :</translation> </message> <message> <source>Choose a directory to scan for additional shadow builds</source> @@ -26967,7 +26967,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Check all Qt versions</source> - <translatorcomment>myzu&nbsp;: check => cocher ou vérifier&nbsp;? - john&nbsp;: vu qu'il y a uncheck je pense plutôt à cocher.</translatorcomment> + <translatorcomment>myzu : check => cocher ou vérifier ? - john : vu qu'il y a uncheck je pense plutôt à cocher.</translatorcomment> <translation type="obsolete">Cocher toutes les versions de Qt</translation> </message> <message> @@ -26985,12 +26985,12 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband <message> <source><b>Error:</b> </source> <comment>Severity is Task::Error</comment> - <translation type="obsolete"><b>Erreur&nbsp;:</b> </translation> + <translation type="obsolete"><b>Erreur :</b> </translation> </message> <message> <source><b>Warning:</b> </source> <comment>Severity is Task::Warning</comment> - <translation type="obsolete"><b>Alerte&nbsp;:</b> </translation> + <translation type="obsolete"><b>Alerte :</b> </translation> </message> <message> <source>debug and release</source> @@ -27059,11 +27059,11 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Class name:</source> - <translation>Nom de la classe&nbsp;:</translation> + <translation>Nom de la classe :</translation> </message> <message> <source>Type:</source> - <translation>Type&nbsp;:</translation> + <translation>Type :</translation> </message> <message> <source>Test</source> @@ -27075,7 +27075,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>File:</source> - <translation>Fichier&nbsp;:</translation> + <translation>Fichier :</translation> </message> <message> <source>Generate initialization and cleanup code</source> @@ -27083,7 +27083,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Test slot:</source> - <translation>Slot de test&nbsp;:</translation> + <translation>Slot de test :</translation> </message> <message> <source>Requires QApplication</source> @@ -27106,7 +27106,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Location:</source> - <translation type="obsolete">Emplacement&nbsp;:</translation> + <translation type="obsolete">Emplacement :</translation> </message> <message> <source>Reset to default</source> @@ -27119,7 +27119,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband <message> <source><html><head/><body> <p>Highlight definitions are provided by the <a href="http://kate-editor.org/">Kate Text Editor</a>.</p></body></html></source> - <translatorcomment>highlight&nbsp;? John&nbsp;: Coloration syntaxique</translatorcomment> + <translatorcomment>highlight ? John : Coloration syntaxique</translatorcomment> <translation type="obsolete"><html><head/><body> <p>Les définitions de coloration syntaxique sont fournies par l'éditeur de texte <a href="http://kate-editor.org/">Kate</a>.</p></body></html></translation> </message> @@ -27129,7 +27129,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Use fallback location</source> - <translatorcomment>fallback&nbsp;? => "de repli"&nbsp;? "à défaut"&nbsp;? [pnr]</translatorcomment> + <translatorcomment>fallback ? => "de repli" ? "à défaut" ? [pnr]</translatorcomment> <translation type="obsolete">Utiliser un emplacement de repli</translation> </message> <message> @@ -27142,7 +27142,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Ignored file patterns:</source> - <translation type="obsolete">Motifs de fichier ignorés&nbsp;: </translation> + <translation type="obsolete">Motifs de fichier ignorés : </translation> </message> </context> <context> @@ -27161,7 +27161,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>There were errors when cleaning the repository %1:</source> - <translation>Il y a eu des erreurs lors du nettoyage du dépôt %1&nbsp;:</translation> + <translation>Il y a eu des erreurs lors du nettoyage du dépôt %1 :</translation> </message> <message> <source>Delete...</source> @@ -27173,7 +27173,7 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband </message> <message> <source>Repository: %1</source> - <translation>Dépôt&nbsp;: %1</translation> + <translation>Dépôt : %1</translation> </message> <message numerus="yes"> <source>%n bytes, last modified %1</source> @@ -27193,8 +27193,8 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband <message numerus="yes"> <source>Do you want to delete %n files?</source> <translation> - <numerusform>Voulez-vous supprimer %n fichier&nbsp;?</numerusform> - <numerusform>Voulez-vous supprimer %n fichiers&nbsp;?</numerusform> + <numerusform>Voulez-vous supprimer %n fichier ?</numerusform> + <numerusform>Voulez-vous supprimer %n fichiers ?</numerusform> </translation> </message> <message> @@ -27206,29 +27206,29 @@ Vous pouvez choisir entre mettre les changements dans une remise ou de les aband <name>CommonSettingsPage</name> <message> <source>Wrap submit message at:</source> - <translation type="obsolete">Limiter la largeur du message à &nbsp;:</translation> + <translation type="obsolete">Limiter la largeur du message à :</translation> </message> <message> <source> characters</source> <translation type="obsolete"> caractères</translation> </message> <message> - <source>An executable which is called with the submit message in a temporary file as first argument. It should return with an exit&nbsp;!= 0 and a message on standard error to indicate failure.</source> + <source>An executable which is called with the submit message in a temporary file as first argument. It should return with an exit != 0 and a message on standard error to indicate failure.</source> <translation type="obsolete">Un fichier exécutable qui est appelé avec comme premier argument le message dans un fichier temporaire. Pour indiquer une erreur, il doit se terminer avec un code différent de 0 et un message sur la sortie d'erreur standard.</translation> </message> <message> <source>Submit message check script:</source> - <translation type="obsolete">Script de vérification du message&nbsp;:</translation> + <translation type="obsolete">Script de vérification du message :</translation> </message> <message> <source>A file listing user names and email addresses in a 4-column mailmap format: name <email> alias <email></source> - <translation type="obsolete">Un fichier listant les noms d'utilisateur et leurs adresses email dans le format 4 colonnes de mailmap&nbsp;: + <translation type="obsolete">Un fichier listant les noms d'utilisateur et leurs adresses email dans le format 4 colonnes de mailmap : nom <email> alias <email></translation> </message> <message> <source>User/alias configuration file:</source> - <translation type="obsolete">Fichier de configuration des alias utilisateur&nbsp;:</translation> + <translation type="obsolete">Fichier de configuration des alias utilisateur :</translation> </message> <message> <source>A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor.</source> @@ -27236,7 +27236,7 @@ nom <email> alias <email></translation> </message> <message> <source>User fields configuration file:</source> - <translation type="obsolete">Fichier de configuration des champs utilisateurs&nbsp;:</translation> + <translation type="obsolete">Fichier de configuration des champs utilisateurs :</translation> </message> <message> <source>Specifies a command that is executed to graphically prompt for a password, @@ -27246,27 +27246,27 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>SSH prompt command:</source> - <translation type="obsolete">Invite de commande SSH&nbsp;: </translation> + <translation type="obsolete">Invite de commande SSH : </translation> </message> <message> <source>Submit message &check script:</source> - <translation type="obsolete">Script de vérifi&cation du message&nbsp;:</translation> + <translation type="obsolete">Script de vérifi&cation du message :</translation> </message> <message> <source>User/&alias configuration file:</source> - <translation type="obsolete">Fichier de configuration des &alias utilisateur&nbsp;:</translation> + <translation type="obsolete">Fichier de configuration des &alias utilisateur :</translation> </message> <message> <source>User &fields configuration file:</source> - <translation type="obsolete">&Fichier de configuration des champs utilisateurs&nbsp;:</translation> + <translation type="obsolete">&Fichier de configuration des champs utilisateurs :</translation> </message> <message> <source>&Patch command:</source> - <translation type="obsolete">Commande &Patch&nbsp;:</translation> + <translation type="obsolete">Commande &Patch :</translation> </message> <message> <source>&SSH prompt command:</source> - <translation type="obsolete">Invite de commande &SSH&nbsp;: </translation> + <translation type="obsolete">Invite de commande &SSH : </translation> </message> </context> <context> @@ -27362,19 +27362,19 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Blur Radius:</source> - <translation>Rayon du flou&nbsp;:</translation> + <translation>Rayon du flou :</translation> </message> <message> <source>Pixel Size:</source> - <translation>Taille de pixel&nbsp;:</translation> + <translation>Taille de pixel :</translation> </message> <message> <source>x Offset: </source> - <translation>Décalage x&nbsp;: </translation> + <translation>Décalage x : </translation> </message> <message> <source>y Offset: </source> - <translation>Décalage y&nbsp;: </translation> + <translation>Décalage y : </translation> </message> </context> <context> @@ -27754,7 +27754,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <message> <source>Flags</source> <translatorcomment>TODO: ou laisser flags? homogénéiser -francis&nbsp;: ouai assez d'accord.</translatorcomment> +francis : ouai assez d'accord.</translatorcomment> <translation>Flags</translation> </message> <message> @@ -27924,7 +27924,7 @@ francis&nbsp;: ouai assez d'accord.</translatorcomment> </message> <message> <source>Scale</source> - <translatorcomment>Je suis pas d'accord, je dirais redimensionnement (original&nbsp;: échelle)</translatorcomment> + <translatorcomment>Je suis pas d'accord, je dirais redimensionnement (original : échelle)</translatorcomment> <translation>Redimensionnement</translation> </message> <message> @@ -28090,8 +28090,8 @@ francis&nbsp;: ouai assez d'accord.</translatorcomment> <translation type="obsolete">membre inconnu</translation> </message> <message> - <source>== and&nbsp;!= perform type coercion, use === or&nbsp;!== instead to avoid</source> - <translation type="obsolete">== et&nbsp;!= effectuent une coercition de type, utilisez === ou&nbsp;!== à la place</translation> + <source>== and != perform type coercion, use === or !== instead to avoid</source> + <translation type="obsolete">== et != effectuent une coercition de type, utilisez === ou !== à la place</translation> </message> <message> <source>blocks do not introduce a new scope, avoid</source> @@ -28178,7 +28178,7 @@ francis&nbsp;: ouai assez d'accord.</translatorcomment> </message> <message> <source>%1: %2</source> - <translation type="obsolete">%1&nbsp;: %2</translation> + <translation type="obsolete">%1 : %2</translation> </message> </context> <context> @@ -28217,7 +28217,7 @@ For qmake projects, use the QML_IMPORT_PATH variable to add import paths. For qmlproject projects, use the importPaths property to add import paths.</source> <translation>Module QML non trouvé -Chemins d'importation&nbsp;: +Chemins d'importation : %1 Pour les projets qmake , utilisez la variable QML_IMPORT_PATH pour ajouter les chemins d'importations. @@ -28265,11 +28265,11 @@ Pour les projets qmlproject , utilisez la propriété importPaths pour ajouter l </message> <message> <source>The file %1 has been removed outside Qt Creator. Do you want to save it under a different name, or close the editor?</source> - <translation>Le fichier %1 a été supprimé en dehors de Qt Creator. Voulez-vous l'enregistrer sous un nom différent ou fermer l'éditeur&nbsp;?</translation> + <translation>Le fichier %1 a été supprimé en dehors de Qt Creator. Voulez-vous l'enregistrer sous un nom différent ou fermer l'éditeur ?</translation> </message> <message> <source>The file %1 was removed. Do you want to save it under a different name, or close the editor?</source> - <translation>Le fichier %1 a été supprimé. Voulez-vous l'enregistrer sous un nom différent ou fermer l'éditeur&nbsp;?</translation> + <translation>Le fichier %1 a été supprimé. Voulez-vous l'enregistrer sous un nom différent ou fermer l'éditeur ?</translation> </message> <message> <source>&Close</source> @@ -28321,46 +28321,46 @@ Pour les projets qmlproject , utilisez la propriété importPaths pour ajouter l Decimal unsigned value (big endian): %2 Decimal signed value (little endian): %3 Decimal signed value (big endian): %4</source> - <translatorcomment>endian&nbsp;? -cédric&nbsp;: heu faut traduire little-endian et big-endian&nbsp;? Perso je n'aurais pas traduit, ce sont des conventions de codage des nombres, j'ai toujours vu en anglais moi ...</translatorcomment> - <translation type="obsolete">Valeur décimale non signée(little-endian)&nbsp;: %1 -Valeur décimale non signée((big endian)&nbsp;: %2 -Valeur décimale signéelittle-endian)&nbsp;: %3 -Valeur décimale signée((big endian)&nbsp;: %4</translation> + <translatorcomment>endian ? +cédric : heu faut traduire little-endian et big-endian ? Perso je n'aurais pas traduit, ce sont des conventions de codage des nombres, j'ai toujours vu en anglais moi ...</translatorcomment> + <translation type="obsolete">Valeur décimale non signée(little-endian) : %1 +Valeur décimale non signée((big endian) : %2 +Valeur décimale signéelittle-endian) : %3 +Valeur décimale signée((big endian) : %4</translation> </message> <message> <source>Previous decimal unsigned value (little endian): %1 Previous decimal unsigned value (big endian): %2 Previous decimal signed value (little endian): %3 Previous decimal signed value (big endian): %4</source> - <translation type="obsolete">Valeur précédente au format décimal non signé (petit-boutiste)&nbsp;: %1 -Valeur précédente au format décimal non signé (gros-boutiste)&nbsp;: %2 -Valeur précédente au format décimal signé (petit-boutiste)&nbsp;: %3 -Valeur précédente au format décimal signé (gros-boutiste)&nbsp;: %4</translation> + <translation type="obsolete">Valeur précédente au format décimal non signé (petit-boutiste) : %1 +Valeur précédente au format décimal non signé (gros-boutiste) : %2 +Valeur précédente au format décimal signé (petit-boutiste) : %3 +Valeur précédente au format décimal signé (gros-boutiste) : %4</translation> </message> <message> <source>Memory at 0x%1</source> <translation type="obsolete">Mémoire à 0x%1</translation> </message> <message> - <source>Decimal&nbsp;unsigned&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;décimale&nbsp;non&nbsp;signée&nbsp;:</translation> + <source>Decimal unsigned value:</source> + <translation type="obsolete">Valeur décimale non signée :</translation> </message> <message> - <source>Decimal&nbsp;signed&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;décimale&nbsp;signée&nbsp;:</translation> + <source>Decimal signed value:</source> + <translation type="obsolete">Valeur décimale signée :</translation> </message> <message> - <source>Previous&nbsp;decimal&nbsp;unsigned&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;précédente&nbsp;décimale&nbsp;non&nbsp;signée&nbsp;:</translation> + <source>Previous decimal unsigned value:</source> + <translation type="obsolete">Valeur précédente décimale non signée :</translation> </message> <message> - <source>Previous&nbsp;decimal&nbsp;signed&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;précédente&nbsp;décimale&nbsp;signée&nbsp;:</translation> + <source>Previous decimal signed value:</source> + <translation type="obsolete">Valeur précédente décimale signée :</translation> </message> <message> - <source>%1-bit&nbsp;Integer&nbsp;Type</source> - <translation type="obsolete">Type&nbsp;d'entier&nbsp;sur&nbsp;%1&nbsp;bits</translation> + <source>%1-bit Integer Type</source> + <translation type="obsolete">Type d'entier sur %1 bits</translation> </message> <message> <source>Little Endian</source> @@ -28371,36 +28371,36 @@ Valeur précédente au format décimal signé (gros-boutiste)&nbsp;: %4</tra <translation type="obsolete">Grand boutiste</translation> </message> <message> - <source>Binary&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;binaire&nbsp;:</translation> + <source>Binary value:</source> + <translation type="obsolete">Valeur binaire :</translation> </message> <message> - <source>Octal&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;octale&nbsp;:</translation> + <source>Octal value:</source> + <translation type="obsolete">Valeur octale :</translation> </message> <message> - <source>Previous&nbsp;binary&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;binaire&nbsp;précédente&nbsp;:</translation> + <source>Previous binary value:</source> + <translation type="obsolete">Valeur binaire précédente :</translation> </message> <message> - <source>Previous&nbsp;octal&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;octale&nbsp;précédente&nbsp;:</translation> + <source>Previous octal value:</source> + <translation type="obsolete">Valeur octale précédente :</translation> </message> <message> - <source><i>double</i>&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;<i>double</i>&nbsp;:</translation> + <source><i>double</i> value:</source> + <translation type="obsolete">Valeur <i>double</i> :</translation> </message> <message> - <source>Previous <i>double</i>&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;<i>double</i>&nbsp;précédente&nbsp;:</translation> + <source>Previous <i>double</i> value:</source> + <translation type="obsolete">Valeur <i>double</i> précédente :</translation> </message> <message> - <source><i>float</i>&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;<i>float</i>&nbsp;:</translation> + <source><i>float</i> value:</source> + <translation type="obsolete">Valeur <i>float</i> :</translation> </message> <message> - <source>Previous <i>float</i>&nbsp;value:</source> - <translation type="obsolete">Valeur&nbsp;<i>float</i>&nbsp;précédente&nbsp;:</translation> + <source>Previous <i>float</i> value:</source> + <translation type="obsolete">Valeur <i>float</i> précédente :</translation> </message> <message> <source>Copying Failed</source> @@ -28606,8 +28606,8 @@ Valeur précédente au format décimal signé (gros-boutiste)&nbsp;: %4</tra <message> <source>Error in cryptography backend: %1</source> <translatorcomment>pierre: a priori pas de traduction française courante... -francis&nbsp;: je ne vois pas non plus. Ou un truc du genre "Arriére plan cryptographique" Mais c'est bisarre</translatorcomment> - <translation type="obsolete">Erreur dans le backend cryptographique&nbsp;: %1</translation> +francis : je ne vois pas non plus. Ou un truc du genre "Arriére plan cryptographique" Mais c'est bisarre</translatorcomment> + <translation type="obsolete">Erreur dans le backend cryptographique : %1</translation> </message> </context> <context> @@ -28664,7 +28664,7 @@ francis&nbsp;: je ne vois pas non plus. Ou un truc du genre "Arriére p </message> <message> <source>Error generating keys: %1</source> - <translation type="obsolete">Erreur lors de la génération des clés&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de la génération des clés : %1</translation> </message> <message> <source>Error reading temporary files.</source> @@ -28672,7 +28672,7 @@ francis&nbsp;: je ne vois pas non plus. Ou un truc du genre "Arriére p </message> <message> <source>Error generating key: %1</source> - <translation>Erreur lors de la génération de la clé&nbsp;: %1</translation> + <translation>Erreur lors de la génération de la clé : %1</translation> </message> <message> <source>Password for Private Key</source> @@ -28712,7 +28712,7 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> <name>CodePaster::FileShareProtocol</name> <message> <source>Cannot open %1: %2</source> - <translation>Imposible d'ouvrir %1&nbsp;: %2</translation> + <translation>Imposible d'ouvrir %1 : %2</translation> </message> <message> <source>%1 does not appear to be a paster file.</source> @@ -28720,7 +28720,7 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> </message> <message> <source>Error in %1 at %2: %3</source> - <translation>Erreur dans %1 à la ligne %2&nbsp;: %3</translation> + <translation>Erreur dans %1 à la ligne %2 : %3</translation> </message> <message> <source>Please configure a path.</source> @@ -28728,11 +28728,11 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> </message> <message> <source>Unable to open a file for writing in %1: %2</source> - <translation type="obsolete">Impossible d'ouvrir un fichier en écriture dans %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir un fichier en écriture dans %1 : %2</translation> </message> <message> <source>Pasted: %1</source> - <translation>Copié&nbsp;: %1</translation> + <translation>Copié : %1</translation> </message> </context> <context> @@ -28806,7 +28806,7 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> </message> <message> <source>Split if Statement</source> - <translatorcomment>aaaaaaaah&nbsp;! Je n'avais pas tilté.</translatorcomment> + <translatorcomment>aaaaaaaah ! Je n'avais pas tilté.</translatorcomment> <translation>Fractionner la condition if</translation> </message> <message> @@ -29114,7 +29114,7 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> </message> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> <message> <source>Already Exists</source> @@ -29137,7 +29137,7 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> <name>Debugger::Cdb</name> <message> <source>Unable to load the debugger engine library '%1': %2</source> - <translation type="obsolete">Impossible de charger la bibliothèque de débogage "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de charger la bibliothèque de débogage "%1" : %2</translation> </message> <message> <source>Unable to resolve '%1' in the debugger engine library '%2'</source> @@ -29148,15 +29148,15 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> <name>CdbCore::CoreEngine</name> <message> <source>Unable to set the image path to %1: %2</source> - <translation type="obsolete">Impossible de définir le chemin de l'image %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible de définir le chemin de l'image %1 : %2</translation> </message> <message> <source>Unable to create a process '%1': %2</source> - <translation type="obsolete">Impossible de créer un processus "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de créer un processus "%1" : %2</translation> </message> <message> <source>Attaching to a process failed for process id %1: %2</source> - <translation type="obsolete">Impossible d'attacher au processsus identifié par %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'attacher au processsus identifié par %1 : %2</translation> </message> </context> <context> @@ -29187,7 +29187,7 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> <message> <source>Starting executable failed: </source> - <translation type="obsolete">Échec du lancement de l'exécutable&nbsp;: + <translation type="obsolete">Échec du lancement de l'exécutable : </translation> </message> </context> @@ -29195,14 +29195,14 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> <name>GdbChooserWidget</name> <message> <source>Unable to run '%1': %2</source> - <translation type="obsolete">Impossible d'exécuter "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter "%1" : %2</translation> </message> </context> <context> <name>Debugger::Internal::GdbChooserWidget</name> <message> <source>Unable to run '%1': %2</source> - <translation type="obsolete">Impossible d'exécuter "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'exécuter "%1" : %2</translation> </message> <message> <source>Binary</source> @@ -29248,14 +29248,14 @@ avec un mot de passe, que vous pouvez renseigner ci-dessus.</translation> </message> <message> <source>Path:</source> - <translation type="obsolete">Chemin&nbsp;:</translation> + <translation type="obsolete">Chemin :</translation> </message> </context> <context> <name>Debugger::Internal::LocalPlainGdbAdapter</name> <message> <source>Cannot set up communication with child process: %1</source> - <translation type="obsolete">Impossible de mettre en place la communication avec le processus enfant&nbsp;: %1</translation> + <translation type="obsolete">Impossible de mettre en place la communication avec le processus enfant : %1</translation> </message> <message> <source>Warning</source> @@ -29272,7 +29272,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <name>Debugger::Internal::RemoteGdbServerAdapter</name> <message> <source>The upload process failed to start. Shell missing?</source> - <translation type="obsolete">Le processus d'upload n'a pas pu démarrer. Shell manquant&nbsp;?</translation> + <translation type="obsolete">Le processus d'upload n'a pas pu démarrer. Shell manquant ?</translation> </message> <message> <source>The upload process crashed some time after starting successfully.</source> @@ -29305,7 +29305,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <message> <source>Reading debug information failed: </source> - <translation type="obsolete">La lecture des informations de débogage a échoué&nbsp;: </translation> + <translation type="obsolete">La lecture des informations de débogage a échoué : </translation> </message> <message> <source>Interrupting not possible</source> @@ -29314,7 +29314,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <message> <source>Starting remote executable failed: </source> - <translation type="obsolete">Le démarrage de l'exécutable distant a échoué&nbsp;: + <translation type="obsolete">Le démarrage de l'exécutable distant a échoué : </translation> </message> </context> @@ -29326,7 +29326,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Unable to start pdb '%1': %2</source> - <translation>Impossible de démarrer pdb "%1"&nbsp;: %2</translation> + <translation>Impossible de démarrer pdb "%1" : %2</translation> </message> <message> <source>Adapter start failed</source> @@ -29385,15 +29385,15 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <name>Debugger::Internal::SnapshotHandler</name> <message> <source>Function:</source> - <translation type="obsolete">Fonction&nbsp;:</translation> + <translation type="obsolete">Fonction :</translation> </message> <message> <source>File:</source> - <translation type="obsolete">Fichier&nbsp;:</translation> + <translation type="obsolete">Fichier :</translation> </message> <message> <source>Date:</source> - <translation type="obsolete">Date&nbsp;:</translation> + <translation type="obsolete">Date :</translation> </message> <message> <source>...</source> @@ -29496,7 +29496,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Not an editor command: %1</source> - <translation>Pas une commande de l'éditeur&nbsp;: %1</translation> + <translation>Pas une commande de l'éditeur : %1</translation> </message> </context> <context> @@ -29515,7 +29515,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Regular expression:</source> - <translation>Expression régulière&nbsp;:</translation> + <translation>Expression régulière :</translation> </message> <message> <source>Ex Command</source> @@ -29562,26 +29562,26 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Override %1:</source> - <translation>Écraser %1&nbsp;:</translation> + <translation>Écraser %1 :</translation> </message> <message> <source>Make arguments:</source> - <translation>Arguments de Make&nbsp;:</translation> + <translation>Arguments de Make :</translation> </message> <message> <source>Targets:</source> - <translation>Cibles&nbsp;:</translation> + <translation>Cibles :</translation> </message> </context> <context> <name>GenericProjectManager::Internal::Manager</name> <message> <source>Failed opening project '%1': Project already open</source> - <translation type="obsolete">Échec de l'ouverture du projet "%1"&nbsp;: projet déjà ouvert</translation> + <translation type="obsolete">Échec de l'ouverture du projet "%1" : projet déjà ouvert</translation> </message> <message> <source>Failed opening project '%1': Project is not a file</source> - <translation>Échec de l'ouverture du projet "%1"&nbsp;: le projet n'est pas un fichier</translation> + <translation>Échec de l'ouverture du projet "%1" : le projet n'est pas un fichier</translation> </message> </context> <context> @@ -29602,7 +29602,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <name>Git::Internal::GitCommand</name> <message> <source>Error: Git timed out after %1s.</source> - <translation type="obsolete">Erreur&nbsp;:Git est arrivé à échéance après %1s.</translation> + <translation type="obsolete">Erreur :Git est arrivé à échéance après %1s.</translation> </message> </context> <context> @@ -29658,7 +29658,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <name>Help::Internal::HelpViewer</name> <message> <source><title>about:blank</title></source> - <translation><title>À propos&nbsp;: vide</title></translation> + <translation><title>À propos : vide</title></translation> </message> <message> <source><html><head><meta http-equiv="content-type" content="text/html; charset=UTF-8"><title>Error 404...</title></head><body><div align="center"><br/><br/><h1>The page could not be found</h1><br/><h3>'%1'</h3></div></body></html></source> @@ -29686,11 +29686,11 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Error loading: %1</source> - <translation>Erreur lors du chargement&nbsp;: %1</translation> + <translation>Erreur lors du chargement : %1</translation> </message> <message> <source>Unknown or unsupported Content!</source> - <translation>Contenu inconnu ou non supporté&nbsp;!</translation> + <translation>Contenu inconnu ou non supporté !</translation> </message> </context> <context> @@ -29742,7 +29742,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Clone URL:</source> - <translation>URL de clone&nbsp;:</translation> + <translation>URL de clone :</translation> </message> </context> <context> @@ -29756,11 +29756,11 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <name>Mercurial::Internal::MercurialClient</name> <message> <source>Unable to find parent revisions of %1 in %2: %3</source> - <translation>Impossible de trouver la révision parente de %1 dans %2&nbsp;: %3</translation> + <translation>Impossible de trouver la révision parente de %1 dans %2 : %3</translation> </message> <message> <source>Cannot parse output: %1</source> - <translation>Impossible d'analyser la sortie&nbsp;: %1</translation> + <translation>Impossible d'analyser la sortie : %1</translation> </message> <message> <source>Hg Annotate %1</source> @@ -29810,12 +29810,12 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <message> <source>Executing: %1 %2 </source> - <translation type="obsolete">Exécution de&nbsp;: %1 %2 + <translation type="obsolete">Exécution de : %1 %2 </translation> </message> <message> <source>Unable to start mercurial process '%1': %2</source> - <translation type="obsolete">Impossible de démarrer le processus mercurial "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de démarrer le processus mercurial "%1" : %2</translation> </message> <message> <source>Timed out after %1s waiting for mercurial process to finish.</source> @@ -30030,7 +30030,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Do you want to commit the changes?</source> - <translation>Voulez vous envoyer les changements&nbsp;?</translation> + <translation>Voulez vous envoyer les changements ?</translation> </message> <message> <source>Close Commit Editor</source> @@ -30038,7 +30038,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Message check failed. Do you want to proceed?</source> - <translation>Vérification du message échouée. Voulez-vous continuer&nbsp;?</translation> + <translation>Vérification du message échouée. Voulez-vous continuer ?</translation> </message> </context> <context> @@ -30060,7 +30060,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Unable to launch "%1": %2</source> - <translation>Impossible de lancer "%1"&nbsp;: %2</translation> + <translation>Impossible de lancer "%1" : %2</translation> </message> <message> <source>"%1" crashed.</source> @@ -30068,7 +30068,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>"%1" terminated with exit code %2: %3</source> - <translation>"%1" terminé avec le code %2&nbsp;: %3</translation> + <translation>"%1" terminé avec le code %2 : %3</translation> </message> <message> <source>The client does not seem to contain any mapped files.</source> @@ -30174,11 +30174,11 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Object Class-name:</source> - <translation type="obsolete">Nom de la classe d'objet&nbsp;: </translation> + <translation type="obsolete">Nom de la classe d'objet : </translation> </message> <message> <source>URI:</source> - <translation>URI&nbsp;:</translation> + <translation>URI :</translation> </message> <message> <source>The project name and the object class-name cannot be the same.</source> @@ -30290,7 +30290,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Creates a Qt Gui application for BlackBerry.</source> - <translatorcomment>Qt Gui, c'est pas le module (au lieu d'un mot à traduire)&nbsp;?</translatorcomment> + <translatorcomment>Qt Gui, c'est pas le module (au lieu d'un mot à traduire) ?</translatorcomment> <translation>Créer une application graphique avec Qt Gui pour BlackBerry. </translation> </message> <message> @@ -30332,11 +30332,11 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Code:</source> - <translation>Code&nbsp;:</translation> + <translation>Code :</translation> </message> <message> <source>Type:</source> - <translation>Type&nbsp;:</translation> + <translation>Type :</translation> </message> <message> <source>Console application</source> @@ -30364,7 +30364,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Object class-name:</source> - <translation>Nom de classe de l'objet&nbsp;:</translation> + <translation>Nom de classe de l'objet :</translation> </message> <message> <source>Creates a C++ plugin to load extensions dynamically into applications using the QQmlEngine class.&lt;br&gt;&lt;br&gt;Requires &lt;b&gt;Qt 5.0&lt;/b&gt; or newer.</source> @@ -30403,27 +30403,27 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Plugin name:</source> - <translation>Nom du plug-in&nbsp;:</translation> + <translation>Nom du plug-in :</translation> </message> <message> <source>Vendor name:</source> - <translation>Nom du vendeur&nbsp;:</translation> + <translation>Nom du vendeur :</translation> </message> <message> <source>Copyright:</source> - <translation>Copyright&nbsp;:</translation> + <translation>Copyright :</translation> </message> <message> <source>License:</source> - <translation>Licence&nbsp;:</translation> + <translation>Licence :</translation> </message> <message> <source>Description:</source> - <translation>Description&nbsp;:</translation> + <translation>Description :</translation> </message> <message> <source>URL:</source> - <translation>URL&nbsp;: </translation> + <translation>URL : </translation> </message> <message> <source>Creates a C++ plugin to load extensions dynamically into applications using the QDeclarativeEngine class.&lt;br&gt;&lt;br&gt;Requires &lt;b&gt;Qt 4.7.0&lt;/b&gt; or newer.</source> @@ -30443,19 +30443,19 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Url:</source> - <translation type="obsolete">Url&nbsp;:</translation> + <translation type="obsolete">Url :</translation> </message> <message> <source>Qt Creator sources:</source> - <translation>Sources de Qt Creator&nbsp;:</translation> + <translation>Sources de Qt Creator :</translation> </message> <message> <source>Qt Creator build:</source> - <translation>Compilation de Qt Creator&nbsp;:</translation> + <translation>Compilation de Qt Creator :</translation> </message> <message> <source>Deploy into:</source> - <translation>Déploiement sur&nbsp;:</translation> + <translation>Déploiement sur :</translation> </message> <message> <source>Qt Creator build</source> @@ -30479,7 +30479,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Example Object Class-name:</source> - <translation type="obsolete">Nom de classe de l'objet exemple&nbsp;: </translation> + <translation type="obsolete">Nom de classe de l'objet exemple : </translation> </message> </context> <context> @@ -30493,7 +30493,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <name>ProjectExplorer::Internal::CustomWizardPage</name> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> </context> <context> @@ -30631,7 +30631,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait %1 </source> - <translation type="obsolete">Impossible de démarrer le gestionnaire de fichiers&nbsp;: + <translation type="obsolete">Impossible de démarrer le gestionnaire de fichiers : %1 @@ -30641,7 +30641,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <source>'%1' returned the following error: %2</source> - <translation type="obsolete">'%1' retourne l'erreur suivante&nbsp;: + <translation type="obsolete">'%1' retourne l'erreur suivante : %2</translation> </message> @@ -30659,7 +30659,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Could not find explorer.exe in path to launch Windows Explorer.</source> - <translatorcomment>chemin&nbsp;?</translatorcomment> + <translatorcomment>chemin ?</translatorcomment> <translation type="obsolete">Impossible de trouver explorer.exe dans le path pour lancer l'explorateur Windows.</translation> </message> </context> @@ -30675,11 +30675,11 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Build:</source> - <translation type="obsolete">Compilation&nbsp;:</translation> + <translation type="obsolete">Compilation :</translation> </message> <message> <source>Run:</source> - <translation type="obsolete">Exécution&nbsp;:</translation> + <translation type="obsolete">Exécution :</translation> </message> </context> <context> @@ -30714,35 +30714,35 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source><b>Project:</b> %1</source> - <translation><b>Projet&nbsp;:</b> %1</translation> + <translation><b>Projet :</b> %1</translation> </message> <message> <source><b>Path:</b> %1</source> - <translation><b>Chemin&nbsp;:</b> %1</translation> + <translation><b>Chemin :</b> %1</translation> </message> <message> <source><b>Kit:</b> %1</source> - <translation><b>Kit&nbsp;:</b> %1</translation> + <translation><b>Kit :</b> %1</translation> </message> <message> <source>Kit: <b>%1</b><br/></source> - <translation>Kit&nbsp;: <b>%1</b><br/></translation> + <translation>Kit : <b>%1</b><br/></translation> </message> <message> <source><b>Target:</b> %1</source> - <translation type="obsolete"><b>Cible&nbsp;:</b> %1</translation> + <translation type="obsolete"><b>Cible :</b> %1</translation> </message> <message> <source><b>Build:</b> %1</source> - <translation><b>Compilation&nbsp;:</b> %1</translation> + <translation><b>Compilation :</b> %1</translation> </message> <message> <source><b>Deploy:</b> %1</source> - <translation><b>Déploiement&nbsp;:</b> %1</translation> + <translation><b>Déploiement :</b> %1</translation> </message> <message> <source><b>Run:</b> %1</source> - <translation><b>Exécution&nbsp;:</b> %1</translation> + <translation><b>Exécution :</b> %1</translation> </message> <message> <source>%1</source> @@ -30754,23 +30754,23 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Project: <b>%1</b><br/></source> - <translation>Projet&nbsp;: <b>%1</b><br/></translation> + <translation>Projet : <b>%1</b><br/></translation> </message> <message> <source>Target: <b>%1</b><br/></source> - <translation type="obsolete">Cible&nbsp;: <b>%1</b><br/></translation> + <translation type="obsolete">Cible : <b>%1</b><br/></translation> </message> <message> <source>Build: <b>%1</b><br/></source> - <translation>Compilation&nbsp;: <b>%1</b><br/></translation> + <translation>Compilation : <b>%1</b><br/></translation> </message> <message> <source>Deploy: <b>%1</b><br/></source> - <translation>Déploiement&nbsp;: <b>%1</b><br/></translation> + <translation>Déploiement : <b>%1</b><br/></translation> </message> <message> <source>Run: <b>%1</b><br/></source> - <translation>Exécution&nbsp;: <b>%1</b><br/></translation> + <translation>Exécution : <b>%1</b><br/></translation> </message> <message> <source><style type=text/css>a:link {color: rgb(128, 128, 255, 240);}</style>The project <b>%1</b> is not yet configured<br/><br/>You can configure it in the <a href="projectmode">Projects mode</a><br/></source> @@ -30782,23 +30782,23 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Build:</source> - <translation type="obsolete">Compilation&nbsp;:</translation> + <translation type="obsolete">Compilation :</translation> </message> <message> <source>Run:</source> - <translation type="obsolete">Exécution&nbsp;:</translation> + <translation type="obsolete">Exécution :</translation> </message> <message> <source><html><nobr><b>Project:</b> %1<br/>%2%3<b>Run:</b> %4%5</html></source> - <translation type="obsolete"><html><nobr><b>Projet&nbsp;:</b> %1<br/>%2%3<b>Exécution&nbsp;:</b> %4%5</html></translation> + <translation type="obsolete"><html><nobr><b>Projet :</b> %1<br/>%2%3<b>Exécution :</b> %4%5</html></translation> </message> <message> <source><b>Target:</b> %1<br/></source> - <translation type="obsolete"><b>Cible&nbsp;:</b> %1<br/></translation> + <translation type="obsolete"><b>Cible :</b> %1<br/></translation> </message> <message> <source><b>Build:</b> %2<br/></source> - <translation type="obsolete"><b>Compilation&nbsp;:</b> %2<br/></translation> + <translation type="obsolete"><b>Compilation :</b> %2<br/></translation> </message> <message> <source><br/>%1</source> @@ -30880,7 +30880,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <name>ProjectExplorer::Internal::SessionNameInputDialog</name> <message> <source>Enter the name of the session:</source> - <translation>Entrez le nom de la session&nbsp;:</translation> + <translation>Entrez le nom de la session :</translation> </message> <message> <source>Switch to</source> @@ -30923,12 +30923,12 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <message> <source>Build configurations: </source> - <translation>Configurations de compilation&nbsp;:</translation> + <translation>Configurations de compilation :</translation> </message> <message> <source>Deploy configurations: </source> - <translation>Configurations de déploiement&nbsp;:</translation> + <translation>Configurations de déploiement :</translation> </message> <message> <source>Run configurations </source> @@ -30936,11 +30936,11 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Build configurations:</source> - <translation>Configurations de compilation&nbsp;:</translation> + <translation>Configurations de compilation :</translation> </message> <message> <source>Deploy configurations:</source> - <translation>Configurations de déploiement&nbsp;:</translation> + <translation>Configurations de déploiement :</translation> </message> <message> <source>Run configurations</source> @@ -30964,7 +30964,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Remove Kit %1?</source> - <translation>Supprimer le kit %1&nbsp;?</translation> + <translation>Supprimer le kit %1 ?</translation> </message> <message> <source>The kit <b>%1</b> is currently being built.</source> @@ -30972,7 +30972,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Do you want to cancel the build process and remove the kit anyway?</source> - <translation>Voulez-vous annuler le processus de compilation et retirer le kit&nbsp;?</translation> + <translation>Voulez-vous annuler le processus de compilation et retirer le kit ?</translation> </message> <message> <source>Change Kit</source> @@ -30988,16 +30988,16 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Do you want to cancel the build process and remove the Kit anyway?</source> - <translation type="obsolete">Voulez-vous annuler le processus de compilation et supprimer le kit&nbsp;?</translation> + <translation type="obsolete">Voulez-vous annuler le processus de compilation et supprimer le kit ?</translation> </message> <message> <source>Do you really want to remove the "%1" kit?</source> - <translation>Voulez-vous vraiment supprimer le kit "%1"&nbsp;?</translation> + <translation>Voulez-vous vraiment supprimer le kit "%1" ?</translation> </message> <message> <source>Remove Target %1?</source> - <translation type="obsolete">Supprimer la cible %1&nbsp;?</translation> + <translation type="obsolete">Supprimer la cible %1 ?</translation> </message> <message> <source>The target <b>%1</b> is currently being built.</source> @@ -31005,7 +31005,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Do you want to cancel the build process and remove the Target anyway?</source> - <translation type="obsolete">Voulez-vous annuler le processus de compilation et supprimer la cible&nbsp;?</translation> + <translation type="obsolete">Voulez-vous annuler le processus de compilation et supprimer la cible ?</translation> </message> <message> <source>Qt Creator</source> @@ -31015,7 +31015,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <source>Do you really want to remove the "%1" target?</source> <translation type="obsolete">Voulez-vous vraiment supprimer la cible -"%1"&nbsp;?</translation> +"%1" ?</translation> </message> </context> <context> @@ -31088,15 +31088,15 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source><b>Device:</b> Not connected</source> - <translation type="obsolete"><b>Périphérique&nbsp;:</b>Non connecté</translation> + <translation type="obsolete"><b>Périphérique :</b>Non connecté</translation> </message> <message> <source><b>Device:</b> %1</source> - <translation type="obsolete"><b>Périphérique&nbsp;:</b> %1</translation> + <translation type="obsolete"><b>Périphérique :</b> %1</translation> </message> <message> <source><b>Device:</b> %1, %2</source> - <translation type="obsolete"><b>Périphérique&nbsp;:</b> %1, %2</translation> + <translation type="obsolete"><b>Périphérique :</b> %1, %2</translation> </message> </context> <context> @@ -31185,7 +31185,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Cannot save to file "%1": permission denied.</source> - <translation type="obsolete">Impossible d'enregistrer le fichier "%1"&nbsp;: permission refusée.</translation> + <translation type="obsolete">Impossible d'enregistrer le fichier "%1" : permission refusée.</translation> </message> <message> <source>Parent folder "%1" for file "%2" does not exist.</source> @@ -31197,7 +31197,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Cannot write file: "%1".</source> - <translation type="obsolete">Impossible d'enregistrer le fichier&nbsp;: "%1".</translation> + <translation type="obsolete">Impossible d'enregistrer le fichier : "%1".</translation> </message> </context> <context> @@ -31254,7 +31254,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <name>QmlDesigner::NavigatorTreeModel</name> <message> <source>Unknown item: %1</source> - <translation>Item inconnu&nbsp;: %1</translation> + <translation>Item inconnu : %1</translation> </message> <message> <source>Invalid Id</source> @@ -31282,7 +31282,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Reparenting the component %1 here will cause the component %2 to be deleted. Do you want to proceed?</source> - <translation>Redéfinir ici le parent du composant %1 entrainera la supression du composant %2. Voulez-vous continuer&nbsp;?</translation> + <translation>Redéfinir ici le parent du composant %1 entrainera la supression du composant %2. Voulez-vous continuer ?</translation> </message> </context> <context> @@ -31332,7 +31332,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Failed to create instance of file '%1': %2</source> - <translation>Échec lors de la création de l'instance du fichier "%1"&nbsp;: %2</translation> + <translation>Échec lors de la création de l'instance du fichier "%1" : %2</translation> </message> <message> <source>Failed to create instance of file '%1'.</source> @@ -31529,11 +31529,11 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <name>InvalidIdException</name> <message> <source>Ids have to be unique: </source> - <translation type="obsolete">Les identifiants doivent être uniques&nbsp;: </translation> + <translation type="obsolete">Les identifiants doivent être uniques : </translation> </message> <message> <source>Invalid Id: </source> - <translation type="obsolete">Identifiant invalide&nbsp;: </translation> + <translation type="obsolete">Identifiant invalide : </translation> </message> <message> <source> @@ -31553,7 +31553,7 @@ Ids must begin with a lowercase letter.</source> <message> <source>Invalid Id: %1 %2</source> - <translation>Identifiant invalide&nbsp;: %1 + <translation>Identifiant invalide : %1 %2</translation> </message> </context> @@ -31763,7 +31763,7 @@ Ids must begin with a lowercase letter.</source> <name>Qml::Internal::CanvasFrameRate</name> <message> <source>Resolution:</source> - <translation type="obsolete">Résolution&nbsp;:</translation> + <translation type="obsolete">Résolution :</translation> </message> <message> <source>Clear</source> @@ -31884,7 +31884,7 @@ Ids must begin with a lowercase letter.</source> </message> <message> <source>Expression:</source> - <translation type="obsolete">Expression&nbsp;:</translation> + <translation type="obsolete">Expression :</translation> </message> </context> <context> @@ -31944,7 +31944,7 @@ Ids must begin with a lowercase letter.</source> </message> <message> <source>[Inspector] set to connect to debug server %1:%2</source> - <translation type="obsolete">[Inspecteur] configuré pour se connecter au serveur de débogage %1&nbsp;: %2</translation> + <translation type="obsolete">[Inspecteur] configuré pour se connecter au serveur de débogage %1 : %2</translation> </message> <message> <source>[Inspector] disconnected. @@ -31975,11 +31975,11 @@ Ids must begin with a lowercase letter.</source> <message> <source>[Inspector] error: (%1) %2</source> <comment>%1=error code, %2=error message</comment> - <translation type="obsolete">[Inspecteur] erreur&nbsp;: (%1) %2</translation> + <translation type="obsolete">[Inspecteur] erreur : (%1) %2</translation> </message> <message> <source>QML engine:</source> - <translation type="obsolete">Moteur QML&nbsp;:</translation> + <translation type="obsolete">Moteur QML :</translation> </message> <message> <source>Object Tree</source> @@ -32021,7 +32021,7 @@ Merci de vérifier vos paramètres de projet.</translation> </message> <message> <source>Debugging failed: could not start C++ debugger.</source> - <translation type="obsolete">Échec du débogage&nbsp;: impossible de démarrer le débogueur C++.</translation> + <translation type="obsolete">Échec du débogage : impossible de démarrer le débogueur C++.</translation> </message> </context> <context> @@ -32043,7 +32043,7 @@ Merci de vérifier vos paramètres de projet.</translation> </message> <message> <source>New id:</source> - <translation type="obsolete">Nouvel identifiant&nbsp;:</translation> + <translation type="obsolete">Nouvel identifiant :</translation> </message> <message> <source>Unused variable</source> @@ -32066,7 +32066,7 @@ Merci de vérifier vos paramètres de projet.</translation> <name>QmlJSEditor::Internal::QmlJSEditorFactory</name> <message> <source>Do you want to enable the experimental Qt Quick Designer?</source> - <translation type="obsolete">Voulez-vous activer le designer expérimental pour Qt Quick&nbsp;?</translation> + <translation type="obsolete">Voulez-vous activer le designer expérimental pour Qt Quick ?</translation> </message> <message> <source>Enable Qt Quick Designer</source> @@ -32082,11 +32082,11 @@ Merci de vérifier vos paramètres de projet.</translation> </message> <message> <source>Enable experimental Qt Quick Designer?</source> - <translation type="obsolete">Activer le designer expérimental pour Qt Quick&nbsp;?</translation> + <translation type="obsolete">Activer le designer expérimental pour Qt Quick ?</translation> </message> <message> <source>Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'.</source> - <translation type="obsolete">Voulez-vous activer le designer expérimental pour Qt Quick&nbsp;? Après l'activation, vous pourrez accéder aux outils de conception visuelle en basculant dans le mode Design. Cela peut affecter la stabilité globale de Qt Creator. Pour désactiver le designer de Qt Creator, aller dans le menu "%1' et désactiver 'QmlDesigner".</translation> + <translation type="obsolete">Voulez-vous activer le designer expérimental pour Qt Quick ? Après l'activation, vous pourrez accéder aux outils de conception visuelle en basculant dans le mode Design. Cela peut affecter la stabilité globale de Qt Creator. Pour désactiver le designer de Qt Creator, aller dans le menu "%1' et désactiver 'QmlDesigner".</translation> </message> <message> <source>Cancel</source> @@ -32228,7 +32228,7 @@ Errors: </source> <translatorcomment>pas sur de la traduction de dump...</translatorcomment> <translation type="obsolete">Échec du collecteur de type pour le plug-in QML dans %0. -Erreurs&nbsp;: +Erreurs : %1 </translation> </message> @@ -32246,29 +32246,29 @@ Erreurs&nbsp;: <message> <source>Could not preview Qt Quick (QML) file. Reason: %1</source> - <translation>Impossible de prévisualiser le fichier Qt Quick (QML). Raison&nbsp;: + <translation>Impossible de prévisualiser le fichier Qt Quick (QML). Raison : %1</translation> </message> <message> <source>Could not preview Qt Quick (QML) file. Reason: %1</source> - <translation>Impossible de prévisualiser le fichier Qt Quick (QML). Raison&nbsp;: \n%1</translation> + <translation>Impossible de prévisualiser le fichier Qt Quick (QML). Raison : \n%1</translation> </message> </context> <context> <name>QmlProjectManager::QmlProject</name> <message> <source>Error while loading project file!</source> - <translation type="obsolete">Erreur lors du chargement du fichier de projet&nbsp;!</translation> + <translation type="obsolete">Erreur lors du chargement du fichier de projet !</translation> </message> <message> <source>Error while loading project file %1.</source> - <translatorcomment>du projet&nbsp;? </translatorcomment> + <translatorcomment>du projet ? </translatorcomment> <translation>Erreur lors du chargement du fichier de projet %1. </translation> </message> <message> <source>QML project: %1</source> - <translation>Projet QML&nbsp;: %1</translation> + <translation>Projet QML : %1</translation> </message> <message> <source>Warning while loading project file %1.</source> @@ -32303,12 +32303,12 @@ Erreurs&nbsp;: </message> <message> <source>New Qt Quick UI Project</source> - <translatorcomment>myzu&nbsp;: garder UI ou traduire&nbsp;? John&nbsp;: Je pense qu'on peut traduire&nbsp;!</translatorcomment> + <translatorcomment>myzu : garder UI ou traduire ? John : Je pense qu'on peut traduire !</translatorcomment> <translation type="obsolete">Nouveau projet d'IHM Qt Quick</translation> </message> <message> <source>This wizard generates a Qt Quick UI project.</source> - <translatorcomment>myzu&nbsp;: traduire UI&nbsp;?</translatorcomment> + <translatorcomment>myzu : traduire UI ?</translatorcomment> <translation type="obsolete">Cet assistant génère un projet UI Qt Quick.</translation> </message> </context> @@ -32418,11 +32418,11 @@ Nécessite <b>Qt 4.8</b> ou plus récent.</translation> </message> <message> <source>Project name:</source> - <translation type="obsolete">Nom du projet&nbsp;:</translation> + <translation type="obsolete">Nom du projet :</translation> </message> <message> <source>Location:</source> - <translation type="obsolete">Emplacement&nbsp;:</translation> + <translation type="obsolete">Emplacement :</translation> </message> <message> <source>Location</source> @@ -32462,15 +32462,15 @@ Nécessite <b>Qt 4.8</b> ou plus récent.</translation> <name>QmlProjectManager::Internal::Manager</name> <message> <source>Failed opening project '%1': Project already open</source> - <translation type="obsolete">Échec de l'ouverture du projet "%1"&nbsp;: projet déjà ouvert</translation> + <translation type="obsolete">Échec de l'ouverture du projet "%1" : projet déjà ouvert</translation> </message> <message> <source>Failed opening project '%1': Project file is not a file</source> - <translation type="obsolete">Échec de l'ouverture du projet '%1'&nbsp;: le fichier de projet n'est pas un fichier</translation> + <translation type="obsolete">Échec de l'ouverture du projet '%1' : le fichier de projet n'est pas un fichier</translation> </message> <message> <source>Failed opening project '%1': Project is not a file</source> - <translation>Échec de l'ouverture du projet "%1"&nbsp;: le projet n'est pas un fichier</translation> + <translation>Échec de l'ouverture du projet "%1" : le projet n'est pas un fichier</translation> </message> </context> <context> @@ -32499,19 +32499,19 @@ Nécessite <b>Qt 4.8</b> ou plus récent.</translation> </message> <message> <source>Qt version:</source> - <translation type="obsolete">Version de Qt&nbsp;:</translation> + <translation type="obsolete">Version de Qt :</translation> </message> <message> <source>Arguments:</source> - <translation type="obsolete">Arguments&nbsp;:</translation> + <translation type="obsolete">Arguments :</translation> </message> <message> <source>Debugger:</source> - <translation type="obsolete">Débogueur&nbsp;:</translation> + <translation type="obsolete">Débogueur :</translation> </message> <message> <source>Main QML file:</source> - <translation type="obsolete">Fichier QML principal&nbsp;: </translation> + <translation type="obsolete">Fichier QML principal : </translation> </message> <message> <source>Invalid Qt version</source> @@ -32523,19 +32523,19 @@ Nécessite <b>Qt 4.8</b> ou plus récent.</translation> </message> <message> <source>QML Viewer arguments:</source> - <translation type="obsolete">Arguments du visualisateur QML&nbsp;:</translation> + <translation type="obsolete">Arguments du visualisateur QML :</translation> </message> <message> <source>Main QML File:</source> - <translation type="obsolete">Fichier QML principal&nbsp;:</translation> + <translation type="obsolete">Fichier QML principal :</translation> </message> <message> <source>Debugging Address:</source> - <translation type="obsolete">Addresse du débogeur&nbsp;:</translation> + <translation type="obsolete">Addresse du débogeur :</translation> </message> <message> <source>Debugging Port:</source> - <translation type="obsolete">Port du débogueur&nbsp;:</translation> + <translation type="obsolete">Port du débogueur :</translation> </message> </context> <context> @@ -32619,7 +32619,7 @@ Nécessite <b>Qt 4.8</b> ou plus récent.</translation> <message> <source>Device configuration test failed: %1</source> - <translation type="obsolete">Échec du test de la configuration du périphérique&nbsp;:\n%1</translation> + <translation type="obsolete">Échec du test de la configuration du périphérique :\n%1</translation> </message> <message> <source>Testing configuration. This may take a while.</source> @@ -32627,20 +32627,20 @@ Nécessite <b>Qt 4.8</b> ou plus récent.</translation> </message> <message> <source>Could not connect to host: %1</source> - <translation type="obsolete">Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source> Did you start Qemu?</source> - <translation type="obsolete">Voulez-vous démarrer Qemu&nbsp;?</translation> + <translation type="obsolete">Voulez-vous démarrer Qemu ?</translation> </message> <message> <source>Remote process failed: %1</source> - <translation type="obsolete">Échec du processus distant&nbsp;: %1</translation> + <translation type="obsolete">Échec du processus distant : %1</translation> </message> <message> <source>Qt version mismatch! Expected Qt on device: 4.6.2 or later.</source> - <translation type="obsolete">Conflit de version de Qt&nbsp;! Version de Qt attendue sur le périphérique&nbsp;: 4.6.2 ou supérieure.</translation> + <translation type="obsolete">Conflit de version de Qt ! Version de Qt attendue sur le périphérique : 4.6.2 ou supérieure.</translation> </message> <message> <source>Mad Developer is not installed.<br>You will not be able to deploy to this device.</source> @@ -32656,7 +32656,7 @@ Did you start Qemu?</source> </message> <message> <source>Error retrieving list of used ports: %1</source> - <translation type="obsolete">Erreur lors de la récupération des ports utilisés&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de la récupération des ports utilisés : %1</translation> </message> <message> <source>All specified ports are available.</source> @@ -32664,7 +32664,7 @@ Did you start Qemu?</source> </message> <message> <source>The following supposedly free ports are being used on the device:</source> - <translation type="obsolete">Ces ports supposamment libres sont actuellement utilisés sur le périphérique&nbsp;: </translation> + <translation type="obsolete">Ces ports supposamment libres sont actuellement utilisés sur le périphérique : </translation> </message> <message> <source>Device configuration okay.</source> @@ -32677,17 +32677,17 @@ Did you start Qemu?</source> <message> <source>Device configuration test failed: Unexpected output: %1</source> - <translation type="obsolete">Échec du test de la configuration du périphérique&nbsp;: Sortie inattendue&nbsp;:\n%1</translation> + <translation type="obsolete">Échec du test de la configuration du périphérique : Sortie inattendue :\n%1</translation> </message> <message> <source>Hardware architecture: %1 </source> - <translation type="obsolete">Architecture matériel&nbsp;: %1\n</translation> + <translation type="obsolete">Architecture matériel : %1\n</translation> </message> <message> <source>Kernel version: %1 </source> - <translation type="obsolete">Version du noyau&nbsp;: %1\n</translation> + <translation type="obsolete">Version du noyau : %1\n</translation> </message> <message> <source>Device configuration successful. @@ -32700,7 +32700,7 @@ Did you start Qemu?</source> </message> <message> <source>List of installed Qt packages:</source> - <translation type="obsolete">Liste des paquets Qt installés&nbsp;:</translation> + <translation type="obsolete">Liste des paquets Qt installés :</translation> </message> </context> <context> @@ -32726,23 +32726,23 @@ Did you start Qemu?</source> </message> <message> <source>Packaging Error: Cannot open file '%1'.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas 'ouvrir le fichier "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas 'ouvrir le fichier "%1".</translation> </message> <message> <source>Packaging Error: Cannot write file '%1'.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas écrire le fichier "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas écrire le fichier "%1".</translation> </message> <message> <source>Packaging Error: Could not create directory '%1'.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas créer le répertoire "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas créer le répertoire "%1".</translation> </message> <message> <source>Packaging Error: Could not replace file '%1'.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas remplacer le fichier "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas remplacer le fichier "%1".</translation> </message> <message> <source>Packaging Error: Could not copy '%1' to '%2'.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas copier '%1' vers "%2".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas copier '%1' vers "%2".</translation> </message> <message> <source>Package created.</source> @@ -32750,7 +32750,7 @@ Did you start Qemu?</source> </message> <message> <source>Package Creation: Running command '%1'.</source> - <translation type="obsolete">Création du paquet&nbsp;: exécuter la commande "%1".</translation> + <translation type="obsolete">Création du paquet : exécuter la commande "%1".</translation> </message> <message> <source>Packaging failed.</source> @@ -32782,11 +32782,11 @@ Did you start Qemu?</source> </message> <message> <source>Packaging error: Could not start command '%1'. Reason: %2</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas exécuter la commande "%1". Raison&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas exécuter la commande "%1". Raison : %2</translation> </message> <message> <source>Exit code: %1</source> - <translation type="obsolete">Code de sortie&nbsp;: %1</translation> + <translation type="obsolete">Code de sortie : %1</translation> </message> <message> <source>Could not move package file from %1 to %2.</source> @@ -32794,7 +32794,7 @@ Did you start Qemu?</source> </message> <message> <source>Packaging failed: Foreign debian directory detected.</source> - <translation type="obsolete">Échec du packaging&nbsp;: binaire Debian distant détecté. </translation> + <translation type="obsolete">Échec du packaging : binaire Debian distant détecté. </translation> </message> <message> <source>You are not using a shadow build and there is a debian directory in your project root ('%1'). Qt Creator will not overwrite that directory. Please remove it or use the shadow build feature.</source> @@ -32802,11 +32802,11 @@ Did you start Qemu?</source> </message> <message> <source>Could not remove directory '%1': %2</source> - <translation type="obsolete">Impossible de supprimer le dossier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de supprimer le dossier "%1" : %2</translation> </message> <message> <source>Error: Could not create file '%1'.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de créer le fichier "%1". </translation> + <translation type="obsolete">Erreur : impossible de créer le fichier "%1". </translation> </message> <message> <source>Your project name contains characters not allowed in Debian packages. @@ -32818,19 +32818,19 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Packaging Error: Command '%1' timed out.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: délai d'attente dépassé pour la commande "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : délai d'attente dépassé pour la commande "%1".</translation> </message> <message> <source>Packaging Error: Command '%1' failed.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: échec de la commande "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : échec de la commande "%1".</translation> </message> <message> <source> Reason: %1</source> - <translation type="obsolete">Raison&nbsp;: %1</translation> + <translation type="obsolete">Raison : %1</translation> </message> <message> <source>Output was: </source> - <translation type="obsolete">La sortie était&nbsp;: </translation> + <translation type="obsolete">La sortie était : </translation> </message> </context> <context> @@ -32877,7 +32877,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source><b>Create Package:</b> </source> - <translation type="obsolete"><b>Créer le paquet&nbsp;:</b> </translation> + <translation type="obsolete"><b>Créer le paquet :</b> </translation> </message> <message> <source>(Packaging disabled)</source> @@ -32924,7 +32924,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <name>QmakeProjectManager::Internal::MaemoRunConfigurationWidget</name> <message> <source>Run configuration name:</source> - <translation type="obsolete">Exécuter la configuration nommée&nbsp;:</translation> + <translation type="obsolete">Exécuter la configuration nommée :</translation> </message> <message> <source>Fetch Device Environment</source> @@ -32940,15 +32940,15 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Device configuration:</source> - <translation type="obsolete">Configuration du périphérique&nbsp;:</translation> + <translation type="obsolete">Configuration du périphérique :</translation> </message> <message> <source>Executable on host:</source> - <translation type="obsolete">Exécutable sur l'hôte&nbsp;:</translation> + <translation type="obsolete">Exécutable sur l'hôte :</translation> </message> <message> <source>Executable on device:</source> - <translation type="obsolete">Exécutable sur le périphérique&nbsp;: </translation> + <translation type="obsolete">Exécutable sur le périphérique : </translation> </message> <message> <source>C++ only</source> @@ -32964,7 +32964,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Debugging type:</source> - <translation type="obsolete">Type de débogage&nbsp;:</translation> + <translation type="obsolete">Type de débogage :</translation> </message> <message> <source>Use remote GDB</source> @@ -32976,11 +32976,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source><b>Debugging details:</b> Use GDB</source> - <translation type="obsolete"><b>Détails de débogage</b>&nbsp;: utiliser GDB</translation> + <translation type="obsolete"><b>Détails de débogage</b> : utiliser GDB</translation> </message> <message> <source><b>Debugging details:</b> Use GDB server</source> - <translation type="obsolete"><b>Détails de débogage</b>&nbsp;: utiliser le serveur GDB</translation> + <translation type="obsolete"><b>Détails de débogage</b> : utiliser le serveur GDB</translation> </message> <message> <source>Use remote gdb</source> @@ -32992,7 +32992,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Base environment for this run configuration:</source> - <translation type="obsolete">Environnement de base pour cette configuration d'exécution&nbsp;: </translation> + <translation type="obsolete">Environnement de base pour cette configuration d'exécution : </translation> </message> <message> <source>Clean Environment</source> @@ -33008,11 +33008,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source><b>Debugging details:</b> Use gdb</source> - <translation type="obsolete"><b>Détails de débogage&nbsp;:</b> utiliser gdb</translation> + <translation type="obsolete"><b>Détails de débogage :</b> utiliser gdb</translation> </message> <message> <source><b>Debugging details:</b> Use gdbserver</source> - <translation type="obsolete"><b>Détails de débogage&nbsp;:</b> utiliser gdbserver</translation> + <translation type="obsolete"><b>Détails de débogage :</b> utiliser gdbserver</translation> </message> <message> <source>Cancel Fetch Operation</source> @@ -33024,7 +33024,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Fetching environment failed: %1</source> - <translation type="obsolete">Échec lors de la récupération de l'environnement&nbsp;: %1</translation> + <translation type="obsolete">Échec lors de la récupération de l'environnement : %1</translation> </message> <message> <source>No local directories to be mounted on the device.</source> @@ -33045,24 +33045,24 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <message numerus="yes"> <source>WARNING: You want to mount %1 directories, but your device has only %n free ports.<br>You will not be able to run this configuration.</source> <translation type="obsolete"> - <numerusform>AVERTISSEMENT&nbsp;: vous voulez monter %1 répertoires mais votre périphérique a uniquement %n port de libre. <br>Vous n'êtes pas en mesure d'exécuter cette configuration.</numerusform> - <numerusform>AVERTISSEMENT&nbsp;: vous voulez monter %1 répertoires mais votre périphérique a uniquement %n ports de libre. <br>Vous n'êtes pas en mesure d'exécuter cette configuration.</numerusform> + <numerusform>AVERTISSEMENT : vous voulez monter %1 répertoires mais votre périphérique a uniquement %n port de libre. <br>Vous n'êtes pas en mesure d'exécuter cette configuration.</numerusform> + <numerusform>AVERTISSEMENT : vous voulez monter %1 répertoires mais votre périphérique a uniquement %n ports de libre. <br>Vous n'êtes pas en mesure d'exécuter cette configuration.</numerusform> </translation> </message> <message numerus="yes"> <source>WARNING: You want to mount %1 directories, but only %n ports on the device will be available in debug mode. <br>You will not be able to debug your application with this configuration.</source> <translation type="obsolete"> - <numerusform>AVERTISSEMENT&nbsp;: vous voulez monter %1 répertoires mais uniquement %n port sera disponible en mode debug. <br>Vous n'êtes pas en mesure de déboguervotre application avec cette configuration.</numerusform> - <numerusform>AVERTISSEMENT&nbsp;: vous voulez monter %1 répertoires mais uniquement %n ports seront disponibles en mode debug. <br>Vous n'êtes pas en mesure de déboguervotre application avec cette configuration.</numerusform> + <numerusform>AVERTISSEMENT : vous voulez monter %1 répertoires mais uniquement %n port sera disponible en mode debug. <br>Vous n'êtes pas en mesure de déboguervotre application avec cette configuration.</numerusform> + <numerusform>AVERTISSEMENT : vous voulez monter %1 répertoires mais uniquement %n ports seront disponibles en mode debug. <br>Vous n'êtes pas en mesure de déboguervotre application avec cette configuration.</numerusform> </translation> </message> <message> <source>Executable:</source> - <translation type="obsolete">Exécutable&nbsp;:</translation> + <translation type="obsolete">Exécutable :</translation> </message> <message> <source>Arguments:</source> - <translation type="obsolete">Arguments&nbsp;:</translation> + <translation type="obsolete">Arguments :</translation> </message> </context> <context> @@ -33081,7 +33081,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Error running initial cleanup: %1.</source> - <translation type="obsolete">Erreur lors du nettoyage initial&nbsp;: %1.</translation> + <translation type="obsolete">Erreur lors du nettoyage initial : %1.</translation> </message> <message> <source>Initial cleanup done.</source> @@ -33093,7 +33093,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Files to deploy: %1.</source> - <translation type="obsolete">Fichiers à déployer&nbsp;: %1.</translation> + <translation type="obsolete">Fichiers à déployer : %1.</translation> </message> <message> <source>Starting remote application.</source> @@ -33105,7 +33105,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Deployment failed: %1</source> - <translation type="obsolete">Échec du déploiement&nbsp;: %1</translation> + <translation type="obsolete">Échec du déploiement : %1</translation> </message> <message> <source>Deployment finished.</source> @@ -33117,7 +33117,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Error running remote process: %1</source> - <translation type="obsolete">Erreur lors de l'exécution du processus à distance&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'exécution du processus à distance : %1</translation> </message> <message> <source>Finished running remote process.</source> @@ -33174,7 +33174,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Could not connect to host: %1</source> - <translation type="obsolete">Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source>You will need at least one port.</source> @@ -33186,7 +33186,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Key deployment failed: %1</source> - <translation type="obsolete">Échec lors du déploiement de la clé&nbsp;: "%1"</translation> + <translation type="obsolete">Échec lors du déploiement de la clé : "%1"</translation> </message> <message> <source>Deployment Succeeded</source> @@ -33198,7 +33198,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Key deployment failed: %1.</source> - <translation type="obsolete">Échec lors du déploiement de la clé&nbsp;: %1.</translation> + <translation type="obsolete">Échec lors du déploiement de la clé : %1.</translation> </message> <message> <source>Deploy Public Key ...</source> @@ -33222,7 +33222,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <message> <source>Could not write file '%1': %2</source> - <translation type="obsolete">Impossible d'enregistrer le fichier&nbsp;: '%1'&nbsp;: + <translation type="obsolete">Impossible d'enregistrer le fichier : '%1' : %2</translation> </message> </context> @@ -33238,11 +33238,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Qemu finished with error: Exit code was %1.</source> - <translation type="obsolete">Qemu s'est terminé avec une erreur&nbsp;: le code d'erreur était %1.</translation> + <translation type="obsolete">Qemu s'est terminé avec une erreur : le code d'erreur était %1.</translation> </message> <message> <source>Qemu failed to start: %1</source> - <translation type="obsolete">Qemu n'a pas pu démarrer&nbsp;: %1</translation> + <translation type="obsolete">Qemu n'a pas pu démarrer : %1</translation> </message> <message> <source>Qemu crashed</source> @@ -33315,7 +33315,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>The package created will not install on a device as some of the defined capabilities are not supported by the certificate: %1</source> - <translation type="obsolete">Le paquet créé ne sera pas installé sur un periphérique puisque certaines capacités ne sont pas supportées par le certificat&nbsp;: %1</translation> + <translation type="obsolete">Le paquet créé ne sera pas installé sur un periphérique puisque certaines capacités ne sont pas supportées par le certificat : %1</translation> </message> <message> <source>The process "%1" exited normally.</source> @@ -33340,7 +33340,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <message> <source>Starting: "%1" %2 in %3 </source> - <translation type="obsolete">Commence&nbsp;: "%1" %2 dans %3 + <translation type="obsolete">Commence : "%1" %2 dans %3 </translation> </message> </context> @@ -33367,7 +33367,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Do you want to reset all passphrases saved for keys used?</source> - <translation type="obsolete">Souhaitez-vous réinitialiser toutes les mots de passes pour les clés utilisées&nbsp;?</translation> + <translation type="obsolete">Souhaitez-vous réinitialiser toutes les mots de passes pour les clés utilisées ?</translation> </message> <message> <source>signed with the certificate "%1" using the key "%2"</source> @@ -33383,11 +33383,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source><b>Create SIS Package:</b> %1, using Smart Installer</source> - <translation type="obsolete"><b>Créer le paquet SIS&nbsp;:</b> %1 en utilisant le Smart Installer</translation> + <translation type="obsolete"><b>Créer le paquet SIS :</b> %1 en utilisant le Smart Installer</translation> </message> <message> <source><b>Create SIS Package:</b> %1</source> - <translation type="obsolete"><b>Créer le paquet SIS&nbsp;:</b> %1</translation> + <translation type="obsolete"><b>Créer le paquet SIS :</b> %1</translation> </message> </context> <context> @@ -33420,11 +33420,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <name>QmakeProjectManager::Internal::GnuPocS60DevicesWidget</name> <message> <source>Step 1 of 2: Choose GnuPoc folder</source> - <translation type="obsolete">Étape 1 sur 2&nbsp;: Choisir le répertoire GnuPoc</translation> + <translation type="obsolete">Étape 1 sur 2 : Choisir le répertoire GnuPoc</translation> </message> <message> <source>Step 2 of 2: Choose Qt folder</source> - <translation type="obsolete">Étape 2 sur 2&nbsp;: Choisir le répertoire Qt</translation> + <translation type="obsolete">Étape 2 sur 2 : Choisir le répertoire Qt</translation> </message> <message> <source>Adding GnuPoc</source> @@ -33474,7 +33474,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>New Configuration Name:</source> - <translation type="obsolete">Nom de la nouvelle configuration&nbsp;:</translation> + <translation type="obsolete">Nom de la nouvelle configuration :</translation> </message> <message> <source>New Configuration</source> @@ -33482,7 +33482,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>New configuration name:</source> - <translation type="obsolete">Nom de la nouvelle configuration&nbsp;:</translation> + <translation type="obsolete">Nom de la nouvelle configuration :</translation> </message> <message> <source>%1 Debug</source> @@ -33573,7 +33573,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <message> <source>The Qt version is invalid: %1</source> <extracomment>%1: Reason for being invalid</extracomment> - <translation>La version de Qt est invalide&nbsp;: %1</translation> + <translation>La version de Qt est invalide : %1</translation> </message> <message> <source>The qmake command "%1" was not found or is not executable.</source> @@ -33590,11 +33590,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Warning: Cannot build QMLObserver; Qt version must be 4.7.1 or higher.</source> - <translation type="obsolete">Avertissement&nbsp;: impossible de compiler QMLObserver ; la version de Qt doit être 4.7.1 ou plus.</translation> + <translation type="obsolete">Avertissement : impossible de compiler QMLObserver ; la version de Qt doit être 4.7.1 ou plus.</translation> </message> <message> <source>Warning: Cannot build qmldump; Qt version must be 4.7.1 or higher.</source> - <translation type="obsolete">Avertissement&nbsp;: impossible de compiler qmldump ; la version de Qt doit être 4.7.1 ou plus.</translation> + <translation type="obsolete">Avertissement : impossible de compiler qmldump ; la version de Qt doit être 4.7.1 ou plus.</translation> </message> </context> <context> @@ -33613,7 +33613,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source><unknown></source> - <translatorcomment>contexte&nbsp;?</translatorcomment> + <translatorcomment>contexte ?</translatorcomment> <translation><inconnu></translation> </message> <message> @@ -33634,7 +33634,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong?</source> - <translation>Impossible de déterminer le chemin vers les programmes de Qt, peut-être que le chemin vers qmake est faux&nbsp;?</translation> + <translation>Impossible de déterminer le chemin vers les programmes de Qt, peut-être que le chemin vers qmake est faux ?</translation> </message> <message> <source>The default mkspec symlink is broken.</source> @@ -33642,7 +33642,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>ABI detection failed: Make sure to use a matching compiler when building.</source> - <translation>La détection de l'ABI a échoué&nbsp;: vérifiez que vous utilisez un compilateur adéquat.</translation> + <translation>La détection de l'ABI a échoué : vérifiez que vous utilisez un compilateur adéquat.</translation> </message> <message> <source>Non-installed -prefix build - for internal development only.</source> @@ -33651,7 +33651,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Cannot start '%1': %2</source> - <translation>Impossible de démarrer "%1"&nbsp;: %2</translation> + <translation>Impossible de démarrer "%1" : %2</translation> </message> <message> <source>Timeout running '%1' (%2 ms).</source> @@ -33671,7 +33671,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>ABI detection failed: Make sure to use a matching tool chain when building.</source> - <translation type="obsolete">La détection de l'ABI a échoué&nbsp;: vérifiez que vous utilisez une chaîne de compilation adéquate lors de la compilation.</translation> + <translation type="obsolete">La détection de l'ABI a échoué : vérifiez que vous utilisez une chaîne de compilation adéquate lors de la compilation.</translation> </message> <message> <source>No qmlscene installed.</source> @@ -33863,7 +33863,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>The directory '%1' is already managed by a version control system (%2). Would you like to specify another directory?</source> - <translation>Le répertoire "%1" est déjà géré par un système de contrôle des versions (%2). Voulez-vous spécifier un autre répertoire&nbsp;?</translation> + <translation>Le répertoire "%1" est déjà géré par un système de contrôle des versions (%2). Voulez-vous spécifier un autre répertoire ?</translation> </message> <message> <source>Repository already under version control</source> @@ -33887,7 +33887,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Unable to launch '%1': %2</source> - <translation>Impossible de lancer "%1"&nbsp;: %2</translation> + <translation>Impossible de lancer "%1" : %2</translation> </message> <message> <source>A timeout occurred running '%1'</source> @@ -33923,11 +33923,11 @@ Preselects Qt for Simulator and mobile targets if available</source> <name>trk::Launcher</name> <message> <source>Cannot open remote file '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir le fichier "%1" à distance&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier "%1" à distance : %2</translation> </message> <message> <source>Cannot open '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir "%1" : %2</translation> </message> <message> <source>No device is connected. Please connect a device and try again.</source> @@ -34003,7 +34003,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Repeat vertically. Tiles the image until there is no more space. May crop the last image.</source> - <translatorcomment>tronquée&nbsp;? rognée&nbsp;? john&nbsp;:rognée</translatorcomment> + <translatorcomment>tronquée ? rognée ? john :rognée</translatorcomment> <translation>Répéter verticalement. Répète l'image en utilisant tout l'espace disponible. Il se peut que la dernière image soit rognée.</translation> </message> <message> @@ -34055,7 +34055,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>10 x 10</source> - <translatorcomment>wtf&nbsp;? encore&nbsp;?</translatorcomment> + <translatorcomment>wtf ? encore ?</translatorcomment> <translation>10 x 10</translation> </message> </context> @@ -34168,39 +34168,39 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Breakpoint type:</source> - <translation type="obsolete">Type de point d'arrêt&nbsp;: </translation> + <translation type="obsolete">Type de point d'arrêt : </translation> </message> <message> <source>File name:</source> - <translation type="obsolete">Nom du fichier&nbsp;:</translation> + <translation type="obsolete">Nom du fichier :</translation> </message> <message> <source>Line number:</source> - <translation type="obsolete">Numéro de ligne&nbsp;:</translation> + <translation type="obsolete">Numéro de ligne :</translation> </message> <message> <source>Use full path:</source> - <translation type="obsolete">Utiliser le chemin complet&nbsp;:</translation> + <translation type="obsolete">Utiliser le chemin complet :</translation> </message> <message> <source>Address:</source> - <translation type="obsolete">Adresse&nbsp;:</translation> + <translation type="obsolete">Adresse :</translation> </message> <message> <source>Function:</source> - <translation type="obsolete">Fonction&nbsp;:</translation> + <translation type="obsolete">Fonction :</translation> </message> <message> <source>Condition:</source> - <translation type="obsolete">Condition&nbsp;:</translation> + <translation type="obsolete">Condition :</translation> </message> <message> <source>Ignore count:</source> - <translation type="obsolete">Nombre de passages à ignorer&nbsp;:</translation> + <translation type="obsolete">Nombre de passages à ignorer :</translation> </message> <message> <source>Thread specification:</source> - <translation type="obsolete">Spécification de thread&nbsp;:</translation> + <translation type="obsolete">Spécification de thread :</translation> </message> </context> <context> @@ -34211,7 +34211,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Prefix:</source> - <translation>Préfixe&nbsp;:</translation> + <translation>Préfixe :</translation> </message> <message> <source>Limit to prefix</source> @@ -34297,11 +34297,11 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Component name:</source> - <translation type="obsolete">Nom du composant&nbsp;:</translation> + <translation type="obsolete">Nom du composant :</translation> </message> <message> <source>Path:</source> - <translation type="obsolete">Chemin&nbsp;:</translation> + <translation type="obsolete">Chemin :</translation> </message> <message> <source>Choose...</source> @@ -34324,7 +34324,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>If enabled, the toolbar will remain pinned to an absolute position.</source> - <translatorcomment>restera attachée&nbsp;? => épinglée - utilisé ailleurs [pnr]</translatorcomment> + <translatorcomment>restera attachée ? => épinglée - utilisé ailleurs [pnr]</translatorcomment> <translation>Si disponible, la barre d'outils restera épinglée à une position absolue.</translation> </message> <message> @@ -34341,15 +34341,15 @@ Preselects Qt for Simulator and mobile targets if available</source> <name>QmakeProjectManager::Internal::LibraryDetailsWidget</name> <message> <source>Library:</source> - <translation>Bibliothèque&nbsp;:</translation> + <translation>Bibliothèque :</translation> </message> <message> <source>Library file:</source> - <translation>Fichier de bibliothèque&nbsp;: </translation> + <translation>Fichier de bibliothèque : </translation> </message> <message> <source>Include path:</source> - <translation>Chemin d'inclusion&nbsp;: </translation> + <translation>Chemin d'inclusion : </translation> </message> <message> <source>Platform</source> @@ -34373,7 +34373,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Linkage:</source> - <translation>Edition de liens&nbsp;:</translation> + <translation>Edition de liens :</translation> </message> <message> <source>Dynamic</source> @@ -34385,7 +34385,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Mac:</source> - <translation>Mac&nbsp;:</translation> + <translation>Mac :</translation> </message> <message> <source>Library</source> @@ -34397,7 +34397,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Windows:</source> - <translation>Windows&nbsp;:</translation> + <translation>Windows :</translation> </message> <message> <source>Library inside "debug" or "release" subfolder</source> @@ -34413,7 +34413,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Package:</source> - <translation>Paquet&nbsp;: </translation> + <translation>Paquet : </translation> </message> </context> <context> @@ -34424,7 +34424,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Device configuration:</source> - <translation type="obsolete">Configuration du périphérique&nbsp;:</translation> + <translation type="obsolete">Configuration du périphérique :</translation> </message> <message> <source>Also deploy to sysroot</source> @@ -34437,7 +34437,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source><b>Files to install for subproject:</b></source> - <translation type="obsolete"><b>Fichiers à installer pour les sous-projets&nbsp;:</b></translation> + <translation type="obsolete"><b>Fichiers à installer pour les sous-projets :</b></translation> </message> <message> <source><a href=irrelevant>Manage device configurations</a></source> @@ -34503,7 +34503,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Orientation behavior:</source> - <translation type="obsolete">Comportement de l'orientation&nbsp;:</translation> + <translation type="obsolete">Comportement de l'orientation :</translation> </message> <message> <source>Symbian Specific</source> @@ -34511,11 +34511,11 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Application icon (.svg):</source> - <translation type="obsolete">Icône de l'application (.svg)&nbsp;:</translation> + <translation type="obsolete">Icône de l'application (.svg) :</translation> </message> <message> <source>Target UID3:</source> - <translation type="obsolete">Cible UID3&nbsp;:</translation> + <translation type="obsolete">Cible UID3 :</translation> </message> <message> <source>Enable network access</source> @@ -34527,7 +34527,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Application icon (64x64):</source> - <translation type="obsolete">Icône de l'application (64x64)&nbsp;:</translation> + <translation type="obsolete">Icône de l'application (64x64) :</translation> </message> </context> <context> @@ -34542,11 +34542,11 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Target UID3:</source> - <translation type="obsolete">Cible UID3&nbsp;:</translation> + <translation type="obsolete">Cible UID3 :</translation> </message> <message> <source>Plugin's directory name:</source> - <translation type="obsolete">Nom du répertoire du plug-in&nbsp;:</translation> + <translation type="obsolete">Nom du répertoire du plug-in :</translation> </message> </context> <context> @@ -34569,7 +34569,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Note: All files and directories that reside in the same directory as the main QML file are deployed. You can modify the contents of the directory any time before deploying.</source> - <translation type="obsolete">Note&nbsp;: tous les fichiers et répertoires qui sont dans le même répertoire que le fichier QML principal sont déployés. Vous pouvez modifier le contenu du répertoire n'importe quand avant le déploiement.</translation> + <translation type="obsolete">Note : tous les fichiers et répertoires qui sont dans le même répertoire que le fichier QML principal sont déployés. Vous pouvez modifier le contenu du répertoire n'importe quand avant le déploiement.</translation> </message> </context> <context> @@ -34656,7 +34656,7 @@ Preselects Qt for Simulator and mobile targets if available</source> <name>ProjectExplorer::BuildableHelperLibrary</name> <message> <source>Cannot start process: %1</source> - <translation>Impossible de démarrer le processus&nbsp;: %1</translation> + <translation>Impossible de démarrer le processus : %1</translation> </message> <message> <source>Timeout after %1s.</source> @@ -34669,12 +34669,12 @@ Preselects Qt for Simulator and mobile targets if available</source> <message> <source>The process returned exit code %1: %2</source> - <translation>Le processus a retourné le code %1&nbsp;: + <translation>Le processus a retourné le code %1 : %2</translation> </message> <message> <source>Error running '%1' in %2: %3</source> - <translation>Erreur lors de l'exécution de "%1" dans %2&nbsp;: %3</translation> + <translation>Erreur lors de l'exécution de "%1" dans %2 : %3</translation> </message> <message> <source>Building helper '%1' in %2 @@ -34724,7 +34724,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Debug port:</source> - <translation type="obsolete">Port du débogage&nbsp;:</translation> + <translation type="obsolete">Port du débogage :</translation> </message> <message> <source><a href="qthelp://com.nokia.qtcreator/doc/creator-debugging-qml.html">What are the prerequisites?</a></source> @@ -34767,14 +34767,14 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Would you like to terminate it?</source> - <translation>Voulez-vous le terminer&nbsp;?</translation> + <translation>Voulez-vous le terminer ?</translation> </message> </context> <context> <name>ClassView::Internal::NavigationWidgetFactory</name> <message> <source>Class View</source> - <translatorcomment>Ou est-ce un rapport avec la Vue&nbsp;? (graphics/view)</translatorcomment> + <translatorcomment>Ou est-ce un rapport avec la Vue ? (graphics/view)</translatorcomment> <translation>Affichage de la classe</translation> </message> </context> @@ -34812,7 +34812,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Protocol version mismatch: Expected %1, got %2</source> - <translation type="obsolete">Conflit de version de protocole&nbsp;: %1 attendue, %2 detectée</translation> + <translation type="obsolete">Conflit de version de protocole : %1 attendue, %2 detectée</translation> </message> <message> <source>Unknown error.</source> @@ -34828,11 +34828,11 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Error creating directory '%1': %2</source> - <translation type="obsolete">Erreur lors de la création du répertoire "%1"&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de la création du répertoire "%1" : %2</translation> </message> <message> <source>Could not open local file '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir le fichier local "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier local "%1" : %2</translation> </message> <message> <source>Remote directory could not be opened for reading.</source> @@ -34872,7 +34872,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Cannot append to remote file: Server does not support the file size attribute.</source> - <translation type="obsolete">Impossible d'ajouter à la fin du fichier distant&nbsp;: le serveur ne supporte pas l'attribut taille du fichier.</translation> + <translation type="obsolete">Impossible d'ajouter à la fin du fichier distant : le serveur ne supporte pas l'attribut taille du fichier.</translation> </message> <message> <source>Server could not start session.</source> @@ -34880,7 +34880,7 @@ Preselects Qt for Simulator and mobile targets if available</source> </message> <message> <source>Error reading local file: %1</source> - <translation type="obsolete">Erreur lors de la lecture du fichier local&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de la lecture du fichier local : %1</translation> </message> </context> <context> @@ -34888,7 +34888,7 @@ Preselects Qt for Simulator and mobile targets if available</source> <message> <source>Server and client capabilities don't match. Client list was: %1. Server list was %2.</source> - <translation>Les capacités du serveur et du client ne correspondent pas. La liste du client était&nbsp;: %1. + <translation>Les capacités du serveur et du client ne correspondent pas. La liste du client était : %1. La liste du serveur était %2.</translation> </message> </context> @@ -34903,15 +34903,15 @@ La liste du serveur était %2.</translation> <name>Core::Internal::SshConnectionPrivate</name> <message> <source>SSH Protocol error: %1</source> - <translation type="obsolete">Erreur dans le protocole SSH&nbsp;: %1</translation> + <translation type="obsolete">Erreur dans le protocole SSH : %1</translation> </message> <message> <source>Botan library exception: %1</source> - <translation type="obsolete">Exception dans la bibliothèque Botan&nbsp;: %1</translation> + <translation type="obsolete">Exception dans la bibliothèque Botan : %1</translation> </message> <message> <source>Invalid protocol version: Expected '2.0', got '%1'.</source> - <translation type="obsolete">Version du protocole invalide&nbsp;:'2.0' attendue, "%1" detectée.</translation> + <translation type="obsolete">Version du protocole invalide :'2.0' attendue, "%1" detectée.</translation> </message> <message> <source>Invalid server id '%1'.</source> @@ -34923,7 +34923,7 @@ La liste du serveur était %2.</translation> </message> <message> <source>Could not read private key file: %1</source> - <translation type="obsolete">Impossible de lire le fichier de la clé privée&nbsp;: %1</translation> + <translation type="obsolete">Impossible de lire le fichier de la clé privée : %1</translation> </message> <message> <source>Password expired.</source> @@ -34939,7 +34939,7 @@ La liste du serveur était %2.</translation> </message> <message> <source>Server closed connection: %1</source> - <translation type="obsolete">Le serveur a fermé la connexion&nbsp;: %1</translation> + <translation type="obsolete">Le serveur a fermé la connexion : %1</translation> </message> <message> <source>Connection closed unexpectedly.</source> @@ -35028,7 +35028,7 @@ La liste du serveur était %2.</translation> </message> <message> <source>C++ Symbols:</source> - <translation>Symboles C++&nbsp;:</translation> + <translation>Symboles C++ :</translation> </message> <message> <source>Classes</source> @@ -35054,9 +35054,9 @@ La liste du serveur était %2.</translation> <source>Scope: %1 Types: %2 Flags: %3</source> - <translation>Contexte&nbsp;: %1 -Types&nbsp;: %2 -Indicateurs&nbsp;: %3</translation> + <translation>Contexte : %1 +Types : %2 +Indicateurs : %3</translation> </message> <message> <source>All</source> @@ -35075,7 +35075,7 @@ Indicateurs&nbsp;: %3</translation> <name>CppTools::Internal::SymbolsFindFilterConfigWidget</name> <message> <source>Types:</source> - <translation>Types&nbsp;:</translation> + <translation>Types :</translation> </message> <message> <source>Classes</source> @@ -35203,7 +35203,7 @@ GDB allows for specifying a sequence of commands separated by the delimiter &apo </message> <message> <source><html><head/><body><p>Determines how the path is specified when setting breakpoints:</p><ul><li><i>Use Engine Default</i>: Preferred setting of the debugger engine.</li><li><i>Use Full Path</i>: Pass full path, avoiding ambiguities should files of the same name exist in several modules. This is the engine default for CDB and LLDB.</li><li><i>Use File Name</i>: Pass the file name only. This is useful when using a source tree whose location does not match the one used when building the modules. It is the engine default for GDB as using full paths can be slow with this engine.</li></ul></body></html></source> - <translation><html><head/><body><p>Détermine comment le chemin est spécifié lors de la mise en place des points d'ârret&nbsp;: </p><ul><li><i>Utiliser le moteur par défaut</i>&nbsp;: paramètre conseillé pour le moteur de débogueur ; </li><li><i>Utiliser le chemin complet</i>&nbsp;: donne le chemin complet, en évitant les ambiguïtés, des fichiers du meme nom peuvent exister dans plusieurs modules. Il s'agit de la valeur par défaut du moteur CDB et LLDB.</li><li><i>Utiliser le nom de fichier</i>&nbsp;: donne le nom de fichier uniquement. Cela est utile quand vous utilisez un arbre de source où les chemins ne correspondent pas à ceux utilisé quand vous compilez les modules. Il s'agit de la valeur par défaut du moteur GDB et utiliser des chemins complets peuvent ralentir l'utilisation de ce moteur.</li></ul></body></html></translation> + <translation><html><head/><body><p>Détermine comment le chemin est spécifié lors de la mise en place des points d'ârret : </p><ul><li><i>Utiliser le moteur par défaut</i> : paramètre conseillé pour le moteur de débogueur ; </li><li><i>Utiliser le chemin complet</i> : donne le chemin complet, en évitant les ambiguïtés, des fichiers du meme nom peuvent exister dans plusieurs modules. Il s'agit de la valeur par défaut du moteur CDB et LLDB.</li><li><i>Utiliser le nom de fichier</i> : donne le nom de fichier uniquement. Cela est utile quand vous utilisez un arbre de source où les chemins ne correspondent pas à ceux utilisé quand vous compilez les modules. Il s'agit de la valeur par défaut du moteur GDB et utiliser des chemins complets peuvent ralentir l'utilisation de ce moteur.</li></ul></body></html></translation> </message> <message> <source>Function "main()"</source> @@ -35233,27 +35233,27 @@ debugger start-up times (CDB, LLDB).</source> </message> <message> <source>Breakpoint &type:</source> - <translation>&Types de points d'arrêt&nbsp;: </translation> + <translation>&Types de points d'arrêt : </translation> </message> <message> <source>&File name:</source> - <translation>Nom de &fichier&nbsp;: </translation> + <translation>Nom de &fichier : </translation> </message> <message> <source>&Line number:</source> - <translation>Numéro de &ligne&nbsp;: </translation> + <translation>Numéro de &ligne : </translation> </message> <message> <source>&Enabled:</source> - <translation>Activ&é&nbsp;: </translation> + <translation>Activ&é : </translation> </message> <message> <source>&Address:</source> - <translation>&Adresse&nbsp;: </translation> + <translation>&Adresse : </translation> </message> <message> <source>Fun&ction:</source> - <translation>Fon&ction&nbsp;: </translation> + <translation>Fon&ction : </translation> </message> <message> <source>Advanced</source> @@ -35261,23 +35261,23 @@ debugger start-up times (CDB, LLDB).</source> </message> <message> <source>T&racepoint only:</source> - <translation>Point de &traçage uniquement&nbsp;: </translation> + <translation>Point de &traçage uniquement : </translation> </message> <message> <source>&One shot only:</source> - <translation>&Un seul déclenchement&nbsp;:</translation> + <translation>&Un seul déclenchement :</translation> </message> <message> <source>Pat&h:</source> - <translation>Che&min&nbsp;:</translation> + <translation>Che&min :</translation> </message> <message> <source>&Module:</source> - <translation>&Module&nbsp;: </translation> + <translation>&Module : </translation> </message> <message> <source>&Command:</source> - <translation type="obsolete">&Commande&nbsp;: </translation> + <translation type="obsolete">&Commande : </translation> </message> <message> <source>Use Engine Default</source> @@ -35299,27 +35299,27 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> </message> <message> <source>&Commands:</source> - <translation>&Commandes&nbsp;: </translation> + <translation>&Commandes : </translation> </message> <message> <source>C&ondition:</source> - <translation>C&ondition&nbsp;: </translation> + <translation>C&ondition : </translation> </message> <message> <source>&Ignore count:</source> - <translation>Nombre de passages à &ignorer&nbsp;:</translation> + <translation>Nombre de passages à &ignorer :</translation> </message> <message> <source>&Thread specification:</source> - <translation>Spécification de &thread&nbsp;:</translation> + <translation>Spécification de &thread :</translation> </message> <message> <source>&Expression:</source> - <translation>&Expression&nbsp;:</translation> + <translation>&Expression :</translation> </message> <message> <source>&Message:</source> - <translation>&Message&nbsp;:</translation> + <translation>&Message :</translation> </message> </context> <context> @@ -35327,11 +35327,11 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> <message> <source>The function "%1()" failed: %2</source> <extracomment>Function call failed</extracomment> - <translation type="obsolete">La fonction "%1()" a échoué&nbsp;: %2</translation> + <translation type="obsolete">La fonction "%1()" a échoué : %2</translation> </message> <message> <source>Version: %1</source> - <translation type="obsolete">Version&nbsp;: %1</translation> + <translation type="obsolete">Version : %1</translation> </message> <message> <source><html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html></source> @@ -35343,7 +35343,7 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> </message> <message> <source><html><head/><body><p>The debugger is not configured to use the public <a href="%1">Microsoft Symbol Server</a>. This is recommended for retrieval of the symbols of the operating system libraries.</p><p><i>Note:</i> A fast internet connection is required for this to work smoothly. Also, a delay might occur when connecting for the first time.</p><p>Would you like to set it up?</p></br></body></html></source> - <translation type="obsolete"><html><head/><body><p>Le débogueur n'est pas configuré pour utiliser le <a href="%1">serveur de symbole Microsoft</a> public. Ceci est recommandé pour récupérer les symboles des bibliothèques du système d'exploitation.</p><p><i>Note&nbsp;:</i> une connexion internet rapide est requise pour que cela fonctione en douceur. Une attente peut également avoir lieu lors de la première connexion.</p><p>Souhaitez-vous le configurer&nbsp;?</p></br></body></html></translation> + <translation type="obsolete"><html><head/><body><p>Le débogueur n'est pas configuré pour utiliser le <a href="%1">serveur de symbole Microsoft</a> public. Ceci est recommandé pour récupérer les symboles des bibliothèques du système d'exploitation.</p><p><i>Note :</i> une connexion internet rapide est requise pour que cela fonctione en douceur. Une attente peut également avoir lieu lors de la première connexion.</p><p>Souhaitez-vous le configurer ?</p></br></body></html></translation> </message> <message> <source>Symbol Server</source> @@ -35379,7 +35379,7 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> </message> <message> <source>Unable to continue: %1</source> - <translation type="obsolete">Impossible de continuer&nbsp;: %1</translation> + <translation type="obsolete">Impossible de continuer : %1</translation> </message> <message> <source>Reverse stepping is not implemented.</source> @@ -35399,7 +35399,7 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> </message> <message> <source>Running up to %1:%2...</source> - <translation type="obsolete">Exécution jusqu'à %1&nbsp;: %2…</translation> + <translation type="obsolete">Exécution jusqu'à %1 : %2…</translation> </message> <message> <source>Running up to function '%1()'...</source> @@ -35425,11 +35425,11 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> <message> <source>Unable to assign the value '%1' to '%2' (%3): %4</source> <extracomment>Arguments: New value, name, (type): Error</extracomment> - <translation type="obsolete">Impossible d'assigner la valeur '%1' à "%2" (%3)&nbsp;: %4</translation> + <translation type="obsolete">Impossible d'assigner la valeur '%1' à "%2" (%3) : %4</translation> </message> <message> <source>Unable to retrieve %1 bytes of memory at 0x%2: %3</source> - <translation type="obsolete">Impossible de récupérer %1 octets de mémoire sur 0x%2&nbsp;: %3</translation> + <translation type="obsolete">Impossible de récupérer %1 octets de mémoire sur 0x%2 : %3</translation> </message> <message> <source>Cannot retrieve symbols while the debuggee is running.</source> @@ -35525,11 +35525,11 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> </message> <message> <source>"Select Widget to Watch": Please stop the application first.</source> - <translation>"Sélectionner le widget à observer"&nbsp;: veuillez d'abord arrêter l'application. </translation> + <translation>"Sélectionner le widget à observer" : veuillez d'abord arrêter l'application. </translation> </message> <message> <source>"Select Widget to Watch": Not supported in state '%1'.</source> - <translation>"Sélectionner le widget à observer"&nbsp;: non supporté dans l'état "%1". </translation> + <translation>"Sélectionner le widget à observer" : non supporté dans l'état "%1". </translation> </message> <message> <source>Ignoring initial breakpoint...</source> @@ -35545,11 +35545,11 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> </message> <message> <source>Interrupted in thread %1, current thread: %2</source> - <translation type="obsolete">Interruption dans le thread %1, thread courant&nbsp;: %2</translation> + <translation type="obsolete">Interruption dans le thread %1, thread courant : %2</translation> </message> <message> <source>Stopped, current thread: %1</source> - <translation type="obsolete">Arrêté, thread courant&nbsp;: %1</translation> + <translation type="obsolete">Arrêté, thread courant : %1</translation> </message> <message> <source>Changing threads: %1 -> %2</source> @@ -35561,7 +35561,7 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> </message> <message> <source>Stopped at %1:%2 in thread %3.</source> - <translation type="obsolete">Arrêté a %1&nbsp;: %2 dans le thread %3.</translation> + <translation type="obsolete">Arrêté a %1 : %2 dans le thread %3.</translation> </message> <message> <source>Stopped at %1 in thread %2 (missing debug information).</source> @@ -35577,11 +35577,11 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> </message> <message> <source>Breakpoint: %1</source> - <translation type="obsolete">Point d'arrêt&nbsp;: %1</translation> + <translation type="obsolete">Point d'arrêt : %1</translation> </message> <message> <source>Watchpoint: %1</source> - <translation type="obsolete">Point d'observation&nbsp;: %1</translation> + <translation type="obsolete">Point d'observation : %1</translation> </message> <message> <source>The CDB debug engine does not support the %1 toolchain.</source> @@ -35609,7 +35609,7 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> </message> <message> <source>Unable to write log contents to '%1': %2</source> - <translation type="obsolete">Impossible d'écrire le contenu du journal d'événements dans "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'écrire le contenu du journal d'événements dans "%1" : %2</translation> </message> </context> <context> @@ -35790,15 +35790,15 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Stopped: "%1"</source> - <translation>Arrêté&nbsp;: "%1"</translation> + <translation>Arrêté : "%1"</translation> </message> <message> <source>Stopped: %1 (Signal %2).</source> - <translation>Arrêté&nbsp;: %1 (signal %2). </translation> + <translation>Arrêté : %1 (signal %2). </translation> </message> <message> <source>Stopped in thread %1 by: %2.</source> - <translation>Interrompu dans le thread %1 par&nbsp;: %2. </translation> + <translation>Interrompu dans le thread %1 par : %2. </translation> </message> <message> <source>Interrupted.</source> @@ -35815,8 +35815,8 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <translation> <Inconnu> </translation> </message> <message> - <source><p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name&nbsp;: </td><td>%1</td></tr><tr><td>Signal meaning&nbsp;: </td><td>%2</td></tr></table></source> - <translation><p>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal&nbsp;: </td><td>%1</td></tr><tr><td>Signification du signal&nbsp;: </td><td>%2</td></tr></table></translation> + <source><p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table></source> + <translation><p>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal : </td><td>%1</td></tr><tr><td>Signification du signal : </td><td>%2</td></tr></table></translation> </message> <message> <source>Signal received</source> @@ -35842,7 +35842,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <source> Section %1: %2</source> <translation> -Section %1&nbsp;: %2</translation> +Section %1 : %2</translation> </message> <message> <source>Warning</source> @@ -35909,11 +35909,11 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Option '%1' is missing the parameter.</source> - <translation>Option "%1"&nbsp;: le paramètre est manquant.</translation> + <translation>Option "%1" : le paramètre est manquant.</translation> </message> <message> <source>Only one executable allowed!</source> - <translation>Seulement un exécutable autorisé&nbsp;!</translation> + <translation>Seulement un exécutable autorisé !</translation> </message> <message> <source>The parameter '%1' of option '%2' does not match the pattern <server:port>@<executable>@<architecture>.</source> @@ -35929,7 +35929,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait </message> <message> <source>Invalid debugger option: %1</source> - <translation>Option du débogueur invalide&nbsp;: %1</translation> + <translation>Option du débogueur invalide : %1</translation> </message> <message> <source>The application requires the debugger engine '%1', which is disabled.</source> @@ -35963,7 +35963,7 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <source>The preferred debugger engine for debugging binaries of type '%1' is not available. The debugger engine '%2' will be used as a fallback. Details: %3</source> - <translation type="obsolete">Le moteur de débogage préféré pour les binaires de type '%1' n'est pas disponible. Le moteur de débogage "%2" sera utilisé. Détails&nbsp;: %3</translation> + <translation type="obsolete">Le moteur de débogage préféré pour les binaires de type '%1' n'est pas disponible. Le moteur de débogage "%2" sera utilisé. Détails : %3</translation> </message> <message> <source>Warning</source> @@ -36062,7 +36062,7 @@ Details: %3</source> </message> <message> <source>Error evaluating command line arguments: %1</source> - <translation type="obsolete">Erreur durant l'évaluation des arguments de la ligne de commande&nbsp;: %1</translation> + <translation type="obsolete">Erreur durant l'évaluation des arguments de la ligne de commande : %1</translation> </message> <message> <source>Start and Debug External Application...</source> @@ -36082,7 +36082,7 @@ Details: %3</source> </message> <message> <source>This attaches to a running 'Target Communication Framework' agent.</source> - <translatorcomment>Traduction de This attaches&nbsp;?</translatorcomment> + <translatorcomment>Traduction de This attaches ?</translatorcomment> <translation type="obsolete">Ceci attache à un agent 'Target Communication Framework' en cours d'éxecution.</translation> </message> <message> @@ -36103,7 +36103,7 @@ Details: %3</source> </message> <message> <source>Threads:</source> - <translation type="obsolete">Threads&nbsp;:</translation> + <translation type="obsolete">Threads :</translation> </message> <message> <source>Warning</source> @@ -36123,7 +36123,7 @@ Details: %3</source> </message> <message> <source>Remote: "%1"</source> - <translation type="obsolete">Distant&nbsp;: "%1"</translation> + <translation type="obsolete">Distant : "%1"</translation> </message> <message> <source>Attaching to PID %1.</source> @@ -36153,7 +36153,7 @@ Details: %3</source> <name>Debugger::DebuggerRunControl</name> <message> <source>Cannot debug '%1' (tool chain: '%2'): %3</source> - <translation type="obsolete">Impossible de déboguer '%1' (chaîne d'outils&nbsp;: "%2")&nbsp;: %3</translation> + <translation type="obsolete">Impossible de déboguer '%1' (chaîne d'outils : "%2") : %3</translation> </message> <message> <source>Warning</source> @@ -36212,7 +36212,7 @@ Details: %3</source> </message> <message> <source>A debugging session is still in progress. Terminating the session in the current state can leave the target in an inconsistent state. Would you still like to terminate it?</source> - <translation>Une session de débogage est en cours. Terminer la session dans l'état courant risque de laisser la cible dans un état incohérent. Êtes-vous sûr de vouloir terminer la session&nbsp;?</translation> + <translation>Une session de débogage est en cours. Terminer la session dans l'état courant risque de laisser la cible dans un état incohérent. Êtes-vous sûr de vouloir terminer la session ?</translation> </message> <message> <source>Close Debugging Session</source> @@ -36227,7 +36227,7 @@ Details: %3</source> </message> <message> <source>Connection failure: %1.</source> - <translation>Échec de la connexion&nbsp;: %1.</translation> + <translation>Échec de la connexion : %1.</translation> </message> <message> <source>Could not create FIFO.</source> @@ -36258,7 +36258,7 @@ Details: %3</source> <name>Debugger::Internal::TcfTrkGdbAdapter</name> <message> <source>Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4.</source> - <translation type="obsolete">Processus démarré, PID&nbsp;: 0x%1, id du thread&nbsp;: 0x%2, segment de code&nbsp;: 0x%3, segment de données&nbsp;: 0x%4.</translation> + <translation type="obsolete">Processus démarré, PID : 0x%1, id du thread : 0x%2, segment de code : 0x%3, segment de données : 0x%4.</translation> </message> <message> <source>The reported code segment address (0x%1) might be invalid. Symbol resolution or setting breakoints may not work.</source> @@ -36267,7 +36267,7 @@ Details: %3</source> <message> <source>Connecting to TRK server adapter failed: </source> - <translation type="obsolete">La connection à l'adaptateur du serveur TRK a échoué&nbsp;: + <translation type="obsolete">La connection à l'adaptateur du serveur TRK a échoué : </translation> </message> </context> @@ -36295,7 +36295,7 @@ Details: %3</source> </message> <message> <source>Unable to write log contents to '%1': %2</source> - <translation type="obsolete">Impossible d'écrire le contenu du journal d'événements dans "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'écrire le contenu du journal d'événements dans "%1" : %2</translation> </message> </context> <context> @@ -36317,7 +36317,7 @@ Details: %3</source> </message> <message> <source>Command:</source> - <translation>Commande&nbsp;:</translation> + <translation>Commande :</translation> </message> <message> <source>Log File</source> @@ -36329,14 +36329,14 @@ Details: %3</source> </message> <message> <source>Unable to write log contents to '%1': %2</source> - <translation type="obsolete">Impossible d'écrire le contenu du journal d'événements dans "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'écrire le contenu du journal d'événements dans "%1" : %2</translation> </message> </context> <context> <name>Debugger::QmlAdapter</name> <message> <source>Connect to debug server %1:%2</source> - <translation type="obsolete">Connexion au serveur de débogage %1&nbsp;: %2</translation> + <translation type="obsolete">Connexion au serveur de débogage %1 : %2</translation> </message> <message> <source>Connecting to debug server on %1</source> @@ -36344,12 +36344,12 @@ Details: %3</source> </message> <message> <source>Connecting to debug server %1:%2</source> - <translation type="obsolete">Connexion au serveur de débogage %1&nbsp;: %2</translation> + <translation type="obsolete">Connexion au serveur de débogage %1 : %2</translation> </message> <message> <source>Error: (%1) %2</source> <comment>%1=error code, %2=error message</comment> - <translation type="obsolete">Erreur&nbsp;: (%1) %2</translation> + <translation type="obsolete">Erreur : (%1) %2</translation> </message> <message> <source>disconnected. @@ -36379,7 +36379,7 @@ Details: %3</source> </message> <message> <source>Status of '%1' changed to 'unavailable'.</source> - <translatorcomment>Do we need to translate 'unavailable'&nbsp;?</translatorcomment> + <translatorcomment>Do we need to translate 'unavailable' ?</translatorcomment> <translation type="obsolete">Statut de '%1' a changé à 'indisponible'.</translation> </message> <message> @@ -36398,7 +36398,7 @@ Details: %3</source> </message> <message> <source>Error: Cannot connect to debug service '%1'. Debugging functionality will be limited.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de se connecteur au service de débogage "%1". Les fonctionnalités de débogage seront limitées. </translation> + <translation type="obsolete">Erreur : impossible de se connecteur au service de débogage "%1". Les fonctionnalités de débogage seront limitées. </translation> </message> <message> <source>Connected to debug service '%1'.</source> @@ -36428,15 +36428,15 @@ Details: %3</source> </message> <message> <source>Could not connect to QML debugger server at %1:%2.</source> - <translation type="obsolete">Impossible de se connecter au serveur de débogage QML %1&nbsp;: %2. </translation> + <translation type="obsolete">Impossible de se connecter au serveur de débogage QML %1 : %2. </translation> </message> <message> <source>QML Debugger: Remote host closed connection.</source> - <translation type="obsolete">Débogueur QML&nbsp;: l'hôte distant a fermé la connexion. </translation> + <translation type="obsolete">Débogueur QML : l'hôte distant a fermé la connexion. </translation> </message> <message> <source>QML Debugger: Could not connect to service '%1'.</source> - <translation type="obsolete">Débogueur QML&nbsp;: impossible de se connecter au service "%1". </translation> + <translation type="obsolete">Débogueur QML : impossible de se connecter au service "%1". </translation> </message> <message> <source>QML Debugger connecting...</source> @@ -36448,7 +36448,7 @@ Details: %3</source> </message> <message> <source>Application startup failed: %1</source> - <translation type="obsolete">Échec du démarrage de l'application&nbsp;: %1</translation> + <translation type="obsolete">Échec du démarrage de l'application : %1</translation> </message> <message> <source>Trying to stop while process is no longer running.</source> @@ -36460,7 +36460,7 @@ Details: %3</source> </message> <message> <source><p>An Uncaught Exception occured in <i>%1</i>:</p><p>%2</p></source> - <translation type="obsolete"><p>Une exception non gérée a eu lieu dans <i>%1</i>&nbsp;: </p><p>%2</p></translation> + <translation type="obsolete"><p>Une exception non gérée a eu lieu dans <i>%1</i> : </p><p>%2</p></translation> </message> <message> <source>Uncaught Exception</source> @@ -36715,22 +36715,22 @@ plutôt que dans le répertoire d'installation lors d'une exècution e <message> <source>error: </source> <comment>Task is of type error</comment> - <translation type="obsolete">erreur&nbsp;: </translation> + <translation type="obsolete">erreur : </translation> </message> <message> <source>warning: </source> <comment>Task is of type warning</comment> - <translation type="obsolete">avertissement&nbsp;: </translation> + <translation type="obsolete">avertissement : </translation> </message> <message> <source>error: </source> <extracomment>Task is of type: error</extracomment> - <translation>erreur&nbsp;: </translation> + <translation>erreur : </translation> </message> <message> <source>warning: </source> <extracomment>Task is of type: warning</extracomment> - <translation>avertissement&nbsp;: </translation> + <translation>avertissement : </translation> </message> <message> <source>&Copy</source> @@ -36744,12 +36744,12 @@ plutôt que dans le répertoire d'installation lors d'une exècution e <message> <source>error:</source> <extracomment>Task is of type: error</extracomment> - <translation>erreur&nbsp;:</translation> + <translation>erreur :</translation> </message> <message> <source>warning:</source> <extracomment>Task is of type: warning</extracomment> - <translation>avertissement&nbsp;:</translation> + <translation>avertissement :</translation> </message> </context> <context> @@ -36796,7 +36796,7 @@ plutôt que dans le répertoire d'installation lors d'une exècution e </message> <message> <source>Force it to quit?</source> - <translation type="obsolete">La forcer à quitter&nbsp;?</translation> + <translation type="obsolete">La forcer à quitter ?</translation> </message> <message> <source>PID %1</source> @@ -36809,7 +36809,7 @@ plutôt que dans le répertoire d'installation lors d'une exècution e </message> <message> <source><html><head/><body><center><i>%1</i> is still running.<center/><center>Force it to quit?</center></body></html></source> - <translation><html><head/><body><center><i>%1</i> fonctionne toujours.<center/><center>Le forcer à quitter&nbsp;? </center></body></html></translation> + <translation><html><head/><body><center><i>%1</i> fonctionne toujours.<center/><center>Le forcer à quitter ? </center></body></html></translation> </message> <message> <source>Force Quit</source> @@ -36874,7 +36874,7 @@ plutôt que dans le répertoire d'installation lors d'une exècution e </message> <message> <source>Project Settings File from a different Environment?</source> - <translation type="obsolete">Le fichier de configuration du projet provient-il d'un environnement différent&nbsp;?</translation> + <translation type="obsolete">Le fichier de configuration du projet provient-il d'un environnement différent ?</translation> </message> <message> <source>Qt Creator has found a .user settings file which was created for another development setup, maybe originating from another machine. @@ -36886,7 +36886,7 @@ Do you still want to load the settings file?</source> Le fichier de configuration .user contient des paramètres spécifiques à un environnement. Ils ne devraient pas être copiés dans un environnement différent. -Voulez-vous toujours charger le fichier de configuration&nbsp;?</translation> +Voulez-vous toujours charger le fichier de configuration ?</translation> </message> </context> <context> @@ -36897,12 +36897,12 @@ Voulez-vous toujours charger le fichier de configuration&nbsp;?</translation </message> <message> <source>Deploy to Maemo device</source> - <translatorcomment>myzu&nbsp;: le ou un&nbsp;? john&nbsp;: un</translatorcomment> + <translatorcomment>myzu : le ou un ? john : un</translatorcomment> <translation>Déployer sur un périphérique Maemo</translation> </message> <message> <source>Deploy to Symbian device</source> - <translatorcomment>myzu&nbsp;: le ou un&nbsp;?</translatorcomment> + <translatorcomment>myzu : le ou un ?</translatorcomment> <translation type="obsolete">Déployer sur un périphérique Symbian</translation> </message> </context> @@ -36922,8 +36922,8 @@ Voulez-vous toujours charger le fichier de configuration&nbsp;?</translation <message> <source>Unsupported import: import QtQuick 1.0 use import Qt 4.7 instead</source> - <translatorcomment>les "import xx" seraient-ils du code QML&nbsp;? Oui, c'est du code QML </translatorcomment> - <translation type="obsolete">Import non supporté&nbsp;: + <translatorcomment>les "import xx" seraient-ils du code QML ? Oui, c'est du code QML </translatorcomment> + <translation type="obsolete">Import non supporté : utilisez import Qt 4.7 au lieu de import QtQuick 1.0</translation> </message> <message> @@ -36943,7 +36943,7 @@ utilisez import Qt 4.7 au lieu de import QtQuick 1.0</translation> <name>QmlJSEditor::ComponentFromObjectDef</name> <message> <source>Move Component into separate file</source> - <translatorcomment>déplacer ou déplace&nbsp;? John&nbsp;: Difficle sans context, allons pour déplace. dourouc&nbsp;: en voyant l'autre, le contexte doit être fort semblable, donc indicatif. </translatorcomment> + <translatorcomment>déplacer ou déplace ? John : Difficle sans context, allons pour déplace. dourouc : en voyant l'autre, le contexte doit être fort semblable, donc indicatif. </translatorcomment> <translation type="obsolete">Déplace le composant dans un fichier séparé</translation> </message> <message> @@ -36975,11 +36975,11 @@ utilisez import Qt 4.7 au lieu de import QtQuick 1.0</translation> </message> <message> <source>Component name:</source> - <translation>Nom du composant&nbsp;:</translation> + <translation>Nom du composant :</translation> </message> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> <message> <source>Choose...</source> @@ -37001,7 +37001,7 @@ utilisez import Qt 4.7 au lieu de import QtQuick 1.0</translation> <name>QmlJSEditor::FindReferences</name> <message> <source>QML/JS Usages:</source> - <translation>Utilisations QML/JS&nbsp;:</translation> + <translation>Utilisations QML/JS :</translation> </message> <message> <source>Searching</source> @@ -37012,7 +37012,7 @@ utilisez import Qt 4.7 au lieu de import QtQuick 1.0</translation> <name>QmlJSEditor::Internal::QmlJSOutlineWidget</name> <message> <source>Show All Bindings</source> - <translatorcomment>myzu&nbsp;: faut-il traduire binding&nbsp;? John&nbsp;: Non </translatorcomment> + <translatorcomment>myzu : faut-il traduire binding ? John : Non </translatorcomment> <translation>Montrer tous les bindings</translation> </message> </context> @@ -37051,12 +37051,12 @@ utilisez import Qt 4.7 au lieu de import QtQuick 1.0</translation> </message> <message> <source>Color Picker</source> - <translatorcomment>pas trouvé mieux que "sélecteur"&nbsp;:/ dourouc&nbsp;: c'est normal, il n'y a pas&nbsp;! </translatorcomment> + <translatorcomment>pas trouvé mieux que "sélecteur" :/ dourouc : c'est normal, il n'y a pas ! </translatorcomment> <translation type="obsolete">Sélecteur de couleur</translation> </message> <message> <source>Live Preview Changes in QML Viewer</source> - <translatorcomment>visualisateur ou visualiseur&nbsp;? john&nbsp;: j'opte pour le second (feeling)</translatorcomment> + <translatorcomment>visualisateur ou visualiseur ? john : j'opte pour le second (feeling)</translatorcomment> <translation type="obsolete">Aperçu en direrct des changements dans le visualiseur QML</translation> </message> <message> @@ -37099,7 +37099,7 @@ utilisez import Qt 4.7 au lieu de import QtQuick 1.0</translation> <name>QmlJSInspector::Internal::InspectorUi</name> <message> <source>Context Path</source> - <translatorcomment>ou du contexte&nbsp;?</translatorcomment> + <translatorcomment>ou du contexte ?</translatorcomment> <translation type="obsolete">Chemin du contexte</translation> </message> <message> @@ -37154,7 +37154,7 @@ utilisez import Qt 4.7 au lieu de import QtQuick 1.0</translation> </message> <message> <source>Url: </source> - <translation type="obsolete">Url&nbsp;:</translation> + <translation type="obsolete">Url :</translation> </message> </context> <context> @@ -37218,7 +37218,7 @@ Ni le chemin vers la bibliothèque, ni le chemin vers ses inclusion ne seront aj <message> <source>Links to a library that is not located in your build tree. Adds the library and include paths to the .pro file.</source> - <translatorcomment>Avant&nbsp;: Fait l'édition de liens avec une bibliothèque qui n'est pas dans votre arbre de compilation. + <translatorcomment>Avant : Fait l'édition de liens avec une bibliothèque qui n'est pas dans votre arbre de compilation. Ajoute la bibliothèque et les chemins d'inclusion dans le fichier .pro.</translatorcomment> <translation>Faire un lien vers une bibliothèque qui n'est pas dans votre arbre de compilation. Ajoute la bibliothèque et les chemins d'inclusion dans le fichier .pro.</translation> @@ -37277,14 +37277,14 @@ Ajoute la bibliothèque et les chemins d'inclusion dans le fichier .pro.</t </message> <message> <source>The following snippet will be added to the<br><b>%1</b> file:</source> - <translation>Le fragment de code suivant va être ajouté au <br> fichier <b>%1</b>&nbsp;:</translation> + <translation>Le fragment de code suivant va être ajouté au <br> fichier <b>%1</b> :</translation> </message> </context> <context> <name>QmakeProjectManager::Internal::LibraryDetailsController</name> <message> <source>Linkage:</source> - <translation>Edition de liens&nbsp;:</translation> + <translation>Edition de liens :</translation> </message> <message> <source>%1 Dynamic</source> @@ -37297,16 +37297,16 @@ Ajoute la bibliothèque et les chemins d'inclusion dans le fichier .pro.</t </message> <message> <source>Mac:</source> - <translation>Mac&nbsp;:</translation> + <translation>Mac :</translation> </message> <message> <source>%1 Framework</source> - <translatorcomment>traduire framework&nbsp;? pas certain que ça ait un sens en français dans le context OSX. John&nbsp;: non on ne traduit pas</translatorcomment> + <translatorcomment>traduire framework ? pas certain que ça ait un sens en français dans le context OSX. John : non on ne traduit pas</translatorcomment> <translation>Framework %1</translation> </message> <message> <source>%1 Library</source> - <translatorcomment>On inverse l'ordre non&nbsp;?</translatorcomment> + <translatorcomment>On inverse l'ordre non ?</translatorcomment> <translation>Bibliothèque %1</translation> </message> </context> @@ -37341,10 +37341,10 @@ Ajoute la bibliothèque et les chemins d'inclusion dans le fichier .pro.</t - %1 Reason: %2</source> - <translation>qmldump n'a pu être créé dans aucun des répertoires&nbsp;: + <translation>qmldump n'a pu être créé dans aucun des répertoires : - %1 -Raison&nbsp;: %2</translation> +Raison : %2</translation> </message> </context> <context> @@ -37384,10 +37384,10 @@ Raison&nbsp;: %2</translation> - %1 Reason: %2</source> - <translation>QMLObserver ne peut être compilé dans aucun de ces répertoires&nbsp;: + <translation>QMLObserver ne peut être compilé dans aucun de ces répertoires : - %1 -Raison&nbsp;: %2</translation> +Raison : %2</translation> </message> </context> <context> @@ -37402,11 +37402,11 @@ Raison&nbsp;: %2</translation> </message> <message> <source>SSH connection error: %1</source> - <translation type="obsolete">Erreur de connexion SSH&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion SSH : %1</translation> </message> <message> <source>Upload failed: Could not open file '%1'</source> - <translation type="obsolete">Échec lors de l'envoi&nbsp;: impossible d'ouvrir le fichier "%1"</translation> + <translation type="obsolete">Échec lors de l'envoi : impossible d'ouvrir le fichier "%1"</translation> </message> <message> <source>Started uploading debugging helpers ('%1').</source> @@ -37414,7 +37414,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Could not upload debugging helpers: %1.</source> - <translation type="obsolete">Impossible d'envoyer les assistants de débogage&nbsp;: %1.</translation> + <translation type="obsolete">Impossible d'envoyer les assistants de débogage : %1.</translation> </message> <message> <source>Finished uploading debugging helpers.</source> @@ -37461,11 +37461,11 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Failed to open '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir "%1" : %2</translation> </message> <message> <source>Could not write '%1': %2</source> - <translation type="obsolete">Impossible d'écrire "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'écrire "%1" : %2</translation> </message> <message> <source>Error writing project file.</source> @@ -37485,7 +37485,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Deployment failed: No valid device set.</source> - <translation type="obsolete">Échec lors du déploiement&nbsp;: aucun périphérique valide défini.</translation> + <translation type="obsolete">Échec lors du déploiement : aucun périphérique valide défini.</translation> </message> <message> <source>All files up to date, no installation necessary.</source> @@ -37493,7 +37493,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Could not connect to host: %1</source> - <translation type="obsolete">Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source>Deploy to Maemo5 device</source> @@ -37510,19 +37510,19 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Cannot deploy: Still cleaning up from last time.</source> - <translation type="obsolete">Impossible de déployer&nbsp;: le dernier nettoyage n'est pas encore terminé.</translation> + <translation type="obsolete">Impossible de déployer : le dernier nettoyage n'est pas encore terminé.</translation> </message> <message> <source>Deployment failed: Qemu was not running. It has now been started up for you, but it will take a bit of time until it is ready.</source> - <translation type="obsolete">Échec du déploiement&nbsp;: Qemu n'était pas lancé. Il a maintenant été lancé, mais il pourrait prendre un peu de temps avant d'être prêt. </translation> + <translation type="obsolete">Échec du déploiement : Qemu n'était pas lancé. Il a maintenant été lancé, mais il pourrait prendre un peu de temps avant d'être prêt. </translation> </message> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Upload failed: Could not open file '%1'</source> - <translation type="obsolete">Échec lors de l'envoi du fichier&nbsp;: impossible d'ouvrir le fichier "%1"</translation> + <translation type="obsolete">Échec lors de l'envoi du fichier : impossible d'ouvrir le fichier "%1"</translation> </message> <message> <source>Started uploading file '%1'.</source> @@ -37534,7 +37534,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Failed to upload file %1: %2</source> - <translation type="obsolete">Échec lors de l'envoi du fichier %1&nbsp;: %2</translation> + <translation type="obsolete">Échec lors de l'envoi du fichier %1 : %2</translation> </message> <message> <source>Successfully uploaded file '%1'.</source> @@ -37554,7 +37554,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Installation to sysroot failed, continuing anyway.</source> - <translatorcomment>dourouc&nbsp;: garder sysroot&nbsp;? ça a peut-être un sens dans maemo</translatorcomment> + <translatorcomment>dourouc : garder sysroot ? ça a peut-être un sens dans maemo</translatorcomment> <translation type="obsolete">Échec lors de l'installation vers sysroot, l'installation continue néanmoins.</translation> </message> <message> @@ -37563,7 +37563,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Sysroot installation failed: Could not copy '%1' to '%2'. Continuing anyway.</source> - <translation type="obsolete">Échec de l'installation vers la racine système&nbsp;: impossible de copier '%1' vers "%2". L"installation continue néamoins.</translation> + <translation type="obsolete">Échec de l'installation vers la racine système : impossible de copier '%1' vers "%2". L"installation continue néamoins.</translation> </message> <message> <source>Connecting to device...</source> @@ -37617,7 +37617,7 @@ Raison&nbsp;: %2</translation> <name>QmakeProjectManager::Internal::MaemoDeployStepWidget</name> <message> <source><b>Deploy to device</b>: %1</source> - <translation type="obsolete"><b>Déployer sur le périphérique</b>&nbsp;: %1</translation> + <translation type="obsolete"><b>Déployer sur le périphérique</b> : %1</translation> </message> <message> <source>Could not create desktop file</source> @@ -37625,7 +37625,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Error creating desktop file: %1</source> - <translation type="obsolete">Erreur lors de la création d'un ficher desktop&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de la création d'un ficher desktop : %1</translation> </message> <message> <source>Choose Icon (will be scaled to 64x64 pixels, if necessary)</source> @@ -37653,7 +37653,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Error adding icon: %1</source> - <translation type="obsolete">Erreur lors de l'ajour de l'icône&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'ajour de l'icône : %1</translation> </message> </context> <context> @@ -37667,20 +37667,20 @@ Raison&nbsp;: %2</translation> <name>QmakeProjectManager::Internal::MaemoDeviceEnvReader</name> <message> <source>Could not connect to host: %1</source> - <translation type="obsolete">Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Error running remote process: %1</source> - <translation type="obsolete">Erreur lors de l'exécution du processus à distance&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'exécution du processus à distance : %1</translation> </message> <message> <source> Remote stderr was: '%1'</source> - <translation type="obsolete">Le stderr distant était&nbsp;: "%1"</translation> + <translation type="obsolete">Le stderr distant était : "%1"</translation> </message> </context> <context> @@ -37709,11 +37709,11 @@ Remote stderr was: '%1'</source> </message> <message> <source>Qemu finished with error: Exit code was %1.</source> - <translation type="obsolete">Qemu s'est terminé avec une erreur&nbsp;: le code d'erreur était %1.</translation> + <translation type="obsolete">Qemu s'est terminé avec une erreur : le code d'erreur était %1.</translation> </message> <message> <source>Qemu failed to start: %1</source> - <translation type="obsolete">Qemu n'a pas pu démarrer&nbsp;: %1</translation> + <translation type="obsolete">Qemu n'a pas pu démarrer : %1</translation> </message> <message> <source>Qemu crashed</source> @@ -37744,7 +37744,7 @@ Remote stderr was: '%1'</source> </message> <message> <source>Failure unmounting: %1</source> - <translation type="obsolete">Echec au démontage&nbsp;: %1</translation> + <translation type="obsolete">Echec au démontage : %1</translation> </message> <message> <source>Finished unmounting.</source> @@ -37753,7 +37753,7 @@ Remote stderr was: '%1'</source> <message> <source> stderr was: '%1'</source> - <translation type="obsolete">stderr était&nbsp;: "%1"</translation> + <translation type="obsolete">stderr était : "%1"</translation> </message> <message> <source>Setting up SFTP connection...</source> @@ -37761,7 +37761,7 @@ stderr was: '%1'</source> </message> <message> <source>Failed to establish SFTP connection: %1</source> - <translation type="obsolete">Echec de l'établissement d'une connexion SFTP&nbsp;: %1</translation> + <translation type="obsolete">Echec de l'établissement d'une connexion SFTP : %1</translation> </message> <message> <source>Uploading UTFS client...</source> @@ -37777,7 +37777,7 @@ stderr was: '%1'</source> </message> <message> <source>Error: Not enough free ports on device to fulfill all mount requests.</source> - <translation type="obsolete">Erreur&nbsp;: pas assez de ports libres sur le périphérique pour remplir toutes les requêtes. </translation> + <translation type="obsolete">Erreur : pas assez de ports libres sur le périphérique pour remplir toutes les requêtes. </translation> </message> <message> <source>Starting remote UTFS clients...</source> @@ -37789,7 +37789,7 @@ stderr was: '%1'</source> </message> <message> <source>Failure running UTFS client: %1</source> - <translation type="obsolete">Echec au lancement du client UTFS&nbsp;: %1</translation> + <translation type="obsolete">Echec au lancement du client UTFS : %1</translation> </message> <message> <source>Starting UTFS servers...</source> @@ -37799,15 +37799,15 @@ stderr was: '%1'</source> <source> stderr was: %1</source> <translation type="obsolete"> -stderr était&nbsp;: %1</translation> +stderr était : %1</translation> </message> <message> <source>Error running UTFS server: %1</source> - <translation type="obsolete">Erreur au lancement du serveur UTFS&nbsp;: %1</translation> + <translation type="obsolete">Erreur au lancement du serveur UTFS : %1</translation> </message> <message> <source>Timeout waiting for UTFS servers to connect.</source> - <translatorcomment>dourouc&nbsp;: traduire timeout par "dépassement du temps alloué" ou qqch du genre mais moins lourd&nbsp;? </translatorcomment> + <translatorcomment>dourouc : traduire timeout par "dépassement du temps alloué" ou qqch du genre mais moins lourd ? </translatorcomment> <translation type="obsolete">Temps limite dépassé lors de l' attente des serveurs UTF pour la connexion.</translation> </message> </context> @@ -37849,11 +37849,11 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Could not connect to host: %1</source> - <translation type="obsolete">Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source>Connection failed: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> <message> <source>Killing remote process(es)...</source> @@ -37861,15 +37861,15 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Initial cleanup failed: %1</source> - <translation type="obsolete">Échec du nettoyage initial&nbsp;: %1</translation> + <translation type="obsolete">Échec du nettoyage initial : %1</translation> </message> <message> <source>Error running remote process: %1</source> - <translation type="obsolete">Erreur lors de l'exécution du processus à distance&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'exécution du processus à distance : %1</translation> </message> <message> <source>Cannot run: No remote executable set.</source> - <translation type="obsolete">Impossible d'exécuter&nbsp;: aucun exécutable n'est spécifié.</translation> + <translation type="obsolete">Impossible d'exécuter : aucun exécutable n'est spécifié.</translation> </message> <message> <source>The device does not have enough free ports for this run configuration.</source> @@ -37877,15 +37877,15 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Cannot run: No device configuration set.</source> - <translation type="obsolete">Impossible de lancer&nbsp;: pas de configuration de périphérique définie. </translation> + <translation type="obsolete">Impossible de lancer : pas de configuration de périphérique définie. </translation> </message> <message> <source>Cannot run: Qemu was not running. It has now been started up for you, but it will take a bit of time until it is ready.</source> - <translation type="obsolete">Impossible de lancer&nbsp;: Qemu n'était pas lancé. Il a maintenant été lancé, mais il pourrait prendre un certain temps avant d'être prêt. </translation> + <translation type="obsolete">Impossible de lancer : Qemu n'était pas lancé. Il a maintenant été lancé, mais il pourrait prendre un certain temps avant d'être prêt. </translation> </message> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Mounting host directories...</source> @@ -37908,30 +37908,30 @@ stderr était&nbsp;: %1</translation> <name>QmakeProjectManager::Internal::MaemoTemplatesManager</name> <message> <source>Unable to create Debian templates: dh_make failed (%1)</source> - <translatorcomment>dourouc&nbsp;: idem précédent. </translatorcomment> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1)</translation> + <translatorcomment>dourouc : idem précédent. </translatorcomment> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1)</translation> </message> <message> <source>Unable to create debian templates: dh_make failed (%1)</source> - <translatorcomment>dourouc&nbsp;: pourquoi avoir gardé "dh_make failed"&nbsp;? un oubli&nbsp;? idem pour template. </translatorcomment> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1)</translation> + <translatorcomment>dourouc : pourquoi avoir gardé "dh_make failed" ? un oubli ? idem pour template. </translatorcomment> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1)</translation> </message> <message> <source>Packaging Error: Cannot open file '%1'.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas 'ouvrir le fichier "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas 'ouvrir le fichier "%1".</translation> </message> <message> <source>Packaging Error: Cannot write file '%1'.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas écrire le fichier "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas écrire le fichier "%1".</translation> </message> <message> <source>Debian changelog file '%1' has unexpected format.</source> - <translatorcomment>C'est peut être un peu lourd comme expression... dourouc&nbsp;: pas vraiment amha. </translatorcomment> + <translatorcomment>C'est peut être un peu lourd comme expression... dourouc : pas vraiment amha. </translatorcomment> <translation type="obsolete">Le fichier de journal des changements Debian "%1" a un format inattendu.</translation> </message> <message> <source>Error writing Debian changelog file '%1': %2</source> - <translation type="obsolete">Erreur pendant l'écriture du fichier dejournal des changements Debian "%1"&nbsp;: %2</translation> + <translation type="obsolete">Erreur pendant l'écriture du fichier dejournal des changements Debian "%1" : %2</translation> </message> <message> <source>Invalid icon data in Debian control file.</source> @@ -37947,11 +37947,11 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Error writing file '%1': %2</source> - <translation type="obsolete">Erreur lors de l'enregistrement du fichier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de l'enregistrement du fichier "%1" : %2</translation> </message> <message> <source>Error creating Maemo templates</source> - <translatorcomment>dourouc&nbsp;: template -> modèle&nbsp;? à voir avec le contexte, il me semble. pour un paquet, ça risque de l'être. </translatorcomment> + <translatorcomment>dourouc : template -> modèle ? à voir avec le contexte, il me semble. pour un paquet, ça risque de l'être. </translatorcomment> <translation type="obsolete">Erreur lors de la création de modèles Maemo</translation> </message> <message> @@ -37960,7 +37960,7 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Cannot open file '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir le fichier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier "%1" : %2</translation> </message> </context> <context> @@ -37968,7 +37968,7 @@ stderr était&nbsp;: %1</translation> <message> <source>Passphrase:</source> <translatorcomment>Terme anglais utilisé pour un mot de passe généralement long et plus sécurisé</translatorcomment> - <translation type="obsolete">Mot de passe&nbsp;:</translation> + <translation type="obsolete">Mot de passe :</translation> </message> <message> <source>Save passphrase</source> @@ -38013,7 +38013,7 @@ stderr était&nbsp;: %1</translation> <name>QmakeProjectManager::Internal::S60DeployConfigurationWidget</name> <message> <source>Device:</source> - <translation type="obsolete">Appareil mobile&nbsp;:</translation> + <translation type="obsolete">Appareil mobile :</translation> </message> <message> <source>Silent installation</source> @@ -38021,11 +38021,11 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Serial:</source> - <translation type="obsolete">Numéro de série&nbsp;: </translation> + <translation type="obsolete">Numéro de série : </translation> </message> <message> <source>WLAN:</source> - <translation type="obsolete">WLAN&nbsp;: </translation> + <translation type="obsolete">WLAN : </translation> </message> <message> <source>TRK</source> @@ -38037,11 +38037,11 @@ stderr était&nbsp;: %1</translation> </message> <message> <source><a href="qthelp://com.nokia.qtcreator/doc/creator-developing-symbian.html">What are the prerequisites?</a></source> - <translation type="obsolete"><a href="qthelp://com.nokia.qtcreator/doc/creator-developing-symbian.html">Quels sont les prérequis&nbsp;?</a></translation> + <translation type="obsolete"><a href="qthelp://com.nokia.qtcreator/doc/creator-developing-symbian.html">Quels sont les prérequis ?</a></translation> </message> <message> <source>Installation file:</source> - <translation type="obsolete">Fichier d'installation&nbsp;:</translation> + <translation type="obsolete">Fichier d'installation :</translation> </message> <message> <source>Silent installation is an installation mode that does not require user's intervention. In case it fails the non silent installation is launched.</source> @@ -38049,8 +38049,8 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Installation drive:</source> - <translatorcomment>dourouc&nbsp;: disque ou partition (ou point de montage) ou...&nbsp;? </translatorcomment> - <translation type="obsolete">Disque d'installation&nbsp;:</translation> + <translatorcomment>dourouc : disque ou partition (ou point de montage) ou... ? </translatorcomment> + <translation type="obsolete">Disque d'installation :</translation> </message> <message> <source>Device Agent</source> @@ -38058,7 +38058,7 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Serial port:</source> - <translation type="obsolete">Port série&nbsp;: </translation> + <translation type="obsolete">Port série : </translation> </message> <message> <source>Communication Channel</source> @@ -38066,7 +38066,7 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Address:</source> - <translation type="obsolete">Adresse&nbsp;:</translation> + <translation type="obsolete">Adresse :</translation> </message> <message> <source>Connecting</source> @@ -38086,7 +38086,7 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Qt version: </source> - <translation type="obsolete">Version de Qt&nbsp;: </translation> + <translation type="obsolete">Version de Qt : </translation> </message> <message> <source>Not installed on device</source> @@ -38094,19 +38094,19 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Qt version:</source> - <translation type="obsolete">Version de Qt&nbsp;:</translation> + <translation type="obsolete">Version de Qt :</translation> </message> <message> <source>Unrecognised Symbian version 0x%1</source> - <translation type="obsolete">Version de Symbian non reconnue&nbsp;: 0x%1</translation> + <translation type="obsolete">Version de Symbian non reconnue : 0x%1</translation> </message> <message> <source>Unrecognised S60 version 0x%1</source> - <translation type="obsolete">Version de S60 non reconnue&nbsp;: 0x%1</translation> + <translation type="obsolete">Version de S60 non reconnue : 0x%1</translation> </message> <message> <source>OS version:</source> - <translation type="obsolete">Version de l'OS&nbsp;: </translation> + <translation type="obsolete">Version de l'OS : </translation> </message> <message> <source>unknown</source> @@ -38114,15 +38114,15 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>ROM version:</source> - <translation type="obsolete">Version de la ROM&nbsp;: </translation> + <translation type="obsolete">Version de la ROM : </translation> </message> <message> <source>Release:</source> - <translation type="obsolete">Sortie&nbsp;: </translation> + <translation type="obsolete">Sortie : </translation> </message> <message> <source>CODA version: </source> - <translation type="obsolete">Version de CODA&nbsp;: </translation> + <translation type="obsolete">Version de CODA : </translation> </message> <message> <source>Error reading CODA version</source> @@ -38130,7 +38130,7 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Qt Mobility version: </source> - <translation type="obsolete">Version de Qt Mobility&nbsp;: </translation> + <translation type="obsolete">Version de Qt Mobility : </translation> </message> <message> <source>Error reading Qt Mobility version</source> @@ -38138,7 +38138,7 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Qt Quick components version: </source> - <translation type="obsolete">Version des composants Qt Quick&nbsp;: </translation> + <translation type="obsolete">Version des composants Qt Quick : </translation> </message> <message> <source>Not installed</source> @@ -38146,11 +38146,11 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>QML Viewer version: </source> - <translation type="obsolete">Version de QML Viewer&nbsp;:</translation> + <translation type="obsolete">Version de QML Viewer :</translation> </message> <message> <source>QtMobility version: </source> - <translation type="obsolete">Version de Qt Mobility&nbsp;: </translation> + <translation type="obsolete">Version de Qt Mobility : </translation> </message> <message> <source>Error reading QtMobility version</source> @@ -38158,11 +38158,11 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Screen size:</source> - <translation type="obsolete">Taille de l'écran&nbsp;: </translation> + <translation type="obsolete">Taille de l'écran : </translation> </message> <message> <source>Device on serial port:</source> - <translation type="obsolete">Appareil mobile sur port série&nbsp;:</translation> + <translation type="obsolete">Appareil mobile sur port série :</translation> </message> <message> <source>Queries the device for information</source> @@ -38177,11 +38177,11 @@ stderr était&nbsp;: %1</translation> <name>QmakeProjectManager::Internal::S60DeployStep</name> <message> <source>Unable to remove existing file '%1': %2</source> - <translation type="obsolete">Impossible de supprimer le fichier existant "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de supprimer le fichier existant "%1" : %2</translation> </message> <message> <source>Unable to rename file '%1' to '%2': %3</source> - <translation type="obsolete">Impossible de renommer le fichier "%1" en "%2"&nbsp;: %3</translation> + <translation type="obsolete">Impossible de renommer le fichier "%1" en "%2" : %3</translation> </message> <message> <source>Deploy</source> @@ -38202,8 +38202,8 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>'%1': Package file not found</source> - <translatorcomment>dourouc&nbsp;: du paquet ou de paquet&nbsp;? </translatorcomment> - <translation type="obsolete">"%1"&nbsp;: fichier de paquet non trouvé</translation> + <translatorcomment>dourouc : du paquet ou de paquet ? </translatorcomment> + <translation type="obsolete">"%1" : fichier de paquet non trouvé</translation> </message> <message> <source>There is no device plugged in.</source> @@ -38220,7 +38220,7 @@ stderr était&nbsp;: %1</translation> <message> <source>Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running.</source> - <translation type="obsolete">Impossible de connecter le téléphone sur le port '%1'&nbsp;: %2 + <translation type="obsolete">Impossible de connecter le téléphone sur le port '%1' : %2 Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</translation> </message> <message> @@ -38233,7 +38233,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not write to file %1 on device: %2</source> - <translation type="obsolete">Impossible d'écrire le fichier %1 sur l'appareil mobile&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'écrire le fichier %1 sur l'appareil mobile : %2</translation> </message> <message> <source>Could not close file %1 on device: %2. It will be closed when App TRK is closed.</source> @@ -38241,7 +38241,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not connect to App TRK on device: %1. Restarting App TRK might help.</source> - <translation type="obsolete">Impossible de se connecter à App TRK sur l'appareil mobile&nbsp;: %1. Redémarrer App TRK pourrait résoudre le problème.</translation> + <translation type="obsolete">Impossible de se connecter à App TRK sur l'appareil mobile : %1. Redémarrer App TRK pourrait résoudre le problème.</translation> </message> <message> <source>Copying "%1"...</source> @@ -38282,15 +38282,15 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not open serial device: %1</source> - <translation type="obsolete">Impossible d'ouvrir le périphérique en série&nbsp;: %1</translation> + <translation type="obsolete">Impossible d'ouvrir le périphérique en série : %1</translation> </message> <message> <source>Connecting to %1:%2...</source> - <translation type="obsolete">Connexion à %1&nbsp;: %2...</translation> + <translation type="obsolete">Connexion à %1 : %2...</translation> </message> <message> <source>Error: %1</source> - <translation type="obsolete">Erreur&nbsp;: %1</translation> + <translation type="obsolete">Erreur : %1</translation> </message> <message> <source>Installing package "%1" on drive %2:...</source> @@ -38310,15 +38310,15 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not open remote file: %1</source> - <translation type="obsolete">Impossible d'ouvrir le fichier distant&nbsp;: %1</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier distant : %1</translation> </message> <message> <source>Internal error: No filehandle obtained</source> - <translation type="obsolete">Erreur interne&nbsp;: aucun gestionnaire de fichier obtenu</translation> + <translation type="obsolete">Erreur interne : aucun gestionnaire de fichier obtenu</translation> </message> <message> <source>Could not open local file %1: %2</source> - <translation type="obsolete">Impossible d'ouvrir le fichier local %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier local %1 : %2</translation> </message> <message> <source>Installation has finished</source> @@ -38326,11 +38326,11 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Installation failed: %1; see %2 for descriptions of the error codes</source> - <translation type="obsolete">L'installation a échoué&nbsp;: %1, voir %2 pour les descriptions des codes d'erreur</translation> + <translation type="obsolete">L'installation a échoué : %1, voir %2 pour les descriptions des codes d'erreur</translation> </message> <message> <source>Failed to close the remote file: %1</source> - <translation type="obsolete">Échec de la fermeture du fichier distant&nbsp;: %1</translation> + <translation type="obsolete">Échec de la fermeture du fichier distant : %1</translation> </message> <message> <source>Installation</source> @@ -38338,7 +38338,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not install from package %1 on device: %2</source> - <translation type="obsolete">Impossible d'installer à partir du package %1 sur l'appareil mobile&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'installer à partir du package %1 sur l'appareil mobile : %2</translation> </message> <message> <source>Deployment has been cancelled.</source> @@ -38350,7 +38350,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Copy progress: %1%</source> - <translation type="obsolete">Copie en cours&nbsp;: %1 %</translation> + <translation type="obsolete">Copie en cours : %1 %</translation> </message> </context> <context> @@ -38380,13 +38380,13 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ <message> <source>Running command: %1 </source> - <translation type="obsolete">Exécute la commande&nbsp;: %1 + <translation type="obsolete">Exécute la commande : %1 </translation> </message> <message> <source>Recipe %1 failed with exit code %2.</source> <extracomment>%1 is the SBSv2 build recipe name, %2 the return code of the failed command</extracomment> - <translatorcomment>je vois vraiment pas ce que recipe (recette) viens faire ici... dourouc&nbsp;: certains parlent bien de spells, donc bon... une recette, c'ets une liste d'instructions à suivre, ça peut se comprendre mais pas vraiment se traduire tel quel... </translatorcomment> + <translatorcomment>je vois vraiment pas ce que recipe (recette) viens faire ici... dourouc : certains parlent bien de spells, donc bon... une recette, c'ets une liste d'instructions à suivre, ça peut se comprendre mais pas vraiment se traduire tel quel... </translatorcomment> <translation type="obsolete">Échec de %1 avec comme code de retour %2.</translation> </message> </context> @@ -38736,7 +38736,7 @@ Requiert <b>Qt 4.7.0</b> ou plus récent.</translation> <name>TaskList::TaskListPlugin</name> <message> <source>Cannot open task file %1: %2</source> - <translation>Impossible d'ouvrir le fichier de tâche %1&nbsp;: %2</translation> + <translation>Impossible d'ouvrir le fichier de tâche %1 : %2</translation> </message> <message> <source>My Tasks</source> @@ -38886,7 +38886,7 @@ Veuillez vérifier les droits d'accès du répertoire.</translation> <name>TextEditor::Internal::PlainTextEditorFactory</name> <message> <source>A highlight definition was not found for this file. Would you like to try to find one?</source> - <translation>Aucune définition de coloration syntaxique trouvée pour ce fichier. Voulez vous essayer d'en chercher une&nbsp;?</translation> + <translation>Aucune définition de coloration syntaxique trouvée pour ce fichier. Voulez vous essayer d'en chercher une ?</translation> </message> <message> <source>Show highlighter options...</source> @@ -38905,7 +38905,7 @@ Veuillez vérifier les droits d'accès du répertoire.</translation> </message> <message> <source>Branch:</source> - <translation>Branche&nbsp;:</translation> + <translation>Branche :</translation> </message> <message> <source>Perform a local commit in a bound branch. @@ -38923,15 +38923,15 @@ Les commits locaux ne sont pas transmis à la branche principale avant qu'u </message> <message> <source>Author:</source> - <translation>Auteur&nbsp;:</translation> + <translation>Auteur :</translation> </message> <message> <source>Email:</source> - <translation>Email&nbsp;:</translation> + <translation>Email :</translation> </message> <message> <source>Fixed bugs:</source> - <translation>Bogues fixés&nbsp;: </translation> + <translation>Bogues fixés : </translation> </message> <message> <source>Perform a local commit in a bound branch. @@ -39002,7 +39002,7 @@ The new branch will depend on the availability of the source branch for all oper </message> <message> <source>Revision:</source> - <translation>Révision&nbsp;:</translation> + <translation>Révision :</translation> </message> <message> <source>By default, branch will fail if the target directory exists, but does not already have a control directory. @@ -39045,7 +39045,7 @@ La nouvelle branche dépendra de la disponibilité de la branche source pour tou </message> <message> <source>Command:</source> - <translation>Commande&nbsp;:</translation> + <translation>Commande :</translation> </message> <message> <source>User</source> @@ -39057,7 +39057,7 @@ La nouvelle branche dépendra de la disponibilité de la branche source pour tou </message> <message> <source>Default username:</source> - <translation>Nom d'utilisateur par défaut&nbsp;:</translation> + <translation>Nom d'utilisateur par défaut :</translation> </message> <message> <source>Email to use by default on commit.</source> @@ -39065,7 +39065,7 @@ La nouvelle branche dépendra de la disponibilité de la branche source pour tou </message> <message> <source>Default email:</source> - <translation>Email par défaut&nbsp;:</translation> + <translation>Email par défaut :</translation> </message> <message> <source>Miscellaneous</source> @@ -39073,7 +39073,7 @@ La nouvelle branche dépendra de la disponibilité de la branche source pour tou </message> <message> <source>Log count:</source> - <translation>Nombre d'entrées de log&nbsp;:</translation> + <translation>Nombre d'entrées de log :</translation> </message> <message> <source>The number of recent commit logs to show, choose 0 to see all enteries</source> @@ -39081,7 +39081,7 @@ La nouvelle branche dépendra de la disponibilité de la branche source pour tou </message> <message> <source>Timeout:</source> - <translation>Timeout&nbsp;:</translation> + <translation>Timeout :</translation> </message> <message> <source>s</source> @@ -39116,7 +39116,7 @@ La nouvelle branche dépendra de la disponibilité de la branche source pour tou </message> <message> <source>Local filesystem:</source> - <translation>Système local de fichier&nbsp;:</translation> + <translation>Système local de fichier :</translation> </message> <message> <source>for example https://[user[:pass]@]host[:port]/[path]</source> @@ -39124,7 +39124,7 @@ La nouvelle branche dépendra de la disponibilité de la branche source pour tou </message> <message> <source>Specify URL:</source> - <translation>Spécifier l'URL&nbsp;: </translation> + <translation>Spécifier l'URL : </translation> </message> <message> <source>Options</source> @@ -39163,7 +39163,7 @@ Ce drapeau autorisera le push à procéder</translation> </message> <message> <source>Revision:</source> - <translation>Révision&nbsp;:</translation> + <translation>Révision :</translation> </message> <message> <source>Perform a local pull in a bound branch. @@ -39218,11 +39218,11 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Specify a revision other than the default?</source> - <translation>Spécifier une revision différente de celle par défaut&nbsp;?</translation> + <translation>Spécifier une revision différente de celle par défaut ?</translation> </message> <message> <source>Revision:</source> - <translation>Révision&nbsp;:</translation> + <translation>Révision :</translation> </message> </context> <context> @@ -39257,19 +39257,19 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Description:</source> - <translation>Description&nbsp;:</translation> + <translation>Description :</translation> </message> <message> <source>Executable:</source> - <translation>Exécutable&nbsp;: </translation> + <translation>Exécutable : </translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source><html><head/><body> @@ -39278,11 +39278,11 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </source> <translation><html><head/><body> <p>Que faire avec la sortie standard de l'exécutable. -<ul><li>Ignorer&nbsp;: ne rien faire avec ; </li><li>Afficher dans le panneau&nbsp;: afficher le dans le panneau général de sortie ; </li><li>Remplacer la sélection&nbsp;: remplacer la sélection courante dans le document courant avec celui-ci.</li></ul></p></body></html></translation> +<ul><li>Ignorer : ne rien faire avec ; </li><li>Afficher dans le panneau : afficher le dans le panneau général de sortie ; </li><li>Remplacer la sélection : remplacer la sélection courante dans le document courant avec celui-ci.</li></ul></p></body></html></translation> </message> <message> <source>Output:</source> - <translation>Sortie&nbsp;: </translation> + <translation>Sortie : </translation> </message> <message> <source>Ignore</source> @@ -39305,14 +39305,14 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </ul></body></html></source> <translation><html><head><body> <p >Que faire avec la sortie standard de l'exécutable.</p> -<ul><li>Ignorer&nbsp;: ne rien faire avec ; </li> -<li>Afficher dans le panneau&nbsp;: afficher le dans le panneau général de sortie ; </li> -<li>Remplacer la sélection&nbsp;: remplacer la sélection courante dans le document courant avec celui-ci.</li> +<ul><li>Ignorer : ne rien faire avec ; </li> +<li>Afficher dans le panneau : afficher le dans le panneau général de sortie ; </li> +<li>Remplacer la sélection : remplacer la sélection courante dans le document courant avec celui-ci.</li> </ul></body></html></translation> </message> <message> <source>Error output:</source> - <translation>Sortie d'erreur&nbsp;: </translation> + <translation>Sortie d'erreur : </translation> </message> <message> <source>Text to pass to the executable via standard input. Leave empty if the executable should not receive any input.</source> @@ -39320,7 +39320,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Input:</source> - <translation>Entrée&nbsp;: </translation> + <translation>Entrée : </translation> </message> <message> <source>If the tool modifies the current document, set this flag to ensure that the document is saved before running the tool and is reloaded after the tool finished.</source> @@ -39347,7 +39347,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Value:</source> - <translation type="obsolete">Valeur&nbsp;: </translation> + <translation type="obsolete">Valeur : </translation> </message> <message> <source>Type</source> @@ -39367,23 +39367,23 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Start range:</source> - <translation type="obsolete">Début de l'intervalle&nbsp;: </translation> + <translation type="obsolete">Début de l'intervalle : </translation> </message> <message> <source>End range:</source> - <translation type="obsolete">Fin de l'intervalle&nbsp;: </translation> + <translation type="obsolete">Fin de l'intervalle : </translation> </message> <message> <source>Priority:</source> - <translation type="obsolete">Priorité&nbsp;: </translation> + <translation type="obsolete">Priorité : </translation> </message> <message> <source><i>Note: Wide range values might impact on Qt Creator's performance when opening files.</i></source> - <translation type="obsolete"><i>Note&nbsp;: de grands intervalles pourraient avoir un impact sur les performances de Qt Creator à l'ouverture des fichiers. </i></translation> + <translation type="obsolete"><i>Note : de grands intervalles pourraient avoir un impact sur les performances de Qt Creator à l'ouverture des fichiers. </i></translation> </message> <message> <source><i>Note: Wide range values might impact Qt Creator's performance when opening files.</i></source> - <translation type="obsolete"><i>Note&nbsp;: de grands intervalles pourraient avoir un impact sur les performances de Qt Creator à l'ouverture des fichiers. </i></translation> + <translation type="obsolete"><i>Note : de grands intervalles pourraient avoir un impact sur les performances de Qt Creator à l'ouverture des fichiers. </i></translation> </message> </context> <context> @@ -39410,7 +39410,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Patterns:</source> - <translation type="obsolete">Motifs&nbsp;: </translation> + <translation type="obsolete">Motifs : </translation> </message> <message> <source>Magic Header</source> @@ -39472,15 +39472,15 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> <name>Debugger::Internal::BreakCondition</name> <message> <source>&Condition:</source> - <translation type="obsolete">&Condition&nbsp;: </translation> + <translation type="obsolete">&Condition : </translation> </message> <message> <source>&Ignore count:</source> - <translation type="obsolete">Nombre de passages à &ignorer&nbsp;:</translation> + <translation type="obsolete">Nombre de passages à &ignorer :</translation> </message> <message> <source>&Thread specification:</source> - <translation type="obsolete">Spécification de &thread&nbsp;:</translation> + <translation type="obsolete">Spécification de &thread :</translation> </message> </context> <context> @@ -39502,23 +39502,23 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>&Host:</source> - <translation type="obsolete">&Hôte&nbsp;: </translation> + <translation type="obsolete">&Hôte : </translation> </message> <message> <source>&Username:</source> - <translation type="obsolete">&Utilisateur&nbsp;:</translation> + <translation type="obsolete">&Utilisateur :</translation> </message> <message> <source>&Password:</source> - <translation type="obsolete">Mot de &passe&nbsp;:</translation> + <translation type="obsolete">Mot de &passe :</translation> </message> <message> <source>&Engine path:</source> - <translation type="obsolete">Chemin du mot&eur&nbsp;: </translation> + <translation type="obsolete">Chemin du mot&eur : </translation> </message> <message> <source>&Inferior path:</source> - <translation type="obsolete">Chemin &inférieur&nbsp;: </translation> + <translation type="obsolete">Chemin &inférieur : </translation> </message> </context> <context> @@ -39553,7 +39553,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Description:</source> - <translation>Description&nbsp;:</translation> + <translation>Description :</translation> </message> </context> <context> @@ -39564,11 +39564,11 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>Description:</source> - <translation>Description&nbsp;:</translation> + <translation>Description :</translation> </message> </context> <context> @@ -39579,11 +39579,11 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Backtrace frame count:</source> - <translation type="obsolete">Backtrace le nombre de frame&nbsp;: </translation> + <translation type="obsolete">Backtrace le nombre de frame : </translation> </message> <message> <source>Suppressions:</source> - <translation type="obsolete">Suppressions&nbsp;: </translation> + <translation type="obsolete">Suppressions : </translation> </message> <message> <source>Add</source> @@ -39606,11 +39606,11 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Suppression File:</source> - <translation type="obsolete">Fichier de suppression&nbsp;: </translation> + <translation type="obsolete">Fichier de suppression : </translation> </message> <message> <source>Suppression:</source> - <translation type="obsolete">Suppression&nbsp;: </translation> + <translation type="obsolete">Suppression : </translation> </message> </context> <context> @@ -39621,7 +39621,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Available Wizards:</source> - <translation>Assistants disponibles&nbsp;: </translation> + <translation>Assistants disponibles : </translation> </message> <message> <source>Start Wizard</source> @@ -39655,7 +39655,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>QML Dump:</source> - <translation type="obsolete">Dump QML&nbsp;: </translation> + <translation type="obsolete">Dump QML : </translation> </message> <message> <source>A modified version of qmlviewer with support for QML/JS debugging.</source> @@ -39663,7 +39663,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>QML Observer:</source> - <translation type="obsolete">Observateur QML&nbsp;:</translation> + <translation type="obsolete">Observateur QML :</translation> </message> <message> <source>Build</source> @@ -39671,7 +39671,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>QML Debugging Library:</source> - <translation type="obsolete">Bibliothèque de débogage QML&nbsp;: </translation> + <translation type="obsolete">Bibliothèque de débogage QML : </translation> </message> <message> <source>Show compiler output of last build.</source> @@ -39695,7 +39695,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>GDB Helper:</source> - <translation type="obsolete">Assistant GDB&nbsp;:</translation> + <translation type="obsolete">Assistant GDB :</translation> </message> </context> <context> @@ -39706,19 +39706,19 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>&Configuration:</source> - <translation type="obsolete">&Configuration&nbsp;:</translation> + <translation type="obsolete">&Configuration :</translation> </message> <message> <source>&Name:</source> - <translation type="obsolete">&Nom&nbsp;:</translation> + <translation type="obsolete">&Nom :</translation> </message> <message> <source>Device type:</source> - <translation type="obsolete">Type de périphérique&nbsp;:</translation> + <translation type="obsolete">Type de périphérique :</translation> </message> <message> <source>Authentication type:</source> - <translation type="obsolete">Type d'identification&nbsp;:</translation> + <translation type="obsolete">Type d'identification :</translation> </message> <message> <source>Password</source> @@ -39731,7 +39731,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>&Host name:</source> - <translation type="obsolete">Nom de l'&hôte&nbsp;:</translation> + <translation type="obsolete">Nom de l'&hôte :</translation> </message> <message> <source>IP or host name of the device</source> @@ -39739,15 +39739,15 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>&SSH port:</source> - <translation type="obsolete">Port &SSH&nbsp;: </translation> + <translation type="obsolete">Port &SSH : </translation> </message> <message> <source>Free ports:</source> - <translation type="obsolete">Ports libres&nbsp;: </translation> + <translation type="obsolete">Ports libres : </translation> </message> <message> <source>You can enter lists and ranges like this: 1024,1026-1028,1030</source> - <translation type="obsolete">Vous pouvez entrer des listes et des intervalles comme ceci&nbsp;: 1024,1026-1028,1030</translation> + <translation type="obsolete">Vous pouvez entrer des listes et des intervalles comme ceci : 1024,1026-1028,1030</translation> </message> <message> <source>TextLabel</source> @@ -39756,7 +39756,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Connection time&out:</source> - <translation type="obsolete">Délai avant déconnexion de la c&onnexion&nbsp;:</translation> + <translation type="obsolete">Délai avant déconnexion de la c&onnexion :</translation> </message> <message> <source>s</source> @@ -39764,11 +39764,11 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>&Username:</source> - <translation type="obsolete">&Utilisateur&nbsp;:</translation> + <translation type="obsolete">&Utilisateur :</translation> </message> <message> <source>&Password:</source> - <translation type="obsolete">Mot de &passe&nbsp;:</translation> + <translation type="obsolete">Mot de &passe :</translation> </message> <message> <source>Show password</source> @@ -39776,7 +39776,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Private key file:</source> - <translation type="obsolete">Fichier de clé privée&nbsp;:</translation> + <translation type="obsolete">Fichier de clé privée :</translation> </message> <message> <source>Set as Default</source> @@ -39784,7 +39784,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>OS type:</source> - <translation type="obsolete">Type d'OS&nbsp;: </translation> + <translation type="obsolete">Type d'OS : </translation> </message> <message> <source>&Add</source> @@ -39847,7 +39847,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Directory:</source> - <translation type="obsolete">Répertoire&nbsp;:</translation> + <translation type="obsolete">Répertoire :</translation> </message> <message> <source>Create Keys</source> @@ -39862,11 +39862,11 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Device address:</source> - <translation type="obsolete">Adresse du périphérique&nbsp;: </translation> + <translation type="obsolete">Adresse du périphérique : </translation> </message> <message> <source>Password:</source> - <translation type="obsolete">Mot de passe&nbsp;:</translation> + <translation type="obsolete">Mot de passe :</translation> </message> <message> <source>Deploy Key</source> @@ -39881,7 +39881,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> <li>In "%%%maddev%%%", press "Developer Password" and enter it in the field below.</li> <li>Click "Deploy Key"</li> </source> - <translation type="obsolete">Pour deployer la clé publique sur votre periphérique, merci d'exécuter les étapes suivantes&nbsp;: + <translation type="obsolete">Pour deployer la clé publique sur votre periphérique, merci d'exécuter les étapes suivantes : <ul> <li>Connectez le periphérique sur votre ordinateur (à moins que vous comptiez le connecté par WLAN).</li> <li>Sur le periphérique, démarrez l'application "%%%maddev%%%".</li> @@ -39898,7 +39898,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Has a passwordless (key-based) login already been set up for this device?</source> - <translation type="obsolete">Posséde déjà un de mot de passe (basé sur des clés) de connexion pour cet appareil&nbsp;?</translation> + <translation type="obsolete">Posséde déjà un de mot de passe (basé sur des clés) de connexion pour cet appareil ?</translation> </message> <message> <source>Yes, and the private key is located at</source> @@ -39917,7 +39917,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Do wou want to re-use an existing pair of keys or should a new one be created?</source> - <translation type="obsolete">Voulez-vous réutiliser une pair de clés existante ou en créer une nouvelle&nbsp;?</translation> + <translation type="obsolete">Voulez-vous réutiliser une pair de clés existante ou en créer une nouvelle ?</translation> </message> <message> <source>Re-use existing keys</source> @@ -39925,11 +39925,11 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>File containing the public key:</source> - <translation type="obsolete">Fichier contenant la clé publique&nbsp;: </translation> + <translation type="obsolete">Fichier contenant la clé publique : </translation> </message> <message> <source>File containing the private key:</source> - <translation type="obsolete">Fichier contenant la clé privée&nbsp;: </translation> + <translation type="obsolete">Fichier contenant la clé privée : </translation> </message> <message> <source>Create new keys</source> @@ -39937,7 +39937,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Do you want to re-use an existing pair of keys or should a new one be created?</source> - <translation type="obsolete">Voulez-vous réutiliser une paire de clés existante ou en créer une nouvelle&nbsp;?</translation> + <translation type="obsolete">Voulez-vous réutiliser une paire de clés existante ou en créer une nouvelle ?</translation> </message> </context> <context> @@ -39948,11 +39948,11 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>The name to identify this configuration:</source> - <translation type="obsolete">Le nom pour identifier cette configuration&nbsp;: </translation> + <translation type="obsolete">Le nom pour identifier cette configuration : </translation> </message> <message> <source>The system running on the device:</source> - <translation type="obsolete">Le système exécuté sur ce périphérique&nbsp;: </translation> + <translation type="obsolete">Le système exécuté sur ce périphérique : </translation> </message> <message> <source>Maemo 5 (Fremantle)</source> @@ -39968,7 +39968,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>The kind of device:</source> - <translation type="obsolete">Le type de périphérique&nbsp;: </translation> + <translation type="obsolete">Le type de périphérique : </translation> </message> <message> <source>Emulator (Qemu)</source> @@ -39980,7 +39980,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>The device's host name or IP address:</source> - <translation type="obsolete">Le nom d'hôte du périphérique ou son adresse IP&nbsp;: </translation> + <translation type="obsolete">Le nom d'hôte du périphérique ou son adresse IP : </translation> </message> <message> <source>Emulator</source> @@ -39988,7 +39988,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>The SSH server port:</source> - <translation type="obsolete">Port du serveur SSH&nbsp;:</translation> + <translation type="obsolete">Port du serveur SSH :</translation> </message> </context> <context> @@ -39999,7 +39999,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Choose build configuration:</source> - <translation type="obsolete">Choisir la configuration de compilation&nbsp;:</translation> + <translation type="obsolete">Choisir la configuration de compilation :</translation> </message> <message> <source>Only create source package, do not upload</source> @@ -40041,7 +40041,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Garage account name:</source> - <translation type="obsolete">Nom de compte Garage&nbsp;: </translation> + <translation type="obsolete">Nom de compte Garage : </translation> </message> <message> <source><a href="https://garage.maemo.org/account/register.php">Get an account</a></source> @@ -40053,15 +40053,15 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Private key file:</source> - <translation type="obsolete">Fichier de clé privée&nbsp;:</translation> + <translation type="obsolete">Fichier de clé privée :</translation> </message> <message> <source>Server address:</source> - <translation type="obsolete">Adresse du serveur&nbsp;: </translation> + <translation type="obsolete">Adresse du serveur : </translation> </message> <message> <source>Target directory on server:</source> - <translation type="obsolete">Répertoire cible sur le serveur&nbsp;: </translation> + <translation type="obsolete">Répertoire cible sur le serveur : </translation> </message> </context> <context> @@ -40095,7 +40095,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>&Filter by process name:</source> - <translation type="obsolete">&Filtrer par nom de processus&nbsp;: </translation> + <translation type="obsolete">&Filtrer par nom de processus : </translation> </message> <message> <source>&Update List</source> @@ -40114,7 +40114,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>ARM &version:</source> - <translation type="obsolete">&Version ARM&nbsp;: </translation> + <translation type="obsolete">&Version ARM : </translation> </message> <message> <source>Version 5</source> @@ -40126,7 +40126,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>&Compiler path:</source> - <translation type="obsolete">Chemin du &compilateur&nbsp;: </translation> + <translation type="obsolete">Chemin du &compilateur : </translation> </message> <message> <source>Environment Variables</source> @@ -40148,7 +40148,7 @@ Les pulls locaux ne sont pas appliqués à la branche maître. </translation> </message> <message> <source>Choose a build configuration:</source> - <translation type="obsolete">Choisir une configuration de compilation&nbsp;:</translation> + <translation type="obsolete">Choisir une configuration de compilation :</translation> </message> <message> <source>Only Qt versions above 4.6.3 are made available in this wizard. @@ -40158,7 +40158,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Choose a tool chain:</source> - <translation type="obsolete">Choisir une chaîne de compilation&nbsp;:</translation> + <translation type="obsolete">Choisir une chaîne de compilation :</translation> </message> </context> <context> @@ -40176,11 +40176,11 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Global vendor name:</source> - <translation type="obsolete">Nom du vendeur global&nbsp;: </translation> + <translation type="obsolete">Nom du vendeur global : </translation> </message> <message> <source>Qt version used in builds:</source> - <translation type="obsolete">Version de Qt utilisée pour la compilation&nbsp;: </translation> + <translation type="obsolete">Version de Qt utilisée pour la compilation : </translation> </message> <message> <source>Current Qt Version</source> @@ -40188,7 +40188,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Application UID:</source> - <translation type="obsolete">UID de l'application&nbsp;: </translation> + <translation type="obsolete">UID de l'application : </translation> </message> <message> <source>Current UID3</source> @@ -40196,7 +40196,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Capabilities:</source> - <translation type="obsolete">Capacités&nbsp;: </translation> + <translation type="obsolete">Capacités : </translation> </message> <message> <source>Current set of capabilities</source> @@ -40208,7 +40208,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Localised vendor names:</source> - <translation type="obsolete">Noms de vendeur localisés&nbsp;: </translation> + <translation type="obsolete">Noms de vendeur localisés : </translation> </message> <message> <source>Localised Vendor Names</source> @@ -40216,7 +40216,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Display name:</source> - <translation type="obsolete">Nom d'affichage&nbsp;:</translation> + <translation type="obsolete">Nom d'affichage :</translation> </message> </context> <context> @@ -40227,34 +40227,34 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Compiler path:</source> - <translation type="obsolete">Chemin du compilateur&nbsp;: </translation> + <translation type="obsolete">Chemin du compilateur : </translation> </message> <message> <source>System include path:</source> - <translation type="obsolete">Chemin des includes système&nbsp;: </translation> + <translation type="obsolete">Chemin des includes système : </translation> </message> <message> <source>System library path:</source> - <translation type="obsolete">Chemins des bibliothèques système&nbsp;: </translation> + <translation type="obsolete">Chemins des bibliothèques système : </translation> </message> </context> <context> <name>QmakeProjectManager::Internal::QtVersionInfo</name> <message> <source>Version name:</source> - <translation type="obsolete">Nom de version&nbsp;:</translation> + <translation type="obsolete">Nom de version :</translation> </message> <message> <source>qmake location:</source> - <translation type="obsolete">Emplacement de QMake&nbsp;:</translation> + <translation type="obsolete">Emplacement de QMake :</translation> </message> <message> <source>S60 SDK:</source> - <translation type="obsolete">SDK S60&nbsp;:</translation> + <translation type="obsolete">SDK S60 :</translation> </message> <message> <source>SBS v2 directory:</source> - <translation type="obsolete">Répertoire SBS v2&nbsp;: </translation> + <translation type="obsolete">Répertoire SBS v2 : </translation> </message> </context> <context> @@ -40285,7 +40285,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Note: Unless you chose to load a URL, all files and directories that reside in the same directory as the main HTML file are deployed. You can modify the contents of the directory any time before deploying.</source> - <translation type="obsolete">Note&nbsp;: à moins de choisir de charger une URL, tous les fichiers et répertoires qui résident dans le même répertoire que le fichier HTML principal sont déployés. Vous pouvez modifier le contenu du répertoire à n'importe quel moment avant le déploiement. </translation> + <translation type="obsolete">Note : à moins de choisir de charger une URL, tous les fichiers et répertoires qui résident dans le même répertoire que le fichier HTML principal sont déployés. Vous pouvez modifier le contenu du répertoire à n'importe quel moment avant le déploiement. </translation> </message> <message> <source>Touch optimized navigation</source> @@ -40308,7 +40308,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Orientation behavior:</source> - <translation type="obsolete">Comportement de l'orientation&nbsp;:</translation> + <translation type="obsolete">Comportement de l'orientation :</translation> </message> </context> <context> @@ -40319,11 +40319,11 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Application icon (64x64):</source> - <translation type="obsolete">Icône de l'application (64x64)&nbsp;:</translation> + <translation type="obsolete">Icône de l'application (64x64) :</translation> </message> <message> <source>Application icon (%%w%%x%%h%%):</source> - <translation type="obsolete">Icône de l'application (%%w%%x%%h%%)&nbsp;:</translation> + <translation type="obsolete">Icône de l'application (%%w%%x%%h%%) :</translation> </message> </context> <context> @@ -40334,11 +40334,11 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Application icon (.svg):</source> - <translation type="obsolete">Icône de l'application (.svg)&nbsp;:</translation> + <translation type="obsolete">Icône de l'application (.svg) :</translation> </message> <message> <source>Target UID3:</source> - <translation type="obsolete">Cible UID3&nbsp;:</translation> + <translation type="obsolete">Cible UID3 :</translation> </message> <message> <source>Enable network access</source> @@ -40364,7 +40364,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Ta&b size:</source> - <translation type="obsolete">Taille de &tabulation&nbsp;:</translation> + <translation type="obsolete">Taille de &tabulation :</translation> </message> <message> <source>Automatically determine based on the nearest indented line (previous line preferred over next line)</source> @@ -40376,7 +40376,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>&Indent size:</source> - <translation type="obsolete">Taille de l'in&dentation&nbsp;:</translation> + <translation type="obsolete">Taille de l'in&dentation :</translation> </message> <message> <source>Enable automatic &indentation</source> @@ -40392,7 +40392,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Block indentation style:</source> - <translation type="obsolete">Style d'indentation de bloc&nbsp;: </translation> + <translation type="obsolete">Style d'indentation de bloc : </translation> </message> <message> <source><html><head/><body> @@ -40438,7 +40438,7 @@ void foo() <translation type="obsolete"><html><head/><body> Contrôle le style d'indentation des blocs entre accolades. <ul> -<li>Accolades exclusives&nbsp;: elles ne sont pas indentées. +<li>Accolades exclusives : elles ne sont pas indentées. <pre> void foo() { @@ -40450,7 +40450,7 @@ void foo() </pre> </li> -<li>Accolades inclusives&nbsp;: elles sont indentées. Le contenu du bloc est au même niveau que les accolades. +<li>Accolades inclusives : elles sont indentées. Le contenu du bloc est au même niveau que les accolades. <pre> void foo() { @@ -40462,7 +40462,7 @@ void foo() </pre> </li> -<li>Style GNU&nbsp;: indenter les accolades de blocs dans des déclarations. Le contenu est indenté deux fois. +<li>Style GNU : indenter les accolades de blocs dans des déclarations. Le contenu est indenté deux fois. <pre> void foo() { @@ -40489,7 +40489,7 @@ void foo() </message> <message> <source>Tab key performs auto-indent:</source> - <translation type="obsolete">La touche tabulation active l'identation automatique&nbsp;:</translation> + <translation type="obsolete">La touche tabulation active l'identation automatique :</translation> </message> <message> <source>Never</source> @@ -40505,7 +40505,7 @@ void foo() </message> <message> <source>Align continuation lines:</source> - <translation type="obsolete">Aligner les lignes de continuation&nbsp;:</translation> + <translation type="obsolete">Aligner les lignes de continuation :</translation> </message> <message> <source><html><head/><body> @@ -40536,19 +40536,19 @@ Influences the indentation of continuation lines. <translation type="obsolete"><html><head/><body> Influence l'indentation des lignes de continuation. <ul> -<li>Pas du tout&nbsp;: ne pas aligner. Les lignes ne seront indentées jusqu'à la profondeur d'indentation logique. +<li>Pas du tout : ne pas aligner. Les lignes ne seront indentées jusqu'à la profondeur d'indentation logique. <pre> (tab)int i = foo(a, b (tab)c, d); </pre> </li> -<li>Avec espaces&nbsp;: toujours utiliser des espaces pour l'alignement, sans tenir compte des autres paramètres d'indentation. +<li>Avec espaces : toujours utiliser des espaces pour l'alignement, sans tenir compte des autres paramètres d'indentation. <pre> (tab)int i = foo(a, b (tab) c, d); </pre> </li> -<li>Avec indentation régulière&nbsp;: utiliser des tabulations et/ou des espaces pour l'alignement, en fonction de la configuration. +<li>Avec indentation régulière : utiliser des tabulations et/ou des espaces pour l'alignement, en fonction de la configuration. <pre> (tab)int i = foo(a, b (tab)(tab)(tab) c, d); @@ -40610,11 +40610,11 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Default encoding: </source> - <translation type="obsolete">Encodage par défaut&nbsp;:</translation> + <translation type="obsolete">Encodage par défaut :</translation> </message> <message> <source>UTF-8 BOM:</source> - <translation type="obsolete">UTF-8 BOM&nbsp;:</translation> + <translation type="obsolete">UTF-8 BOM :</translation> </message> <message> <source><html><head/><body> @@ -40625,10 +40625,10 @@ Influence l'indentation des lignes de continuation. <p>Note that UTF-8 BOMs are uncommon and treated incorrectly by some editors, so it usually makes little sense to add any.</p> <p>This setting does <b>not</b> influence the use of UTF-16 and UTF-32 BOMs.</p></body></html></source> <translation type="obsolete"><html><head/><body> -<p>Comment les éditeurs de textes devrait gérer les BOM UTF-8. Les options sont&nbsp;: </p> -<ul ><li><i>ajouter si l'encodage est UTF-8&nbsp;:</i> toujours ajouter un BOM à la sauvegarde d'un fichier en UTF-8 ; notez que ceci ne fonctionnera pas si l'encodage est <i>System</i>, puisque Qt Creator ne sait pas ce qu'il en est réellement ; </li> -<li><i>garder si déjà présent&nbsp;:</i> sauvegarder le fichier avec un BOM s'il en avait déjà un au chargement ; </li> -<li><i>toujours supprimer&nbsp;:</i> ne jamais écrire de BOM, parfois en supprimant l'existant.</li></ul> +<p>Comment les éditeurs de textes devrait gérer les BOM UTF-8. Les options sont : </p> +<ul ><li><i>ajouter si l'encodage est UTF-8 :</i> toujours ajouter un BOM à la sauvegarde d'un fichier en UTF-8 ; notez que ceci ne fonctionnera pas si l'encodage est <i>System</i>, puisque Qt Creator ne sait pas ce qu'il en est réellement ; </li> +<li><i>garder si déjà présent :</i> sauvegarder le fichier avec un BOM s'il en avait déjà un au chargement ; </li> +<li><i>toujours supprimer :</i> ne jamais écrire de BOM, parfois en supprimant l'existant.</li></ul> <p>Notez que les BOM UTF-8 ne sont pas courants et sont traités de manière incorrecte par certains éditeurs, cela n'a que rarement du sens que d'en ajouter un. </p> <p>Ce paramètre n'influence <b>pas</b> l'utilisation des BOM UTF-16 et UTF-32.</p></body></html></translation> </message> @@ -40663,7 +40663,7 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Backspace indentation:</source> - <translation type="obsolete">Indentation pour retour arrière&nbsp;:</translation> + <translation type="obsolete">Indentation pour retour arrière :</translation> </message> <message> <source><html><head/><body> @@ -40687,10 +40687,10 @@ Specifie comment retour arrière se comporte avec l'indentation. <li>Aucune: Aucune interaction. Comportement habituel de la touche retour arrière. </li> -<li>Suit l'indentation qui précède&nbsp;: dans des espaces de début de ligne, ramène le curseur au niveau d'indentation le plus proche utilisé dans les lignes précédentes. +<li>Suit l'indentation qui précède : dans des espaces de début de ligne, ramène le curseur au niveau d'indentation le plus proche utilisé dans les lignes précédentes. </li> -<li>Désindente&nbsp;: Si le caractère après le curseur est un espace, se comporte comme une tabulation arrière. +<li>Désindente : Si le caractère après le curseur est un espace, se comporte comme une tabulation arrière. </li> </ul></body></html> </translation> @@ -40720,7 +40720,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Group: </source> - <translation type="obsolete">Groupe&nbsp;:</translation> + <translation type="obsolete">Groupe :</translation> </message> <message> <source>Add</source> @@ -40751,25 +40751,25 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Valgrind executable:</source> - <translation type="obsolete">Exécutable Valgrind&nbsp;: </translation> + <translation type="obsolete">Exécutable Valgrind : </translation> </message> </context> <context> <name>QmlJS::TypeDescriptionReader</name> <message> <source>%1: %2</source> - <translation type="obsolete">%1&nbsp;: %2</translation> + <translation type="obsolete">%1 : %2</translation> </message> <message> <source>Errors while loading qmltypes from %1: %2</source> - <translation>Erreurs lors du chargement de qmltypes depuis %1&nbsp;: + <translation>Erreurs lors du chargement de qmltypes depuis %1 : %2</translation> </message> <message> <source>Warnings while loading qmltypes from %1: %2</source> - <translation>Avertissements lors du chargement de qmltypes depuis %1&nbsp;: + <translation>Avertissements lors du chargement de qmltypes depuis %1 : %2</translation> </message> <message> @@ -40975,7 +40975,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Protocol version mismatch: Expected %1, got %2</source> - <translation type="obsolete">Conflit de version de protocole&nbsp;: %1 attendue, %2 detectée</translation> + <translation type="obsolete">Conflit de version de protocole : %1 attendue, %2 detectée</translation> </message> <message> <source>Unknown error.</source> @@ -40991,11 +40991,11 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Error creating directory '%1': %2</source> - <translation type="obsolete">Erreur lors de la création du répertoire "%1"&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de la création du répertoire "%1" : %2</translation> </message> <message> <source>Could not open local file '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir le fichier local "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier local "%1" : %2</translation> </message> <message> <source>Remote directory could not be opened for reading.</source> @@ -41035,11 +41035,11 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Cannot append to remote file: Server does not support the file size attribute.</source> - <translation type="obsolete">Impossible d'ajouter à la fin du fichier distant&nbsp;: le serveur ne supporte pas l'attribut taille du fichier.</translation> + <translation type="obsolete">Impossible d'ajouter à la fin du fichier distant : le serveur ne supporte pas l'attribut taille du fichier.</translation> </message> <message> <source>Server could not start session: %1</source> - <translation type="obsolete">Le serveur n'a pas pu démarrer la session&nbsp;: %1</translation> + <translation type="obsolete">Le serveur n'a pas pu démarrer la session : %1</translation> </message> <message> <source>Server could not start session.</source> @@ -41047,7 +41047,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Error reading local file: %1</source> - <translation type="obsolete">Erreur lors de la lecture du fichier local&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de la lecture du fichier local : %1</translation> </message> </context> <context> @@ -41061,15 +41061,15 @@ Specifie comment retour arrière se comporte avec l'indentation. <name>Utils::Internal::SshConnectionPrivate</name> <message> <source>SSH Protocol error: %1</source> - <translation type="obsolete">Erreur dans le protocole SSH&nbsp;: %1</translation> + <translation type="obsolete">Erreur dans le protocole SSH : %1</translation> </message> <message> <source>Botan library exception: %1</source> - <translation type="obsolete">Exception dans la bibliothèque Botan&nbsp;: %1</translation> + <translation type="obsolete">Exception dans la bibliothèque Botan : %1</translation> </message> <message> <source>Invalid protocol version: Expected '2.0', got '%1'.</source> - <translation type="obsolete">Version du protocole invalide&nbsp;:'2.0' attendue, "%1" detectée.</translation> + <translation type="obsolete">Version du protocole invalide :'2.0' attendue, "%1" detectée.</translation> </message> <message> <source>Invalid server id '%1'.</source> @@ -41081,11 +41081,11 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Could not read private key file: %1</source> - <translation type="obsolete">Impossible de lire le fichier de la clé privée&nbsp;: %1</translation> + <translation type="obsolete">Impossible de lire le fichier de la clé privée : %1</translation> </message> <message> <source>Private key error: %1</source> - <translation type="obsolete">Erreur de clé privée&nbsp;: %1</translation> + <translation type="obsolete">Erreur de clé privée : %1</translation> </message> <message> <source>Password expired.</source> @@ -41105,7 +41105,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Server closed connection: %1</source> - <translation type="obsolete">Le serveur a fermé la connexion&nbsp;: %1</translation> + <translation type="obsolete">Le serveur a fermé la connexion : %1</translation> </message> <message> <source>Connection closed unexpectedly.</source> @@ -41121,7 +41121,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Private key file error: %1</source> - <translation type="obsolete">Erreur du fichier de clé privée&nbsp;: %1</translation> + <translation type="obsolete">Erreur du fichier de clé privée : %1</translation> </message> </context> <context> @@ -41175,19 +41175,19 @@ Specifie comment retour arrière se comporte avec l'indentation. <name>Valgrind::XmlProtocol</name> <message> <source>Function:</source> - <translation>Fonction&nbsp;:</translation> + <translation>Fonction :</translation> </message> <message> <source>Location:</source> - <translation>Emplacement&nbsp;:</translation> + <translation>Emplacement :</translation> </message> <message> <source>Instruction pointer:</source> - <translation>Pointeur d'instruction&nbsp;: </translation> + <translation>Pointeur d'instruction : </translation> </message> <message> <source>Object:</source> - <translation>Objet&nbsp;: </translation> + <translation>Objet : </translation> </message> </context> <context> @@ -41214,7 +41214,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>XmlProtocol version %1 not supported (supported version: 4)</source> - <translation>Version %1 de XmlProtocol non supportée (version supportée&nbsp;: 4)</translation> + <translation>Version %1 de XmlProtocol non supportée (version supportée : 4)</translation> </message> <message> <source>Valgrind tool "%1" not supported</source> @@ -41378,7 +41378,7 @@ Specifie comment retour arrière se comporte avec l'indentation. <name>Analyzer::Internal::AnalyzerRunConfigWidget</name> <message> <source>Analyzer settings:</source> - <translation>Réglages de l'Analyseur&nbsp;:</translation> + <translation>Réglages de l'Analyseur :</translation> </message> <message> <source>Analyzer Settings</source> @@ -41386,7 +41386,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Available settings: %1</source> - <translation type="obsolete">Options diponible&nbsp;: %1</translation> + <translation type="obsolete">Options diponible : %1</translation> </message> </context> <context> @@ -41631,11 +41631,11 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Do you want to commit the changes?</source> - <translation>Voulez vous envoyer les changements&nbsp;?</translation> + <translation>Voulez vous envoyer les changements ?</translation> </message> <message> <source>Message check failed. Do you want to proceed?</source> - <translation>Vérification du message échouée. Voulez-vous continuer&nbsp;?</translation> + <translation>Vérification du message échouée. Voulez-vous continuer ?</translation> </message> </context> <context> @@ -41669,7 +41669,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Clone URL:</source> - <translation>URL de clone&nbsp;:</translation> + <translation>URL de clone :</translation> </message> </context> <context> @@ -41722,11 +41722,11 @@ Specifie comment retour arrière se comporte avec l'indentation. <name>Core::Internal::ExternalTool</name> <message> <source>Could not open tool specification %1 for reading: %2</source> - <translation type="obsolete">Impossible d'ouvrir les spécificatrions d'outil %1 pour lecture&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir les spécificatrions d'outil %1 pour lecture : %2</translation> </message> <message> <source>Could not write tool specification %1: %2</source> - <translation type="obsolete">Impossible d'écrire les spécifications d'outil %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'écrire les spécifications d'outil %1 : %2</translation> </message> <message> <source>Creates qm translation files that can be used by an application from the translator's ts files</source> @@ -41804,7 +41804,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Error while parsing external tool %1: %2</source> - <translation>Erreur lors de l'analyse de l'outil externe %1&nbsp;: %2</translation> + <translation>Erreur lors de l'analyse de l'outil externe %1 : %2</translation> </message> </context> <context> @@ -41843,11 +41843,11 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Error while parsing external tool %1: %2</source> - <translation>Erreur lors du parsage de l'outil externe %1&nbsp;: %2</translation> + <translation>Erreur lors du parsage de l'outil externe %1 : %2</translation> </message> <message> <source>Error: External tool in %1 has duplicate id</source> - <translation>Erreur&nbsp;: outil externe dans %1 a un identifiant dupliqué</translation> + <translation>Erreur : outil externe dans %1 a un identifiant dupliqué</translation> </message> </context> <context> @@ -41874,7 +41874,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Value:</source> - <translation>Valeur&nbsp;: </translation> + <translation>Valeur : </translation> </message> <message> <source>Type</source> @@ -41894,19 +41894,19 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Start range:</source> - <translation>Début de l'intervalle&nbsp;: </translation> + <translation>Début de l'intervalle : </translation> </message> <message> <source>End range:</source> - <translation>Fin de l'intervalle&nbsp;: </translation> + <translation>Fin de l'intervalle : </translation> </message> <message> <source>Priority:</source> - <translation>Priorité&nbsp;: </translation> + <translation>Priorité : </translation> </message> <message> <source><i>Note: Wide range values might impact Qt Creator's performance when opening files.</i></source> - <translation><i>Note&nbsp;: de grands intervalles pourraient avoir un impact sur les performances de Qt Creator à l'ouverture des fichiers. </i></translation> + <translation><i>Note : de grands intervalles pourraient avoir un impact sur les performances de Qt Creator à l'ouverture des fichiers. </i></translation> </message> </context> <context> @@ -41994,8 +41994,8 @@ Specifie comment retour arrière se comporte avec l'indentation. <message> <source>Would you like to remove this file from the version control system (%1)? Note: This might remove the local file.</source> - <translation>Voulez-vous retirer ce fichier du système de gestion de versions (%1)&nbsp;? -Note&nbsp;: Ceci risque de supprimer le fichier du disque.</translation> + <translation>Voulez-vous retirer ce fichier du système de gestion de versions (%1) ? +Note : Ceci risque de supprimer le fichier du disque.</translation> </message> <message> <source>Add to Version Control</source> @@ -42007,7 +42007,7 @@ Note&nbsp;: Ceci risque de supprimer le fichier du disque.</translation> to version control (%2)?</source> <translation>Ajouter le fichier %1 -au gestionnaire de version (%2)&nbsp;?</translation> +au gestionnaire de version (%2) ?</translation> </message> <message> <source>Add the files @@ -42015,7 +42015,7 @@ au gestionnaire de version (%2)&nbsp;?</translation> to version control (%2)?</source> <translation>Ajouter les fichiers %1 -au gestionnaire de version (%2)&nbsp;?</translation> +au gestionnaire de version (%2) ?</translation> </message> <message> <source>Adding to Version Control Failed</source> @@ -42150,15 +42150,15 @@ au gestionnaire de version (%2)</translation> </message> <message> <source>&Condition:</source> - <translation>&Condition&nbsp;:</translation> + <translation>&Condition :</translation> </message> <message> <source>&Ignore count:</source> - <translation>Nombre de passages à &ignorer&nbsp;:</translation> + <translation>Nombre de passages à &ignorer :</translation> </message> <message> <source>&Thread specification:</source> - <translation>Spécification de &thread&nbsp;:</translation> + <translation>Spécification de &thread :</translation> </message> </context> <context> @@ -42177,34 +42177,34 @@ au gestionnaire de version (%2)</translation> </message> <message> <source>Load module:</source> - <translation type="obsolete">Charger le module&nbsp;:</translation> + <translation type="obsolete">Charger le module :</translation> </message> <message> <source>Unload module:</source> - <translation type="obsolete">Décharger le module&nbsp;: </translation> + <translation type="obsolete">Décharger le module : </translation> </message> <message> <source>Load Module:</source> - <translation type="obsolete">Charger le module&nbsp;: </translation> + <translation type="obsolete">Charger le module : </translation> </message> <message> <source>Unload Module:</source> - <translation type="obsolete">Décharger le module&nbsp;: </translation> + <translation type="obsolete">Décharger le module : </translation> </message> <message> <source>Output:</source> - <translation type="obsolete">Sortie&nbsp;: </translation> + <translation type="obsolete">Sortie : </translation> </message> </context> <context> <name>Debugger::Internal::StartRemoteCdbDialog</name> <message> <source><html><body><p>The remote CDB needs to load the matching Qt Creator CDB extension (<code>%1</code> or <code>%2</code>, respectively).</p><p>Copy it onto the remote machine and set the environment variable <code>%3</code> to point to its folder.</p><p>Launch the remote CDB as <code>%4 &lt;executable&gt;</code> to use TCP/IP as communication protocol.</p><p>Enter the connection parameters as:</p><pre>%5</pre></body></html></source> - <translation type="obsolete"><html><body><p>Le CDB distant doit charger l'extension correspondante de Qt Creator (<code>%1</code> ou <code>%2</code>, respectivement).</p><p>Copiez-la sur la machine distante et définissez la variable d'environnement <code>%3</code> pour qu'elle pointe sur son dossier.</p><p>Lancez le CDB distant comme <code>%4 &lt;executable&gt;</code> pour utiliser TCP/IP comme protocole de communication.</p><p>Entrez les paramètres de connexion comme ceci&nbsp;: </p><pre>%5</pre></body></html></translation> + <translation type="obsolete"><html><body><p>Le CDB distant doit charger l'extension correspondante de Qt Creator (<code>%1</code> ou <code>%2</code>, respectivement).</p><p>Copiez-la sur la machine distante et définissez la variable d'environnement <code>%3</code> pour qu'elle pointe sur son dossier.</p><p>Lancez le CDB distant comme <code>%4 &lt;executable&gt;</code> pour utiliser TCP/IP comme protocole de communication.</p><p>Entrez les paramètres de connexion comme ceci : </p><pre>%5</pre></body></html></translation> </message> <message> <source><html><body><p>The remote CDB needs to load the matching Qt Creator CDB extension (<code>%1</code> or <code>%2</code>, respectively).</p><p>Copy it onto the remote machine and set the environment variable <code>%3</code> to point to its folder.</p><p>Launch the remote CDB as <code>%4 &lt;executable&gt;</code> to use TCP/IP as communication protocol.</p><p>Enter the connection parameters as:</p><pre>%5</pre></body></html></source> - <translation><html><body><p>L'instance distante de CDB doit charger l'extension correspondante de Qt Creator (<code>%1</code> ou <code>%2</code>, respectivement).</p><p>Copiez-la sur la machine distante et définissez la variable d'environnement <code>%3</code> pour qu'elle pointe sur son dossier.</p><p>Lancez l'instance distante de CDB comme <code>%4 &lt;executable&gt;</code> pour utiliser TCP/IP comme protocole de communication.</p><p>Entrez les paramètres de connexion comme ceci&nbsp;: </p><pre>%5</pre></body></html></translation> + <translation><html><body><p>L'instance distante de CDB doit charger l'extension correspondante de Qt Creator (<code>%1</code> ou <code>%2</code>, respectivement).</p><p>Copiez-la sur la machine distante et définissez la variable d'environnement <code>%3</code> pour qu'elle pointe sur son dossier.</p><p>Lancez l'instance distante de CDB comme <code>%4 &lt;executable&gt;</code> pour utiliser TCP/IP comme protocole de communication.</p><p>Entrez les paramètres de connexion comme ceci : </p><pre>%5</pre></body></html></translation> </message> <message> <source>Start a CDB Remote Session</source> @@ -42212,7 +42212,7 @@ au gestionnaire de version (%2)</translation> </message> <message> <source>&Connection:</source> - <translation>&Connexion&nbsp;: </translation> + <translation>&Connexion : </translation> </message> </context> <context> @@ -42246,7 +42246,7 @@ au gestionnaire de version (%2)</translation> </message> <message> <source>Remote: "%1"</source> - <translation>Distant&nbsp;: "%1"</translation> + <translation>Distant : "%1"</translation> </message> <message> <source>Attaching to remote server %1.</source> @@ -42284,7 +42284,7 @@ au gestionnaire de version (%2)</translation> <message> <source>%1:%2 %3() hit</source> <extracomment>Message tracepoint: %1 file, %2 line %3 function hit.</extracomment> - <translation>%1&nbsp;: %2 %3() atteinte</translation> + <translation>%1 : %2 %3() atteinte</translation> </message> <message> <source>Add Message Tracepoint</source> @@ -42292,7 +42292,7 @@ au gestionnaire de version (%2)</translation> </message> <message> <source>Message:</source> - <translation>Message&nbsp;:</translation> + <translation>Message :</translation> </message> <message> <source>Executable file "%1"</source> @@ -42501,7 +42501,7 @@ au gestionnaire de version (%2)</translation> </message> <message> <source>Error evaluating command line arguments: %1</source> - <translation>Erreur durant l'évaluation des arguments de la ligne de commande&nbsp;: %1</translation> + <translation>Erreur durant l'évaluation des arguments de la ligne de commande : %1</translation> </message> <message> <source>Start Debugging</source> @@ -42727,7 +42727,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>Threads:</source> - <translation>Threads&nbsp;:</translation> + <translation>Threads :</translation> </message> <message> <source>Symbol</source> @@ -42821,7 +42821,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>&Source path:</source> - <translation>Chemin des &sources&nbsp;: </translation> + <translation>Chemin des &sources : </translation> </message> <message> <source>The actual location of the source tree on the local machine</source> @@ -42829,7 +42829,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>&Target path:</source> - <translation>Chemin de des&tination&nbsp;: </translation> + <translation>Chemin de des&tination : </translation> </message> <message> <source>Qt Sources</source> @@ -42844,7 +42844,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source><html><head/><body><table><tr><td>ABI:</td><td><i>%1</i></td></tr><tr><td>Debugger:</td><td>%2</td></tr></source> - <translation type="obsolete"><html><head/><body><table><tr><td>ABI&nbsp;:</td><td><i>%1</i></td></tr><tr><td>Débogueur&nbsp;:</td><td>%2</td></tr></translation> + <translation type="obsolete"><html><head/><body><table><tr><td>ABI :</td><td><i>%1</i></td></tr><tr><td>Débogueur :</td><td>%2</td></tr></translation> </message> </context> <context> @@ -42876,19 +42876,19 @@ Qt Creator ne peut pas s'y attacher. </translation> <name>CodaGdbAdapter</name> <message> <source>Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4.</source> - <translation type="obsolete">Processus démarré, PID&nbsp;: 0x%1, id du thread&nbsp;: 0x%2, segment de code&nbsp;: 0x%3, segment de données&nbsp;: 0x%4.</translation> + <translation type="obsolete">Processus démarré, PID : 0x%1, id du thread : 0x%2, segment de code : 0x%3, segment de données : 0x%4.</translation> </message> </context> <context> <name>Debugger::Internal::CodaGdbAdapter</name> <message> <source>Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4.</source> - <translation type="obsolete">Processus démarré, PID&nbsp;: 0x%1, id du thread&nbsp;: 0x%2, segment de code&nbsp;: 0x%3, segment de données&nbsp;: 0x%4.</translation> + <translation type="obsolete">Processus démarré, PID : 0x%1, id du thread : 0x%2, segment de code : 0x%3, segment de données : 0x%4.</translation> </message> <message> <source>Connecting to CODA server adapter failed: </source> - <translation type="obsolete">La connexion au serveur CODA a échoué&nbsp;: </translation> + <translation type="obsolete">La connexion au serveur CODA a échoué : </translation> </message> <message> <source>Could not obtain device.</source> @@ -42906,7 +42906,7 @@ Qt Creator ne peut pas s'y attacher. </translation> <name>Debugger::Internal::LldbEngineHost</name> <message> <source>qtcreator-lldb failed to start: %1</source> - <translation>qtcreator-lldb n'a pas pu démarrer&nbsp;: %1</translation> + <translation>qtcreator-lldb n'a pas pu démarrer : %1</translation> </message> <message> <source>Fatal engine shutdown. Consult debugger log for details.</source> @@ -42914,7 +42914,7 @@ Qt Creator ne peut pas s'y attacher. </translation> </message> <message> <source>SSH connection error: %1</source> - <translation>Erreur de connexion SSH&nbsp;: %1</translation> + <translation>Erreur de connexion SSH : %1</translation> </message> </context> <context> @@ -42951,7 +42951,7 @@ Qt Creator ne peut pas s'y attacher. </translation> <name>Debugger::Internal::QmlCppEngine</name> <message> <source>The slave debugging engine required for combined QML/C++-Debugging could not be created: %1</source> - <translation>Le moteur de débogage esclave requis pour le débogage combiné QML/C++ n'a pas pu être créé&nbsp;: %1</translation> + <translation>Le moteur de débogage esclave requis pour le débogage combiné QML/C++ n'a pas pu être créé : %1</translation> </message> <message> <source>C++ debugger activated</source> @@ -42973,7 +42973,7 @@ Qt Creator ne peut pas s'y attacher. </translation> <source>Cannot stop execution before QML engine is started. Skipping breakpoint. Suggestions: Move the breakpoint after QmlApplicationViewer instantiation or switch to C++ only debugging.</source> <translation type="obsolete">Impossible d'arrêter l'exécution avant que le moteur QML est démarré. Le point d'arrêt est ignoré. -Suggestions&nbsp;: déplacer le point d'arrêt après l'instanciation de QmlApplicationViewer ou passer au débogage du code C++ exclusivement. </translation> +Suggestions : déplacer le point d'arrêt après l'instanciation de QmlApplicationViewer ou passer au débogage du code C++ exclusivement. </translation> </message> </context> <context> @@ -42997,7 +42997,7 @@ Suggestions&nbsp;: déplacer le point d'arrêt après l'instanciat <message> <source>Could not connect to the in-process QML debugger. Do you want to retry?</source> - <translation>Impossible de se connecter au processus du débogueur QML. Voulez-vous réessayer&nbsp;? </translation> + <translation>Impossible de se connecter au processus du débogueur QML. Voulez-vous réessayer ? </translation> </message> <message> <source>Could not connect to the in-process QML debugger. @@ -43006,11 +43006,11 @@ Do you want to retry?</source> </message> <message> <source>QML Debugger: Remote host closed connection.</source> - <translation>Débogueur QML&nbsp;: l'hôte distant a fermé la connexion. </translation> + <translation>Débogueur QML : l'hôte distant a fermé la connexion. </translation> </message> <message> <source>QML Debugger: Could not connect to service '%1'.</source> - <translation>Débogueur QML&nbsp;: impossible de se connecter au service "%1". </translation> + <translation>Débogueur QML : impossible de se connecter au service "%1". </translation> </message> <message> <source>JS Source for %1</source> @@ -43018,7 +43018,7 @@ Do you want to retry?</source> </message> <message> <source>QML debugging port not set: Unable to convert %1 to unsigned int.</source> - <translation>Le port de débogage QML n'est pas défini&nbsp;: impossible de convertir %1 en unsigned int.</translation> + <translation>Le port de débogage QML n'est pas défini : impossible de convertir %1 en unsigned int.</translation> </message> <message> <source>Run to line %1 (%2) requested...</source> @@ -43026,11 +43026,11 @@ Do you want to retry?</source> </message> <message> <source>Context:</source> - <translation>Contexte&nbsp;:</translation> + <translation>Contexte :</translation> </message> <message> <source>Context: </source> - <translation>Contexte&nbsp;:</translation> + <translation>Contexte :</translation> </message> <message> <source>The port seems to be in use.</source> @@ -43046,7 +43046,7 @@ Do you want to retry?</source> <source>Could not connect to the in-process QML debugger: %1</source> <extracomment>%1 is detailed error message</extracomment> - <translation type="obsolete">Impossible de se connecter au processus de débogage QML&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter au processus de débogage QML : %1</translation> </message> <message> <source>Starting %1 %2</source> @@ -43058,7 +43058,7 @@ Do you want to retry?</source> </message> <message> <source>Application startup failed: %1</source> - <translation>Échec du démarrage de l'application&nbsp;: %1</translation> + <translation>Échec du démarrage de l'application : %1</translation> </message> <message> <source>Run to line %1 (%2) requested...</source> @@ -43070,11 +43070,11 @@ Do you want to retry?</source> </message> <message> <source><p>An uncaught exception occurred:</p><p>%1</p></source> - <translation type="obsolete"><p>Une exception non gérée a eu lieu&nbsp;: </p><p>%1</p></translation> + <translation type="obsolete"><p>Une exception non gérée a eu lieu : </p><p>%1</p></translation> </message> <message> <source><p>An uncaught exception occurred in <i>%1</i>:</p><p>%2</p></source> - <translation type="obsolete"><p>Une exception non gérée a eu lieu dans <i>%1</i>&nbsp;: </p><p>%2</p></translation> + <translation type="obsolete"><p>Une exception non gérée a eu lieu dans <i>%1</i> : </p><p>%2</p></translation> </message> <message> <source>Uncaught Exception</source> @@ -43089,54 +43089,54 @@ Do you want to retry?</source> <name>StackHandler</name> <message> <source>Address:</source> - <translation type="obsolete">Adresse&nbsp;:</translation> + <translation type="obsolete">Adresse :</translation> </message> <message> <source>Function:</source> - <translation type="obsolete">Fonction&nbsp;:</translation> + <translation type="obsolete">Fonction :</translation> </message> <message> <source>File:</source> - <translation type="obsolete">Fichier&nbsp;:</translation> + <translation type="obsolete">Fichier :</translation> </message> <message> <source>Line:</source> - <translation type="obsolete">Ligne&nbsp;:</translation> + <translation type="obsolete">Ligne :</translation> </message> <message> <source>From:</source> - <translation type="obsolete">À partir de&nbsp;:</translation> + <translation type="obsolete">À partir de :</translation> </message> <message> <source>To:</source> - <translation type="obsolete">Vers&nbsp;:</translation> + <translation type="obsolete">Vers :</translation> </message> </context> <context> <name>ThreadsHandler</name> <message> - <source>Thread&nbsp;id:</source> - <translation type="obsolete">ID du thread&nbsp;:</translation> + <source>Thread id:</source> + <translation type="obsolete">ID du thread :</translation> </message> <message> - <source>Target&nbsp;id:</source> - <translation type="obsolete">Identifiant de la cible&nbsp;:</translation> + <source>Target id:</source> + <translation type="obsolete">Identifiant de la cible :</translation> </message> <message> <source>Name:</source> - <translation type="obsolete">Nom&nbsp;:</translation> + <translation type="obsolete">Nom :</translation> </message> <message> <source>State:</source> - <translation type="obsolete">État&nbsp;:</translation> + <translation type="obsolete">État :</translation> </message> <message> <source>Core:</source> - <translation type="obsolete">Core&nbsp;:</translation> + <translation type="obsolete">Core :</translation> </message> <message> - <source>Stopped&nbsp;at:</source> - <translation type="obsolete">Arrêté à &nbsp;:</translation> + <source>Stopped at:</source> + <translation type="obsolete">Arrêté à :</translation> </message> </context> <context> @@ -43426,7 +43426,7 @@ Do you want to retry?</source> </message> <message> <source>Suppressions</source> - <translatorcomment>erreur cachées&nbsp;?</translatorcomment> + <translatorcomment>erreur cachées ?</translatorcomment> <translation type="obsolete">Suppressions</translation> </message> <message> @@ -43474,7 +43474,7 @@ Do you want to retry?</source> </message> <message> <source>Error occurred parsing valgrind output: %1</source> - <translation type="obsolete">Erreur d'analyse de la sortie de Valgring&nbsp;: "%1"</translation> + <translation type="obsolete">Erreur d'analyse de la sortie de Valgring : "%1"</translation> </message> </context> <context> @@ -43501,19 +43501,19 @@ Do you want to retry?</source> <name>ProjectExplorer::Internal::GccToolChainConfigWidget</name> <message> <source>&Compiler path:</source> - <translation>Chemin du &compilateur&nbsp;: </translation> + <translation>Chemin du &compilateur : </translation> </message> <message> <source>Platform codegen flags:</source> - <translation>Flags de plateforme de la génération de code&nbsp;:</translation> + <translation>Flags de plateforme de la génération de code :</translation> </message> <message> <source>Platform linker flags:</source> - <translation>Flags de plateforme de l'éditeur de liens&nbsp;:</translation> + <translation>Flags de plateforme de l'éditeur de liens :</translation> </message> <message> <source>&ABI:</source> - <translation>&ABI&nbsp;: </translation> + <translation>&ABI : </translation> </message> </context> <context> @@ -43557,7 +43557,7 @@ Do you want to retry?</source> <name>ProjectExplorer::Internal::MsvcToolChainConfigWidget</name> <message> <source>Initialization:</source> - <translation>Initialisation&nbsp;:</translation> + <translation>Initialisation :</translation> </message> <message> <source>No CDB debugger detected (neither 32bit nor 64bit).</source> @@ -43590,7 +43590,7 @@ Do you want to retry?</source> <name>ProjectExplorer::ToolChainConfigWidget</name> <message> <source>&Debugger:</source> - <translation type="obsolete">&Débogueur&nbsp;:</translation> + <translation type="obsolete">&Débogueur :</translation> </message> <message> <source>Autodetect</source> @@ -43598,7 +43598,7 @@ Do you want to retry?</source> </message> <message> <source>mkspec:</source> - <translation type="obsolete">mkspec&nbsp;:</translation> + <translation type="obsolete">mkspec :</translation> </message> <message> <source>All possible mkspecs separated by a semicolon (';').</source> @@ -43610,7 +43610,7 @@ Do you want to retry?</source> </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> </context> <context> @@ -43625,7 +43625,7 @@ Do you want to retry?</source> </message> <message> <source><nobr><b>ABI:</b> %1</source> - <translation><nobr><b>ABI&nbsp;:</b> %1</translation> + <translation><nobr><b>ABI :</b> %1</translation> </message> <message> <source>not up-to-date</source> @@ -43644,28 +43644,28 @@ Do you want to retry?</source> <translation>Duplication de compilateurs détectée</translation> </message> <message> - <source>The following compiler was already configured:<br>&nbsp;%1<br>It was not configured again.</source> - <translation>Le compilateur suivant a déjà été configuré&nbsp;: <br>&nbsp;%1<br>Il n'a pas été configuré à nouveau.</translation> + <source>The following compiler was already configured:<br> %1<br>It was not configured again.</source> + <translation>Le compilateur suivant a déjà été configuré : <br> %1<br>Il n'a pas été configuré à nouveau.</translation> </message> <message> - <source>The following compilers were already configured:<br>&nbsp;%1<br>They were not configured again.</source> - <translation>Les compilateurs suivants ont déjà été configurés&nbsp;: <br>&nbsp;%1<br>Ils n'ont pas été configurés à nouveau.</translation> + <source>The following compilers were already configured:<br> %1<br>They were not configured again.</source> + <translation>Les compilateurs suivants ont déjà été configurés : <br> %1<br>Ils n'ont pas été configurés à nouveau.</translation> </message> <message> <source>Duplicate Tool Chain detected</source> <translation type="obsolete">Chaîne de compilation dupliquée détectée</translation> </message> <message> - <source>The following tool chain was already configured:<br>&nbsp;%1<br>It was not configured again.</source> - <translation type="obsolete">La chaîne de compilation suivante a déjà été configurée&nbsp;: <br/>&nbsp;%1<br/>Elle n'a pas été configurée à nouveau. </translation> + <source>The following tool chain was already configured:<br> %1<br>It was not configured again.</source> + <translation type="obsolete">La chaîne de compilation suivante a déjà été configurée : <br/> %1<br/>Elle n'a pas été configurée à nouveau. </translation> </message> <message> <source>Duplicate Tool Chains detected</source> <translation type="obsolete">Chaînes de compilation dupliquées détectées</translation> </message> <message> - <source>The following tool chains were already configured:<br>&nbsp;%1<br>They were not configured again.</source> - <translation type="obsolete">Les chaînes de compilation suivantes ont déjà été configurées&nbsp;: <br/>&nbsp;%1<br/>Elles n'ont pas été configurées à nouveau. </translation> + <source>The following tool chains were already configured:<br> %1<br>They were not configured again.</source> + <translation type="obsolete">Les chaînes de compilation suivantes ont déjà été configurées : <br/> %1<br/>Elles n'ont pas été configurées à nouveau. </translation> </message> </context> <context> @@ -43814,7 +43814,7 @@ QML component instance objects and properties directly.</source> </message> <message> <source>New id:</source> - <translation type="obsolete">Nouvel identifiant&nbsp;:</translation> + <translation type="obsolete">Nouvel identifiant :</translation> </message> <message> <source>Unused variable</source> @@ -43955,7 +43955,7 @@ Errors: %2 </source> <translation type="obsolete">Échec du collecteur de type pour le plug-in QML dans %1. -Erreurs&nbsp;: +Erreurs : %2 </translation> </message> @@ -43965,7 +43965,7 @@ First 10 lines or errors: %1 Check 'General Messages' output pane for details.</source> - <translation type="obsolete">Échec du collecteur de type pour le plug-in C++. Les dix premières lignes des erreurs&nbsp;: + <translation type="obsolete">Échec du collecteur de type pour le plug-in C++. Les dix premières lignes des erreurs : %1 Vérifier le panneau de sortie Messages généraux pour les détails. </translation> </message> @@ -43976,7 +43976,7 @@ Module path: %1 See "Using QML Modules with Plugins" in the documentation.</source> <translation>Le module QML ne contient pas d'informations à propos des composants contenus dans les plugins -Chemin du module&nbsp;: %1 +Chemin du module : %1 Voir dans la documentation "Utilisation des modules QML avec les plugins".</translation> </message> <message> @@ -43985,7 +43985,7 @@ Errors: %1 </source> <translation>Échec du collecteur de type automatique du module QML. -Erreurs&nbsp;: +Erreurs : %1 </translation> </message> @@ -43994,7 +43994,7 @@ Erreurs&nbsp;: Errors: %1</source> <translation>Échec du collecteur de type automatique du module QML. -Erreurs&nbsp;: +Erreurs : %1</translation> </message> <message> @@ -44004,7 +44004,7 @@ First 10 lines or errors: %1 Check 'General Messages' output pane for details.</source> <translation>Échec du collecteur de type automatique du module QML. -10 premières lignes d'erreurs&nbsp;: +10 premières lignes d'erreurs : %1 Vérifiez 'Messages généraux' dans le panel de sortie pour plus de détails.</translation> @@ -44012,12 +44012,12 @@ Vérifiez 'Messages généraux' dans le panel de sortie pour plus de d <message> <source>Warnings while parsing qmltypes information of %1: %2</source> - <translation>Avertissements lors de l'analyse des informations de qmltypes de %1&nbsp;: + <translation>Avertissements lors de l'analyse des informations de qmltypes de %1 : %2</translation> </message> <message> <source>"%1" failed to start: %2</source> - <translation>"%1" n'a pas pu démarrer&nbsp;: %2</translation> + <translation>"%1" n'a pas pu démarrer : %2</translation> </message> <message> <source>"%1" crashed.</source> @@ -44037,11 +44037,11 @@ Vérifiez 'Messages généraux' dans le panel de sortie pour plus de d </message> <message> <source>Arguments: %1</source> - <translation>Arguments&nbsp;: %1</translation> + <translation>Arguments : %1</translation> </message> <message> <source>Errors while reading typeinfo files:</source> - <translation>Erreurs lors de la lecture des fichiers d'informations sur les types&nbsp;:</translation> + <translation>Erreurs lors de la lecture des fichiers d'informations sur les types :</translation> </message> <message> <source>Could not locate the helper application for dumping type information from C++ plugins. @@ -44052,7 +44052,7 @@ Veuillez compiler l'application qmldump à partir de la page d'options <message> <source>Type dump of C++ plugin failed. Parse error: '%1'</source> - <translation type="obsolete">Échec du collecteur de type pour le plug-in C++.Erreur de parsage&nbsp;: %1 + <translation type="obsolete">Échec du collecteur de type pour le plug-in C++.Erreur de parsage : %1 </translation> </message> <message> @@ -44062,7 +44062,7 @@ Veuillez compiler l'application qmldump à partir de la page d'options <message> <source>Failed to parse '%1'. Error: %2</source> - <translation>Impossible de parser "%1". Erreur&nbsp;: %2</translation> + <translation>Impossible de parser "%1". Erreur : %2</translation> </message> <message> <source>Could not locate the helper application for dumping type information from C++ plugins. @@ -44082,19 +44082,19 @@ Please build the debugging helpers on the Qt version options page.</source> </message> <message> <source>Qt version:</source> - <translation type="obsolete">Version de Qt&nbsp;:</translation> + <translation type="obsolete">Version de Qt :</translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Main QML file:</source> - <translation>Fichier QML principal&nbsp;: </translation> + <translation>Fichier QML principal : </translation> </message> <message> <source>Debugger:</source> - <translation type="obsolete">Débogueur&nbsp;:</translation> + <translation type="obsolete">Débogueur :</translation> </message> <message> <source>Run Environment</source> @@ -44132,10 +44132,10 @@ Please build the debugging helpers on the Qt version options page.</source> - %1 Reason: %2</source> - <translation>La bibliothèque de débogage QML n'a pas pu être compilée dans le moindre répertoire&nbsp;: + <translation>La bibliothèque de débogage QML n'a pas pu être compilée dans le moindre répertoire : - %1 -Raison&nbsp;: %2</translation> +Raison : %2</translation> </message> </context> <context> @@ -44276,7 +44276,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Key creation failed: %1</source> - <translation type="obsolete">Échec lors de la création des clés&nbsp;: %1</translation> + <translation type="obsolete">Échec lors de la création des clés : %1</translation> </message> <message> <source>Done.</source> @@ -44288,7 +44288,7 @@ Raison&nbsp;: %2</translation> </message> <message> <source>Failed to save key file %1: %2</source> - <translation type="obsolete">Impossible d'enregistrer le fichier de clé %1&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'enregistrer le fichier de clé %1 : %2</translation> </message> </context> <context> @@ -44344,18 +44344,18 @@ Raison&nbsp;: %2</translation> <name>QmakeProjectManager::Internal::MaemoGlobal</name> <message> <source>Could not connect to host: %1</source> - <translation type="obsolete">Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source> Did you start Qemu?</source> <translation type="obsolete"> -Avez-vous démarré Qemu&nbsp;?</translation> +Avez-vous démarré Qemu ?</translation> </message> <message> <source> Is the device connected and set up for network access?</source> - <translation type="obsolete">Est-ce que le périphérique est connecté et configuré pour l'accès réseau&nbsp;? </translation> + <translation type="obsolete">Est-ce que le périphérique est connecté et configuré pour l'accès réseau ? </translation> </message> <message> <source>(No device)</source> @@ -44394,11 +44394,11 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Connection failed: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> <message> <source>Key deployment failed: %1.</source> - <translation type="obsolete">Échec lors du déploiement de la clé&nbsp;: %1.</translation> + <translation type="obsolete">Échec lors du déploiement de la clé : %1.</translation> </message> </context> <context> @@ -44435,11 +44435,11 @@ Is the device connected and set up for network access?</source> </message> <message> <source>The project is missing some information important to publishing:</source> - <translation type="obsolete">Quelques informations manquent au projet pour la publication&nbsp;: </translation> + <translation type="obsolete">Quelques informations manquent au projet pour la publication : </translation> </message> <message> <source>Publishing failed: Missing project information.</source> - <translation type="obsolete">La publication a échoué&nbsp;: des informations sur le projet manquaient. </translation> + <translation type="obsolete">La publication a échoué : des informations sur le projet manquaient. </translation> </message> <message> <source>Removing left-over temporary directory ...</source> @@ -44447,11 +44447,11 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Error removing temporary directory: %1</source> - <translation type="obsolete">Erruer lors de la suppression du répertoire temporaire&nbsp;: %1</translation> + <translation type="obsolete">Erruer lors de la suppression du répertoire temporaire : %1</translation> </message> <message> <source>Publishing failed: Could not create source package.</source> - <translation type="obsolete">Échec de la publication&nbsp;: impossible de créer le paquet de sources. </translation> + <translation type="obsolete">Échec de la publication : impossible de créer le paquet de sources. </translation> </message> <message> <source>Setting up temporary directory ...</source> @@ -44459,19 +44459,19 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Error: Could not create temporary directory.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de créer le dossier temporaire. </translation> + <translation type="obsolete">Erreur : impossible de créer le dossier temporaire. </translation> </message> <message> <source>Error: Could not copy project directory</source> - <translation type="obsolete">Erreur&nbsp;: impossible de copier le répertoire du projet</translation> + <translation type="obsolete">Erreur : impossible de copier le répertoire du projet</translation> </message> <message> <source>Error: Could not fix newlines</source> - <translation type="obsolete">Erreur&nbsp;: impossible de fixer les lignes</translation> + <translation type="obsolete">Erreur : impossible de fixer les lignes</translation> </message> <message> <source>Publishing failed: Could not create package.</source> - <translation type="obsolete">Échec de la publication&nbsp;: impossible de créer un paquet. </translation> + <translation type="obsolete">Échec de la publication : impossible de créer un paquet. </translation> </message> <message> <source>Cleaning up temporary directory ...</source> @@ -44491,11 +44491,11 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Error: Failed to start dpkg-buildpackage.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de démarrer dpkg-buildpackage.</translation> + <translation type="obsolete">Erreur : impossible de démarrer dpkg-buildpackage.</translation> </message> <message> <source>Error: dpkg-buildpackage did not succeed.</source> - <translation type="obsolete">Erreur&nbsp;: dpkg-buildpackage n'a pas réussi. </translation> + <translation type="obsolete">Erreur : dpkg-buildpackage n'a pas réussi. </translation> </message> <message> <source>Package creation failed.</source> @@ -44508,7 +44508,7 @@ Is the device connected and set up for network access?</source> <message> <source>Packaging finished successfully. The following files were created: </source> - <translation type="obsolete">Le packaging s'est déroulé avec succès. Les fichiers suivants ont été créés&nbsp;: </translation> + <translation type="obsolete">Le packaging s'est déroulé avec succès. Les fichiers suivants ont été créés : </translation> </message> <message> <source>Building source package...</source> @@ -44520,7 +44520,7 @@ Is the device connected and set up for network access?</source> </message> <message> <source>SSH error: %1</source> - <translation type="obsolete">Erreur SSH&nbsp;: %1</translation> + <translation type="obsolete">Erreur SSH : %1</translation> </message> <message> <source>Upload failed.</source> @@ -44528,7 +44528,7 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Error uploading file: %1</source> - <translation type="obsolete">Erreur lors de l'envoi du fichier&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'envoi du fichier : %1</translation> </message> <message> <source>Error uploading file.</source> @@ -44548,11 +44548,11 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Cannot open file for reading: %1</source> - <translation type="obsolete">Impossible d'ouvrir le fichier en lecture&nbsp;: %1</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier en lecture : %1</translation> </message> <message> <source>Cannot read file: %1</source> - <translation type="obsolete">Impossible de lire le fichier&nbsp;: %1</translation> + <translation type="obsolete">Impossible de lire le fichier : %1</translation> </message> <message> <source>Failed to adapt desktop file '%1'.</source> @@ -44627,15 +44627,15 @@ Is the device connected and set up for network access?</source> <name>QmakeProjectManager::Internal::MaemoRemoteProcessList</name> <message> <source>Connection failure: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> <message> <source>Error: Remote process failed to start: %1</source> - <translation type="obsolete">Erreur&nbsp;: le processus distant n'a pas pu démarrer&nbsp;: %1</translation> + <translation type="obsolete">Erreur : le processus distant n'a pas pu démarrer : %1</translation> </message> <message> <source>Error: Remote process crashed: %1</source> - <translation type="obsolete">Erreur&nbsp;: le processus distant a crashé&nbsp;: %1</translation> + <translation type="obsolete">Erreur : le processus distant a crashé : %1</translation> </message> <message> <source>Remote process failed.</source> @@ -44644,7 +44644,7 @@ Is the device connected and set up for network access?</source> <message> <source> Remote stderr was: %1</source> - <translation type="obsolete">Le stderr distant était&nbsp;: %1</translation> + <translation type="obsolete">Le stderr distant était : %1</translation> </message> <message> <source>PID</source> @@ -44711,24 +44711,24 @@ Remote stderr was: %1</source> <name>QmakeProjectManager::Internal::MaemoUsedPortsGatherer</name> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Could not start remote process: %1</source> - <translation type="obsolete">Impossible de démarrer le processus distant&nbsp;: %1</translation> + <translation type="obsolete">Impossible de démarrer le processus distant : %1</translation> </message> <message> <source>Remote process crashed: %1</source> - <translation type="obsolete">Processus distant crashé&nbsp;: %1</translation> + <translation type="obsolete">Processus distant crashé : %1</translation> </message> <message> <source>Remote process failed: %1</source> - <translation type="obsolete">Échec du processus distant&nbsp;: %1</translation> + <translation type="obsolete">Échec du processus distant : %1</translation> </message> <message> <source> Remote error output was: %1</source> - <translation type="obsolete">La sortie du processus distant était&nbsp;: %1</translation> + <translation type="obsolete">La sortie du processus distant était : %1</translation> </message> </context> <context> @@ -44754,7 +44754,7 @@ Remote error output was: %1</source> </message> <message> <source>Cannot open file '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir le fichier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier "%1" : %2</translation> </message> <message> <source>Qt Creator</source> @@ -44762,11 +44762,11 @@ Remote error output was: %1</source> </message> <message> <source>Do you want to remove the packaging file(s) associated with the target '%1'?</source> - <translation type="obsolete">Voulez-voussupprimer les fichiers de packaging associés avec la cible "%1"&nbsp;? </translation> + <translation type="obsolete">Voulez-voussupprimer les fichiers de packaging associés avec la cible "%1" ? </translation> </message> <message> <source>Error creating Maemo packaging directory '%1'.</source> - <translation type="obsolete">Error lors de la création du répertoire de packaging pour Maemo&nbsp;: "%1". </translation> + <translation type="obsolete">Error lors de la création du répertoire de packaging pour Maemo : "%1". </translation> </message> <message> <source>Add Packaging Files to Project</source> @@ -44776,9 +44776,9 @@ Remote error output was: %1</source> <source>Qt Creator has set up the following files to enable packaging: %1 Do you want to add them to the project?</source> - <translation type="obsolete">Qt Creator a préparé les fichiers suivants pour permettre le packaging&nbsp;: + <translation type="obsolete">Qt Creator a préparé les fichiers suivants pour permettre le packaging : %1 -Voulez-vous les ajouter au projet&nbsp;? </translation> +Voulez-vous les ajouter au projet ? </translation> </message> <message> <source>Error creating Maemo templates</source> @@ -44793,7 +44793,7 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> </message> <message> <source>Error writing Debian changelog file '%1': %2</source> - <translation type="obsolete">Erreur pendant l'écriture du fichier dejournal des changements Debian "%1"&nbsp;: %2</translation> + <translation type="obsolete">Erreur pendant l'écriture du fichier dejournal des changements Debian "%1" : %2</translation> </message> <message> <source>Invalid icon data in Debian control file.</source> @@ -44809,15 +44809,15 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> </message> <message> <source>Error writing file '%1': %2</source> - <translation type="obsolete">Erreur lors de l'enregistrement du fichier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de l'enregistrement du fichier "%1" : %2</translation> </message> <message> <source>Unable to create Debian templates: dh_make failed (%1)</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1)</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1)</translation> </message> <message> <source>Unable to create debian templates: dh_make failed (%1)</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1)</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1)</translation> </message> <message> <source>Unable to move new debian directory to '%1'.</source> @@ -44825,11 +44825,11 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> </message> <message> <source>Packaging Error: Cannot open file '%1'.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas 'ouvrir le fichier "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas 'ouvrir le fichier "%1".</translation> </message> <message> <source>Packaging Error: Cannot write file '%1'.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: ne peut pas écrire le fichier "%1".</translation> + <translation type="obsolete">Erreur lors de la création du paquet : ne peut pas écrire le fichier "%1".</translation> </message> </context> <context> @@ -44840,7 +44840,7 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> </message> <message> <source>Executable file: %1</source> - <translation type="obsolete">Fichier exécutable&nbsp;: %1</translation> + <translation type="obsolete">Fichier exécutable : %1</translation> </message> <message> <source>Connecting to '%1'...</source> @@ -44852,7 +44852,7 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> </message> <message> <source>Could not open serial device: %1</source> - <translation type="obsolete">Impossible d'ouvrir le périphérique série&nbsp;: %1</translation> + <translation type="obsolete">Impossible d'ouvrir le périphérique série : %1</translation> </message> <message> <source>Connecting to %1:%2...</source> @@ -44860,7 +44860,7 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> </message> <message> <source>Error: %1</source> - <translation type="obsolete">Erreur&nbsp;: %1</translation> + <translation type="obsolete">Erreur : %1</translation> </message> <message> <source>Connected.</source> @@ -44872,7 +44872,7 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> </message> <message> <source>Thread has crashed: %1</source> - <translation type="obsolete">Thread crashé&nbsp;: %1</translation> + <translation type="obsolete">Thread crashé : %1</translation> </message> <message> <source>The process is already running on the device. Please first close it.</source> @@ -44880,7 +44880,7 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> </message> <message> <source>Launching: %1</source> - <translation type="obsolete">Lancement&nbsp;: %1</translation> + <translation type="obsolete">Lancement : %1</translation> </message> <message> <source>Launched.</source> @@ -44888,7 +44888,7 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> </message> <message> <source>Launch failed: %1</source> - <translation type="obsolete">Le lancement a échoué&nbsp;: %1</translation> + <translation type="obsolete">Le lancement a échoué : %1</translation> </message> <message> <source>Waiting for CODA</source> @@ -44926,19 +44926,19 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> <name>QmakeProjectManager::Internal::QmakeSymbianTarget</name> <message> <source><b>Device:</b> Not connected</source> - <translation type="obsolete"><b>Périphérique&nbsp;:</b>Non connecté</translation> + <translation type="obsolete"><b>Périphérique :</b>Non connecté</translation> </message> <message> <source><b>Device:</b> %1</source> - <translation type="obsolete"><b>Périphérique&nbsp;:</b> %1</translation> + <translation type="obsolete"><b>Périphérique :</b> %1</translation> </message> <message> <source><b>Device:</b> %1, %2</source> - <translation type="obsolete"><b>Périphérique&nbsp;:</b> %1, %2</translation> + <translation type="obsolete"><b>Périphérique :</b> %1, %2</translation> </message> <message> <source><b>IP address:</b> %1:%2</source> - <translation type="obsolete"><b>adresse IP&nbsp;:</b> %1:%2</translation> + <translation type="obsolete"><b>adresse IP :</b> %1:%2</translation> </message> </context> <context> @@ -44967,12 +44967,12 @@ Voulez-vous les ajouter au projet&nbsp;? </translation> <source>The certificate "%1" has already expired and cannot be used. Expiration date: %2.</source> <translation type="obsolete">Le certificat "%1" a déjà expiré et ne peut pas être utilisé. -Date d'expiration&nbsp;: %2. </translation> +Date d'expiration : %2. </translation> </message> <message> <source>The certificate "%1" is not yet valid. Valid from: %2.</source> - <translation type="obsolete">Le certificat "%1" n'est pas encore valide. Valide dès&nbsp;: %2. </translation> + <translation type="obsolete">Le certificat "%1" n'est pas encore valide. Valide dès : %2. </translation> </message> <message> <source>The certificate "%1" is not a valid X.509 certificate.</source> @@ -44980,7 +44980,7 @@ Valid from: %2.</source> </message> <message> <source>Type: </source> - <translation type="obsolete">Type&nbsp;: </translation> + <translation type="obsolete">Type : </translation> </message> <message> <source>Developer certificate</source> @@ -44992,30 +44992,30 @@ Valid from: %2.</source> </message> <message> <source>Issued by: </source> - <translation type="obsolete">Délivré par&nbsp;: </translation> + <translation type="obsolete">Délivré par : </translation> </message> <message> <source>Issued to: </source> - <translation type="obsolete">Délivré à &nbsp;: </translation> + <translation type="obsolete">Délivré à : </translation> </message> <message> <source>Valid from: </source> - <translation type="obsolete">Valide dès&nbsp;: </translation> + <translation type="obsolete">Valide dès : </translation> </message> <message> <source>Valid to: </source> - <translation type="obsolete">Valide jusque&nbsp;: </translation> + <translation type="obsolete">Valide jusque : </translation> </message> <message> <source>Capabilities: </source> - <translation type="obsolete">Capacités&nbsp;: </translation> + <translation type="obsolete">Capacités : </translation> </message> <message numerus="yes"> <source>Supporting %n device(s): </source> - <translatorcomment>%n manquant au singulier, seule possibilité&nbsp;: 1. mieux en toutes lettres. </translatorcomment> + <translatorcomment>%n manquant au singulier, seule possibilité : 1. mieux en toutes lettres. </translatorcomment> <translation type="obsolete"> - <numerusform>Supportant un périphérique&nbsp;: </numerusform> - <numerusform>Supportant %n périphériques&nbsp;: </numerusform> + <numerusform>Supportant un périphérique : </numerusform> + <numerusform>Supportant %n périphériques : </numerusform> </translation> </message> </context> @@ -45039,7 +45039,7 @@ Utilisez un certificat développeur ou une autre option de signature pour évite <name>QmakeProjectManager::Internal::S60PublisherOvi</name> <message> <source>Error while reading .pro file %1: %2</source> - <translation type="obsolete">Erreur lors de la lecture du fichier .pro %1&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de la lecture du fichier .pro %1 : %2</translation> </message> <message> <source>Created %1 @@ -45054,7 +45054,7 @@ Utilisez un certificat développeur ou une autre option de signature pour évite <message> <source>Done! </source> - <translation type="obsolete">Fait&nbsp;! </translation> + <translation type="obsolete">Fait ! </translation> </message> <message> <source>Sis file not created due to previous errors @@ -45232,15 +45232,15 @@ Utilisez un certificat développeur ou une autre option de signature pour évite </message> <message> <source>Display name:</source> - <translation type="obsolete">Nom d'affichage&nbsp;:</translation> + <translation type="obsolete">Nom d'affichage :</translation> </message> <message> <source>Localised vendor names:</source> - <translation type="obsolete">Noms de vendeur localisés&nbsp;: </translation> + <translation type="obsolete">Noms de vendeur localisés : </translation> </message> <message> <source>Capabilities:</source> - <translation type="obsolete">Capacités&nbsp;: </translation> + <translation type="obsolete">Capacités : </translation> </message> <message> <source>Current UID3</source> @@ -45248,7 +45248,7 @@ Utilisez un certificat développeur ou une autre option de signature pour évite </message> <message> <source>Application UID:</source> - <translation type="obsolete">UID de l'application&nbsp;: </translation> + <translation type="obsolete">UID de l'application : </translation> </message> <message> <source>Current Qt Version</source> @@ -45256,7 +45256,7 @@ Utilisez un certificat développeur ou une autre option de signature pour évite </message> <message> <source>Qt version used in builds:</source> - <translation type="obsolete">Version de Qt utilisée pour la compilation&nbsp;: </translation> + <translation type="obsolete">Version de Qt utilisée pour la compilation : </translation> </message> <message> <source>Current set of capabilities</source> @@ -45264,7 +45264,7 @@ Utilisez un certificat développeur ou une autre option de signature pour évite </message> <message> <source>Global vendor name:</source> - <translation type="obsolete">Nom du vendeur global&nbsp;: </translation> + <translation type="obsolete">Nom du vendeur global : </translation> </message> </context> <context> @@ -45290,7 +45290,7 @@ L'assistant crée les fichiers SIS qui peuvent être soumis à la publicati Vous ne pouvez pas l'utiliser si vous utilisez des UID d'application de Symbian Signed. -Vous ne pouvez pas l'utiliser pour les certifiés signés et les niveaux de capacités du fabricant&nbsp;: +Vous ne pouvez pas l'utiliser pour les certifiés signés et les niveaux de capacités du fabricant : NetworkControl, MultimediaDD, CommDD, DiskAdmin, AllFiles, DRM et TCB. Votre application sera également rejetée de l'Ovi QA si vous choisissez une version de Qt non sortie sur la prochaîne page.</translation> @@ -45316,7 +45316,7 @@ L'assistant créer les fichiers SIS qui peuvent être envoyés à Nokia Pub Vous ne pouvez pas l'utiliser si vous utilisez des UID d'application de Symbian Signed. -Vous ne pouvez pas l'utiliser pour les fonctionnalités certifiées signées et le niveau constructeur&nbsp;: +Vous ne pouvez pas l'utiliser pour les fonctionnalités certifiées signées et le niveau constructeur : NetworkControl, MultimediaDD, CommDD, DiskAdmin, AllFiles, DRM et TCB. Votre application peut aussi être rejeté par l'assurance qualité du Nokia Store si vous choisissez une version Qt non publiée sur la page suivante.</translation> @@ -45357,7 +45357,7 @@ Votre application peut aussi être rejeté par l'assurance qualité du Noki </message> <message> <source><html><head/><body><center><i>%1</i> is still running on the device.</center><center>Terminating it can leave the target in an inconsistent state.</center><center>Would you still like to terminate it?</center></body></html></source> - <translation type="obsolete"><html><head/><body><center><i>%1</i> est toujours en cours d'exécution sur le périphérique.</center><center>Le terminer peut laisser la cible dans un état incohérent.</center><center>Voulez-vous toujours le terminer&nbsp;?</center></body></html></translation> + <translation type="obsolete"><html><head/><body><center><i>%1</i> est toujours en cours d'exécution sur le périphérique.</center><center>Le terminer peut laisser la cible dans un état incohérent.</center><center>Voulez-vous toujours le terminer ?</center></body></html></translation> </message> <message> <source>Application Still Running</source> @@ -45384,17 +45384,17 @@ Votre application peut aussi être rejeté par l'assurance qualité du Noki </message> <message> <source>Executable file: %1</source> - <translation type="obsolete">Fichier exécutable&nbsp;: %1</translation> + <translation type="obsolete">Fichier exécutable : %1</translation> </message> <message> <source>Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running.</source> - <translation type="obsolete">Impossible de connecter le téléphone sur le port '%1'&nbsp;: %2 + <translation type="obsolete">Impossible de connecter le téléphone sur le port '%1' : %2 Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</translation> </message> <message> <source>Could not connect to App TRK on device: %1. Restarting App TRK might help.</source> - <translation type="obsolete">Impossible de se connecter à App TRK sur l'appareil mobile&nbsp;: %1. Redémarrer App TRK pourrait résoudre le problème.</translation> + <translation type="obsolete">Impossible de se connecter à App TRK sur l'appareil mobile : %1. Redémarrer App TRK pourrait résoudre le problème.</translation> </message> <message> <source>Waiting for App TRK</source> @@ -45422,7 +45422,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Could not start application: %1</source> - <translation type="obsolete">Impossible de démarrer l'application&nbsp;: %1</translation> + <translation type="obsolete">Impossible de démarrer l'application : %1</translation> </message> </context> <context> @@ -45454,19 +45454,19 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ <message> <source><b>Error:</b> </source> <comment>Severity is Task::Error</comment> - <translation type="obsolete"><b>Erreur&nbsp;:</b> </translation> + <translation type="obsolete"><b>Erreur :</b> </translation> </message> <message> <source><b>Warning:</b> </source> <comment>Severity is Task::Warning</comment> - <translation type="obsolete"><b>Alerte&nbsp;:</b> </translation> + <translation type="obsolete"><b>Alerte :</b> </translation> </message> </context> <context> <name>QmakeProjectManager::QmakeDefaultTargetSetupWidget</name> <message> <source>Add build from:</source> - <translation type="obsolete">Ajouter une compilation depuis&nbsp;: </translation> + <translation type="obsolete">Ajouter une compilation depuis : </translation> </message> <message> <source>Add Build</source> @@ -45474,11 +45474,11 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Create Build Configurations:</source> - <translation type="obsolete">Créer des configurations de compilation&nbsp;:</translation> + <translation type="obsolete">Créer des configurations de compilation :</translation> </message> <message> <source>Create build configurations:</source> - <translation type="obsolete">Créer des configurations de compilation&nbsp;:</translation> + <translation type="obsolete">Créer des configurations de compilation :</translation> </message> <message> <source>For Each Qt Version One Debug And One Release</source> @@ -45502,7 +45502,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Qt version:</source> - <translation type="obsolete">Version de Qt&nbsp;:</translation> + <translation type="obsolete">Version de Qt :</translation> </message> <message> <source>No Build Found</source> @@ -45534,7 +45534,7 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ </message> <message> <source>Qt Version:</source> - <translation type="obsolete">Version de Qt&nbsp;:</translation> + <translation type="obsolete">Version de Qt :</translation> </message> <message> <source>debug</source> @@ -45577,12 +45577,12 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.</ <message> <source><b>Error:</b> </source> <comment>Severity is Task::Error</comment> - <translation type="obsolete"><b>Erreur&nbsp;:</b> </translation> + <translation type="obsolete"><b>Erreur :</b> </translation> </message> <message> <source><b>Warning:</b> </source> <comment>Severity is Task::Warning</comment> - <translation type="obsolete"><b>Alerte&nbsp;:</b> </translation> + <translation type="obsolete"><b>Alerte :</b> </translation> </message> </context> <context> @@ -45666,7 +45666,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P <name>QmakeProjectManager::Internal::Html5AppWizardOptionsPage</name> <message> <source>Select HTML File</source> - <translatorcomment>impératif&nbsp;?</translatorcomment> + <translatorcomment>impératif ?</translatorcomment> <translation>Sélectionner le fichier HTML</translation> </message> </context> @@ -45690,7 +45690,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>Orientation behavior:</source> - <translation>Comportement de l'orientation&nbsp;:</translation> + <translation>Comportement de l'orientation :</translation> </message> </context> <context> @@ -45709,15 +45709,15 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>The icon needs to be %1x%2 pixels big, but is not. Do you want Creator to scale it?</source> - <translation type="obsolete">L'icône doit faire %1x%2 pixels, mais elle ne remplit pas cette condition. Qt Creator doit-il la mettre à l'échelle&nbsp;? </translation> + <translation type="obsolete">L'icône doit faire %1x%2 pixels, mais elle ne remplit pas cette condition. Qt Creator doit-il la mettre à l'échelle ? </translation> </message> <message> <source>Could not copy icon file: %1</source> - <translation type="obsolete">Impossible de copier le fichier de l'icône&nbsp;: %1</translation> + <translation type="obsolete">Impossible de copier le fichier de l'icône : %1</translation> </message> <message> <source>The icon needs to be 64x64 pixels big, but is not. Do you want Creator to scale it?</source> - <translation type="obsolete">L'icône doit faire 64x64 pixels, mais elle ne remplit pas cette condition. Qt Creator doit-il la mettre à l'échelle&nbsp;? </translation> + <translation type="obsolete">L'icône doit faire 64x64 pixels, mais elle ne remplit pas cette condition. Qt Creator doit-il la mettre à l'échelle ? </translation> </message> <message> <source>File Error</source> @@ -45733,7 +45733,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>Application icon (64x64):</source> - <translation>Icône de l'application (64x64)&nbsp;:</translation> + <translation>Icône de l'application (64x64) :</translation> </message> </context> <context> @@ -45780,7 +45780,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P <message> <source>Qt Creator can set up the following targets for project <b>%1</b>:</source> <comment>%1: Project name</comment> - <translation type="obsolete">Qt Creator peut mettre en place les cibles suivantes pour le projet <b>%1</b>&nbsp;:</translation> + <translation type="obsolete">Qt Creator peut mettre en place les cibles suivantes pour le projet <b>%1</b> :</translation> </message> <message> <source><span style=" font-weight:600;">No valid kits found.</span></source> @@ -45805,7 +45805,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P <message> <source>Qt Creator can use the following kits for project <b>%1</b>:</source> <comment>%1: Project name</comment> - <translation>Qt Creator peut utiliser les kits suivant pour le projet <b>%1</>&nbsp;:</translation> + <translation>Qt Creator peut utiliser les kits suivant pour le projet <b>%1</> :</translation> </message> <message> <source>No Build Found</source> @@ -45832,7 +45832,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source><b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible.</source> - <translation><b>Erreur&nbsp;:</b> Impossible de décoder "%1" avec l'encodage "%2". L'édition est impossible.</translation> + <translation><b>Erreur :</b> Impossible de décoder "%1" avec l'encodage "%2". L'édition est impossible.</translation> </message> <message> <source>Select Encoding</source> @@ -45911,15 +45911,15 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P <name>Analyzer::Internal::ValgrindEngine</name> <message> <source>Valgrind options: %1</source> - <translation type="obsolete">Options de Valgrind&nbsp;: %1</translation> + <translation type="obsolete">Options de Valgrind : %1</translation> </message> <message> <source>Working directory: %1</source> - <translation type="obsolete">Répertoire de travail&nbsp;: %1</translation> + <translation type="obsolete">Répertoire de travail : %1</translation> </message> <message> <source>Command-line arguments: %1</source> - <translation type="obsolete">Arguments de la commande&nbsp;: %1</translation> + <translation type="obsolete">Arguments de la commande : %1</translation> </message> <message> <source>** Analysing finished **</source> @@ -45931,7 +45931,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>** Error: no valgrind executable set **</source> - <translation type="obsolete">** Erreur&nbsp;: acun éxécutable de Valgring défini **</translation> + <translation type="obsolete">** Erreur : acun éxécutable de Valgring défini **</translation> </message> <message> <source>** Process Terminated **</source> @@ -45953,7 +45953,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P <name>VcsBase::VcsBaseClient</name> <message> <source>Unable to start process '%1': %2</source> - <translation>Impossible de démarrer le processus "%1"&nbsp;: %2</translation> + <translation>Impossible de démarrer le processus "%1" : %2</translation> </message> <message> <source>Timed out after %1s waiting for the process %2 to finish.</source> @@ -46016,18 +46016,18 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>Would you like to revert the chunk?</source> - <translation>Souhaitez-vous rétabir le morceau&nbsp;?</translation> + <translation>Souhaitez-vous rétabir le morceau ?</translation> </message> <message> <source>Would you like to apply the chunk?</source> - <translation>Souhaitez-vous appliquer le morceau&nbsp;?</translation> + <translation>Souhaitez-vous appliquer le morceau ?</translation> </message> </context> <context> <name>VcsBase::VcsJobRunner</name> <message> <source>Unable to start process '%1': %2</source> - <translation type="obsolete">Impossible de démarrer le processus "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de démarrer le processus "%1" : %2</translation> </message> <message> <source>Timed out after %1s waiting for the process %2 to finish.</source> @@ -46038,23 +46038,23 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P <name>SymbianUtils::VirtualSerialDevice</name> <message> <source>The port %1 could not be opened: %2 (POSIX error %3)</source> - <translation type="obsolete">Le port %1 n'a pas pu être ouvert&nbsp;: %2 (erreur POSIX %3)</translation> + <translation type="obsolete">Le port %1 n'a pas pu être ouvert : %2 (erreur POSIX %3)</translation> </message> <message> <source>Unable to retrieve terminal settings of port %1: %2 (POSIX error %3)</source> - <translation type="obsolete">Impossible de récupérer les paramètrse du terminal pour le port %1&nbsp;: %2 (erreur POSIX %3)</translation> + <translation type="obsolete">Impossible de récupérer les paramètrse du terminal pour le port %1 : %2 (erreur POSIX %3)</translation> </message> <message> <source>Unable to apply terminal settings to port %1: %2 (POSIX error %3)</source> - <translation type="obsolete">Impossible d'appliquer les paramètrse du terminal pour le port %1&nbsp;: %2 (erreur POSIX %3)</translation> + <translation type="obsolete">Impossible d'appliquer les paramètrse du terminal pour le port %1 : %2 (erreur POSIX %3)</translation> </message> <message> <source>Cannot write to port %1: %2 (POSIX error %3)</source> - <translation type="obsolete">Impossible d'écrire sur le port %1&nbsp;: %2 (erreur POSIX %3)</translation> + <translation type="obsolete">Impossible d'écrire sur le port %1 : %2 (erreur POSIX %3)</translation> </message> <message> <source>The function select() returned an error on port %1: %2 (POSIX error %3)</source> - <translation type="obsolete">La fonction select() a retrouné une erreur sur le port %1&nbsp;: %2 (erreur POSIX %3)</translation> + <translation type="obsolete">La fonction select() a retrouné une erreur sur le port %1 : %2 (erreur POSIX %3)</translation> </message> <message> <source>Port not found</source> @@ -46074,23 +46074,23 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>The port %1 could not be opened: %2</source> - <translation type="obsolete">Le port %1 n'a pas pu être ouvert&nbsp;: %2</translation> + <translation type="obsolete">Le port %1 n'a pas pu être ouvert : %2</translation> </message> <message> <source>An error occurred while waiting for read notifications from %1: %2</source> - <translation type="obsolete">Une erreur est apparue lors de l'attente pour les notifications de lecture depuis %1&nbsp;: %2</translation> + <translation type="obsolete">Une erreur est apparue lors de l'attente pour les notifications de lecture depuis %1 : %2</translation> </message> <message> <source>An error occurred while reading from %1: %2</source> - <translation type="obsolete">Une erreur est apparue lors de la lecture depuis %1&nbsp;: %2</translation> + <translation type="obsolete">Une erreur est apparue lors de la lecture depuis %1 : %2</translation> </message> <message> <source>An error occurred while writing to %1: %2</source> - <translation type="obsolete">Une erreur est apparue lors de l'écriture sur %1&nbsp;: %2</translation> + <translation type="obsolete">Une erreur est apparue lors de l'écriture sur %1 : %2</translation> </message> <message> <source>An error occurred while syncing on waitForBytesWritten for %1: %2</source> - <translation type="obsolete">Une erreur est apparue lors de la synchronisation sur waitForBytesWritten pour %1&nbsp;: %2</translation> + <translation type="obsolete">Une erreur est apparue lors de la synchronisation sur waitForBytesWritten pour %1 : %2</translation> </message> </context> <context> @@ -46101,7 +46101,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>Failed opening project '%1': Project is not a file</source> - <translation>Échec de l'ouverture du projet "%1"&nbsp;: le projet n'est pas un fichier</translation> + <translation>Échec de l'ouverture du projet "%1" : le projet n'est pas un fichier</translation> </message> </context> <context> @@ -46115,7 +46115,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P <name>QmakeProjectManager::Internal::MaemoToolChainConfigWidget</name> <message> <source><html><head/><body><table><tr><td>Path to MADDE:</td><td>%1</td></tr><tr><td>Path to MADDE target:</td><td>%2</td></tr><tr><td>Debugger:</td/><td>%3</td></tr></body></html></source> - <translation type="obsolete"><html><head/><body><table><tr><td>Chemin de MADDE&nbsp;:</td><td>%1</td></tr><tr><td>Chemin de la cible MADDE&nbsp;:</td><td>%2</td></tr><tr><td>Débogueur&nbsp;:</td/><td>%3</td></tr></body></html></translation> + <translation type="obsolete"><html><head/><body><table><tr><td>Chemin de MADDE :</td><td>%1</td></tr><tr><td>Chemin de la cible MADDE :</td><td>%2</td></tr><tr><td>Débogueur :</td/><td>%3</td></tr></body></html></translation> </message> </context> <context> @@ -46207,7 +46207,7 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P <name>FlickableSpecifics</name> <message> <source>Flickable</source> - <translatorcomment>Défilable&nbsp;?.</translatorcomment> + <translatorcomment>Défilable ?.</translatorcomment> <translation type="obsolete">Flickable</translation> </message> <message> @@ -46255,11 +46255,11 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>Host:</source> - <translation type="obsolete">Hôte&nbsp;: </translation> + <translation type="obsolete">Hôte : </translation> </message> <message> <source>User:</source> - <translation type="obsolete">Utilisateur&nbsp;:</translation> + <translation type="obsolete">Utilisateur :</translation> </message> <message> <source>You need to pass either a password or an SSH key.</source> @@ -46267,15 +46267,15 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>Password:</source> - <translation type="obsolete">Mot de passe&nbsp;:</translation> + <translation type="obsolete">Mot de passe :</translation> </message> <message> <source>Port:</source> - <translation type="obsolete">Port&nbsp;:</translation> + <translation type="obsolete">Port :</translation> </message> <message> <source>Private key:</source> - <translation type="obsolete">Clé privée&nbsp;: </translation> + <translation type="obsolete">Clé privée : </translation> </message> <message> <source>Target</source> @@ -46283,19 +46283,19 @@ Voys pouvez compiler l'application et la déployer sur desktop et mobile. P </message> <message> <source>Kit:</source> - <translation>Kit&nbsp;:</translation> + <translation>Kit :</translation> </message> <message> <source>Executable:</source> - <translation>Exécutable&nbsp;: </translation> + <translation>Exécutable : </translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Start Remote Analysis</source> @@ -46431,12 +46431,12 @@ a = a + <translation><html><head/><body> Active l'alignement des jetons après =, +=, etc. Quand cette option est désactivée, l'indentation régulière de continuation de ligne sera utilisée.<br> <br> -Avec alignement&nbsp;: +Avec alignement : <pre> a = a + b </pre> -Sans alignement&nbsp;: +Sans alignement : <pre> a = a + b @@ -46463,13 +46463,13 @@ if (a && </pre> </body></html></source> <translation type="obsolete"><html><head/><body> -La marge supplémentaire affecte en général seulement les conditions if. Sans marge supplémentaire&nbsp;: +La marge supplémentaire affecte en général seulement les conditions if. Sans marge supplémentaire : <pre> if (a && b) c; </pre> -Avec marge supplémentaire&nbsp;: +Avec marge supplémentaire : <pre> if (a && b) @@ -46503,13 +46503,13 @@ if (a && <translation><html><head/><body> Ajoute un niveau supplémentaire d'indentation aux conditions multilignes dans les switch, if, while et foreach si elle avaient moins ou autant d'indentation qu'un code imbriqué. -Pour les indentations à quatre espaces, seules les if sont affectés. Sans décalage supplémentaire&nbsp;: +Pour les indentations à quatre espaces, seules les if sont affectés. Sans décalage supplémentaire : <pre> if (a && b) c; </pre> -Avec du décalage supplémentaire&nbsp;: +Avec du décalage supplémentaire : <pre> if (a && b) @@ -46534,7 +46534,7 @@ if (a && int (*pa)[2] = ...; </pre></body></html></source> - <translation><html><head/><body>Cela ne s'applique par à l'étoile et le symbole de la référence pour les pointeurs/références aux fonctions et tableaux, par exemple&nbsp;: + <translation><html><head/><body>Cela ne s'applique par à l'étoile et le symbole de la référence pour les pointeurs/références aux fonctions et tableaux, par exemple : <pre> int (&rf)() = ...; int (*pf)() = ...; @@ -46580,7 +46580,7 @@ if (a && </message> <message> <source>Branch Name:</source> - <translation>Nom de la branche&nbsp;:</translation> + <translation>Nom de la branche :</translation> </message> <message> <source>CheckBox</source> @@ -46611,11 +46611,11 @@ if (a && </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>URL:</source> - <translation>URL&nbsp;: </translation> + <translation>URL : </translation> </message> </context> <context> @@ -46646,7 +46646,7 @@ if (a && </message> <message> <source>Would you like to delete the remote "%1"?</source> - <translation>Voulez-vous supprimer le distant "%1"&nbsp;?</translation> + <translation>Voulez-vous supprimer le distant "%1" ?</translation> </message> <message> <source>&Push</source> @@ -46661,7 +46661,7 @@ if (a && </message> <message> <source>Language:</source> - <translation type="obsolete">Langue&nbsp;:</translation> + <translation type="obsolete">Langue :</translation> </message> </context> <context> @@ -46720,7 +46720,7 @@ if (a && <name>TimeDisplay</name> <message> <source>length: %1</source> - <translation type="obsolete">longueur&nbsp;: %1</translation> + <translation type="obsolete">longueur : %1</translation> </message> </context> <context> @@ -46731,7 +46731,7 @@ if (a && </message> <message> <source>Address:</source> - <translation type="obsolete">Adresse&nbsp;:</translation> + <translation type="obsolete">Adresse :</translation> </message> <message> <source>127.0.0.1</source> @@ -46739,7 +46739,7 @@ if (a && </message> <message> <source>Port:</source> - <translation type="obsolete">Port&nbsp;:</translation> + <translation type="obsolete">Port :</translation> </message> <message> <source>QML Profiler</source> @@ -46747,7 +46747,7 @@ if (a && </message> <message> <source>&Host:</source> - <translation>&Hôte&nbsp;: </translation> + <translation>&Hôte : </translation> </message> <message> <source>localhost</source> @@ -46755,11 +46755,11 @@ if (a && </message> <message> <source>&Port:</source> - <translation>&Port&nbsp;:</translation> + <translation>&Port :</translation> </message> <message> <source>Sys&root:</source> - <translation>&Racine système&nbsp;: </translation> + <translation>&Racine système : </translation> </message> <message> <source>Start QML Profiler</source> @@ -46767,7 +46767,7 @@ if (a && </message> <message> <source>Kit:</source> - <translation>Kit&nbsp;:</translation> + <translation>Kit :</translation> </message> </context> <context> @@ -46835,7 +46835,7 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>QML Dump:</source> - <translation>Dump QML&nbsp;: </translation> + <translation>Dump QML : </translation> </message> <message> <source>A modified version of qmlviewer with support for QML/JS debugging.</source> @@ -46843,7 +46843,7 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>QML Observer:</source> - <translation>Observateur QML&nbsp;:</translation> + <translation>Observateur QML :</translation> </message> <message> <source>Build</source> @@ -46851,7 +46851,7 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>QML Debugging Library:</source> - <translation>Bibliothèque de débogage QML&nbsp;: </translation> + <translation>Bibliothèque de débogage QML : </translation> </message> <message> <source>Helps showing content of Qt types. Only used in older versions of GDB.</source> @@ -46859,7 +46859,7 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>GDB Helper:</source> - <translation>Assistant GDB&nbsp;:</translation> + <translation>Assistant GDB :</translation> </message> <message> <source>Show compiler output of last build.</source> @@ -46879,26 +46879,26 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>Tool Chain:</source> - <translation type="obsolete">Chaîne de compilation&nbsp;:</translation> + <translation type="obsolete">Chaîne de compilation :</translation> </message> <message> <source>Tool chain:</source> - <translation type="obsolete">Chaîne de compilation&nbsp;:</translation> + <translation type="obsolete">Chaîne de compilation :</translation> </message> <message> <source>Compiler:</source> - <translation>Compilateur&nbsp;:</translation> + <translation>Compilateur :</translation> </message> </context> <context> <name>QtSupport::Internal::QtVersionInfo</name> <message> <source>Version name:</source> - <translation>Nom de version&nbsp;:</translation> + <translation>Nom de version :</translation> </message> <message> <source>qmake location:</source> - <translation>Emplacement de qmake&nbsp;:</translation> + <translation>Emplacement de qmake :</translation> </message> <message> <source>Edit</source> @@ -46940,19 +46940,19 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>The name to identify this configuration:</source> - <translation type="obsolete">Le nom pour identifier cette configuration&nbsp;: </translation> + <translation type="obsolete">Le nom pour identifier cette configuration : </translation> </message> <message> <source>The device's host name or IP address:</source> - <translation type="obsolete">Le nom d'hôte du périphérique ou son adresse IP&nbsp;: </translation> + <translation type="obsolete">Le nom d'hôte du périphérique ou son adresse IP : </translation> </message> <message> <source>The user name to log into the device:</source> - <translation type="obsolete">Le nom d'utilisateur pour se connecter sur le périphérique&nbsp;: </translation> + <translation type="obsolete">Le nom d'utilisateur pour se connecter sur le périphérique : </translation> </message> <message> <source>The authentication type:</source> - <translation type="obsolete">Le type d'authentification&nbsp;: </translation> + <translation type="obsolete">Le type d'authentification : </translation> </message> <message> <source>Password</source> @@ -46964,11 +46964,11 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>The user's password:</source> - <translation type="obsolete">Le mot de passe de l'utilisateur&nbsp;: </translation> + <translation type="obsolete">Le mot de passe de l'utilisateur : </translation> </message> <message> <source>The file containing the user's private key:</source> - <translation type="obsolete">Le fichier contenant la clé privée de l'utilisateur&nbsp;: </translation> + <translation type="obsolete">Le fichier contenant la clé privée de l'utilisateur : </translation> </message> </context> <context> @@ -46979,7 +46979,7 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>Available device types:</source> - <translation type="obsolete">Types de périphérique disponibles&nbsp;: </translation> + <translation type="obsolete">Types de périphérique disponibles : </translation> </message> </context> <context> @@ -46990,7 +46990,7 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>Device configuration:</source> - <translation type="obsolete">Configuration du périphérique&nbsp;:</translation> + <translation type="obsolete">Configuration du périphérique :</translation> </message> <message> <source><a href="irrelevant">Manage device configurations</a></source> @@ -47002,7 +47002,7 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>Files to install for subproject:</source> - <translation type="obsolete">Fichiers à installer pour le sous-projet&nbsp;:</translation> + <translation type="obsolete">Fichiers à installer pour le sous-projet :</translation> </message> <message> <source>Edit the project file to add or remove entries.</source> @@ -47025,7 +47025,7 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>Tab settings:</source> - <translation type="obsolete">Paramètres d'onglets&nbsp;: </translation> + <translation type="obsolete">Paramètres d'onglets : </translation> </message> </context> <context> @@ -47052,11 +47052,11 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>Ta&b size:</source> - <translation type="obsolete">Taille de ta&bulation&nbsp;: </translation> + <translation type="obsolete">Taille de ta&bulation : </translation> </message> <message> <source>&Indent size:</source> - <translation type="obsolete">Taille de l'&indentation&nbsp;: </translation> + <translation type="obsolete">Taille de l'&indentation : </translation> </message> <message> <source>Enable automatic &indentation</source> @@ -47072,7 +47072,7 @@ Ils requièrent Qt 4.7.4 ou supérieur et l'ensemble de composants install </message> <message> <source>Align continuation lines:</source> - <translation type="obsolete">Aligner les lignes de continuation&nbsp;: </translation> + <translation type="obsolete">Aligner les lignes de continuation : </translation> </message> <message> <source><html><head/><body> @@ -47103,19 +47103,19 @@ Influences the indentation of continuation lines. <translation type="obsolete"><html><head/><body> Influence l'indentation des lignes de continuation. <ul> -<li>Pas du tout&nbsp;: ne pas aligner. Les lignes ne seront indentées jusqu'à la profondeur d'indentation logique. +<li>Pas du tout : ne pas aligner. Les lignes ne seront indentées jusqu'à la profondeur d'indentation logique. <pre> (tab)int i = foo(a, b (tab)c, d); </pre> </li> -<li>Avec espaces&nbsp;: toujours utiliser des espaces pour l'alignement, sans tenir compte des autres paramètres d'indentation. +<li>Avec espaces : toujours utiliser des espaces pour l'alignement, sans tenir compte des autres paramètres d'indentation. <pre> (tab)int i = foo(a, b (tab) c, d); </pre> </li> -<li>Avec indentation régulière&nbsp;: utiliser des tabulations et/ou des espaces pour l'alignement, en fonction de la configuration. +<li>Avec indentation régulière : utiliser des tabulations et/ou des espaces pour l'alignement, en fonction de la configuration. <pre> (tab)int i = foo(a, b (tab)(tab)(tab) c, d); @@ -47137,7 +47137,7 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Tab key performs auto-indent:</source> - <translation type="obsolete">La touche tabulation active l'identation automatique&nbsp;: </translation> + <translation type="obsolete">La touche tabulation active l'identation automatique : </translation> </message> <message> <source>Never</source> @@ -47153,7 +47153,7 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Tab policy:</source> - <translation type="obsolete">Politique de tabulation&nbsp;:</translation> + <translation type="obsolete">Politique de tabulation :</translation> </message> <message> <source>Spaces Only</source> @@ -47176,11 +47176,11 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Suppression File:</source> - <translation>Fichier de suppression&nbsp;: </translation> + <translation>Fichier de suppression : </translation> </message> <message> <source>Suppression:</source> - <translation>Suppression&nbsp;: </translation> + <translation>Suppression : </translation> </message> <message> <source>Select Suppression File</source> @@ -47199,7 +47199,7 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Valgrind executable:</source> - <translation>Exécutable Valgrind&nbsp;: </translation> + <translation>Exécutable Valgrind : </translation> </message> <message> <source>Memory Analysis Options</source> @@ -47207,11 +47207,11 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Backtrace frame count:</source> - <translation>Backtrace le nombre de frame&nbsp;: </translation> + <translation>Backtrace le nombre de frame : </translation> </message> <message> <source>Suppression files:</source> - <translation>Suppression des fichiers&nbsp;:</translation> + <translation>Suppression des fichiers :</translation> </message> <message> <source>Add...</source> @@ -47235,7 +47235,7 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Result view: Minimum event cost:</source> - <translation>Vue du résultat, coût d'événement minimal&nbsp;: </translation> + <translation>Vue du résultat, coût d'événement minimal : </translation> </message> <message> <source>%</source> @@ -47262,7 +47262,7 @@ With cache simulation, further event counters are enabled: <p>Effectuer une simulation de cache complète. </p> <p>Par défaut, seules les instructions d'accès en lecture sont comptées ("Ir").</p> <p> -Avec la simulation de cache, d'autres compteurs d'événements sont activés&nbsp;: +Avec la simulation de cache, d'autres compteurs d'événements sont activés : <ul><li>ratages de cache sur les lectures d'instructions ("I1mr"/"I2mr") ; </li> <li>accès en lecture aux données ("Dr") et ratages de cache associés ("D1mr"/"D2mr") ; </li> <li>accès en écriture aux données ("Dw") et ratages de cache associés ("D1mw"/"D2mw").</li></ul> @@ -47284,7 +47284,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac "Bi"/"Bim")</li></ul></body></html></source> <translation><html><head/><body> <p>Effectue la simulation de prédiction de branche.</p> -<p>Les Compteurs d'événements supplémentaires sont activés&nbsp;: </p> +<p>Les Compteurs d'événements supplémentaires sont activés : </p> <ul><li>nombre de branches conditionelles exécutées et ratage du prédicteur associé ( "Bc"/"Bcm") ; </li> <li>sauts indirectement exécutés et ratage associés du saut de l'adresse du prédicteur ( @@ -47312,7 +47312,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac </message> <message> <source>Visualisation: Minimum event cost:</source> - <translation type="obsolete">Visualisation, coût minimal d'événement&nbsp;: </translation> + <translation type="obsolete">Visualisation, coût minimal d'événement : </translation> </message> <message> <source>Valgrind Command</source> @@ -47328,11 +47328,11 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac </message> <message> <source>Visualization: Minimum event cost:</source> - <translation>Visualisation du coût minimal d'événement&nbsp;:</translation> + <translation>Visualisation du coût minimal d'événement :</translation> </message> <message> <source>Detect self-modifying code:</source> - <translation>Détection du code auto-modifié&nbsp;:</translation> + <translation>Détection du code auto-modifié :</translation> </message> <message> <source>No</source> @@ -47356,7 +47356,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac </message> <message> <source>Check for leaks on finish:</source> - <translation>Vérification des fuites lorsque c'est fini&nbsp;:</translation> + <translation>Vérification des fuites lorsque c'est fini :</translation> </message> <message> <source>Summary Only</source> @@ -47781,7 +47781,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac </message> <message> <source>pathItemCount: number of items visible on the path at any one time.</source> - <translation>pathItemCount&nbsp;: nombre d'éléments visible sur le cheminà n'importe quel moment.</translation> + <translation>pathItemCount : nombre d'éléments visible sur le cheminà n'importe quel moment.</translation> </message> <message> <source>Path View Highlight</source> @@ -47901,7 +47901,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac <name>ExampleDelegate</name> <message> <source>Tags:</source> - <translation type="obsolete">Tags&nbsp;:</translation> + <translation type="obsolete">Tags :</translation> </message> </context> <context> @@ -47971,7 +47971,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac <name>TagBrowser</name> <message> <source>Please choose a tag to filter for:</source> - <translation type="obsolete">Veuillez choisir un tag pour filtrer&nbsp;: </translation> + <translation type="obsolete">Veuillez choisir un tag pour filtrer : </translation> </message> </context> <context> @@ -48002,11 +48002,11 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac </message> <message> <source>Cannot open %1 for reading: %2</source> - <translation>Impossible d'ouvrir %1 en lecture&nbsp;: %2</translation> + <translation>Impossible d'ouvrir %1 en lecture : %2</translation> </message> <message> <source>Cannot read %1: %2</source> - <translation>Impossible de lire %1&nbsp;: %2</translation> + <translation>Impossible de lire %1 : %2</translation> </message> <message> <source>File Error</source> @@ -48014,19 +48014,19 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac </message> <message> <source>Cannot write file %1. Disk full?</source> - <translation>Impossible d'écrire dans le fichier %1. Disque plein&nbsp;?</translation> + <translation>Impossible d'écrire dans le fichier %1. Disque plein ?</translation> </message> <message> <source>Cannot overwrite file %1: %2</source> - <translation>L'écrasement du fichier %1 a échoué&nbsp;: %2</translation> + <translation>L'écrasement du fichier %1 a échoué : %2</translation> </message> <message> <source>Cannot create file %1: %2</source> - <translation>Impossible de créer le fichier %1&nbsp;: %2</translation> + <translation>Impossible de créer le fichier %1 : %2</translation> </message> <message> <source>Cannot create temporary file in %1: %2</source> - <translation>Impossible de créer un fichier temporaire dans %1&nbsp;: %2</translation> + <translation>Impossible de créer un fichier temporaire dans %1 : %2</translation> </message> </context> <context> @@ -48049,11 +48049,11 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac </message> <message> <source><html><head/><body><p>You are trying to run the tool "%1" on an application in %2 mode. The tool is designed to be used in %3 mode.</p><p>Debug and Release mode run-time characteristics differ significantly, analytical findings for one mode may or may not be relevant for the other.</p><p>Do you want to continue and run the tool in %2 mode?</p></body></html></source> - <translation><html><head/><body><p>Vous essayez d'exécuter l'outil "%1" sur une application en mode %2. L'outil a été conçu pour être utilisé dans le mode %3.</p><p>Les modes Debug et Release ont des caratéristiques d'exécution très différentes, les suppositions analytiques d'un mode peuvent être ou ne pas être pertinentes pour un autre mode.</p><p>Souhaitez-vous continuer et exécuter l'outil dans le mode %2&nbsp;?</p></body></html></translation> + <translation><html><head/><body><p>Vous essayez d'exécuter l'outil "%1" sur une application en mode %2. L'outil a été conçu pour être utilisé dans le mode %3.</p><p>Les modes Debug et Release ont des caratéristiques d'exécution très différentes, les suppositions analytiques d'un mode peuvent être ou ne pas être pertinentes pour un autre mode.</p><p>Souhaitez-vous continuer et exécuter l'outil dans le mode %2 ?</p></body></html></translation> </message> <message> <source><html><head/><body><center><i>%1</i> is still running. You have to quit the Analyzer before being able to run another instance.<center/><center>Force it to quit?</center></body></html></source> - <translation type="obsolete"><html><head/><body><center><i>%1</i> est toujours en cours d'exécution. Vous devez quitter l'analyseur avant de pouvoir exécuter une nouvelle instance.</center><center>Voulez-vous le forcer à quitter&nbsp;?</center></body></html></translation> + <translation type="obsolete"><html><head/><body><center><i>%1</i> est toujours en cours d'exécution. Vous devez quitter l'analyseur avant de pouvoir exécuter une nouvelle instance.</center><center>Voulez-vous le forcer à quitter ?</center></body></html></translation> </message> <message> <source>Analyzer Still Running</source> @@ -48081,7 +48081,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac </message> <message> <source><html><head/><body><p>You are trying to run the tool "%1" on an application in %2 mode. The tool is designed to be used in %3 mode.</p><p>Do you want to continue and run it in %2 mode?</p></body></html></source> - <translation type="obsolete"><html><head/><body><p>Vous essayez d'exécuter l'outil "%1" en mode %2 sur une application. Cette outil est prévu pour être utilisé en mode %3.</p><p>Voulez-vous continuer et le lancer en mode %2&nbsp;?</p></body></html></translation> + <translation type="obsolete"><html><head/><body><p>Vous essayez d'exécuter l'outil "%1" en mode %2 sur une application. Cette outil est prévu pour être utilisé en mode %3.</p><p>Voulez-vous continuer et le lancer en mode %2 ?</p></body></html></translation> </message> <message> <source>&Do not ask again</source> @@ -48104,7 +48104,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac </message> <message> <source>Available settings: %1</source> - <translation type="obsolete">Options diponibles&nbsp;: %1</translation> + <translation type="obsolete">Options diponibles : %1</translation> </message> <message> <source>Use <strong>Customized Settings<strong></source> @@ -48145,7 +48145,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac <name>BinEditorFile</name> <message> <source>Cannot open %1: %2</source> - <translation type="obsolete">Imposible d'ouvrir %1&nbsp;: %2</translation> + <translation type="obsolete">Imposible d'ouvrir %1 : %2</translation> </message> <message> <source>File Error</source> @@ -48173,7 +48173,7 @@ Avec la simulation de cache, d'autres compteurs d'événements sont ac <source>The following files already exist in the folder %1. Would you like to overwrite them?</source> - <translation>Les fichiers suivants existent déjà dans le dossier %1. Voulez-vous les écraser&nbsp;? </translation> + <translation>Les fichiers suivants existent déjà dans le dossier %1. Voulez-vous les écraser ? </translation> </message> </context> <context> @@ -48219,7 +48219,7 @@ Would you like to overwrite them?</source> <name>CppTools::Internal::CppCodeStylePreferencesWidget</name> <message> <source>Code style settings:</source> - <translation type="obsolete">Paramètres de style de code&nbsp;: </translation> + <translation type="obsolete">Paramètres de style de code : </translation> </message> </context> <context> @@ -48314,11 +48314,11 @@ Would you like to overwrite them?</source> <name>GenericProjectManager::Internal::FilesSelectionWizardPage</name> <message> <source>Hide files matching:</source> - <translation>Cacher les fichiers correspondant à &nbsp;: </translation> + <translation>Cacher les fichiers correspondant à : </translation> </message> <message> <source>Show files matching:</source> - <translation>Afficher les fichiers correspondants&nbsp;:</translation> + <translation>Afficher les fichiers correspondants :</translation> </message> <message> <source>Apply Filter</source> @@ -48348,11 +48348,11 @@ Would you like to overwrite them?</source> </message> <message> <source>Hide files matching:</source> - <translation>Cacher les fichiers correspondant à &nbsp;: </translation> + <translation>Cacher les fichiers correspondant à : </translation> </message> <message> <source>Show files matching:</source> - <translation>Afficher les fichiers correspondants&nbsp;:</translation> + <translation>Afficher les fichiers correspondants :</translation> </message> <message> <source>Apply Filter</source> @@ -48598,15 +48598,15 @@ These files are preserved.</source> <message> <source>Select parent: %1</source> <translatorcomment>?</translatorcomment> - <translation type="obsolete">Sélectionner le parent&nbsp;: %1</translation> + <translation type="obsolete">Sélectionner le parent : %1</translation> </message> <message> <source>Select: %1</source> - <translation type="obsolete">Sélectionner&nbsp;: %1</translation> + <translation type="obsolete">Sélectionner : %1</translation> </message> <message> <source>Stack (z)</source> - <translatorcomment>(z) ->&nbsp;?</translatorcomment> + <translatorcomment>(z) -> ?</translatorcomment> <translation type="obsolete">Pile (z)</translation> </message> <message> @@ -48816,7 +48816,7 @@ These files are preserved.</source> <source>Could not connect to the in-process QML debugger: %1</source> <extracomment>%1 is detailed error message</extracomment> - <translation>Impossible de se connecter au processus de débogage QML&nbsp;: %1</translation> + <translation>Impossible de se connecter au processus de débogage QML : %1</translation> </message> </context> <context> @@ -48966,7 +48966,7 @@ The Qt version configured in your active build configuration is too old. Do you want to continue?</source> <translation>Le profileur QML nécessite Qt 4.7.4 ou supérieur. La version de Qt configurée dans votre configuration de compilation active est trop ancienne. -Voulez vous continuer&nbsp;?</translation> +Voulez vous continuer ?</translation> </message> <message> <source>Events</source> @@ -48986,7 +48986,7 @@ Voulez vous continuer&nbsp;?</translation> </message> <message> <source>Elapsed: %1</source> - <translation>Écoulé&nbsp;: %1</translation> + <translation>Écoulé : %1</translation> </message> <message> <source>QML traces (*%1)</source> @@ -49006,7 +49006,7 @@ Voulez vous continuer&nbsp;?</translation> </message> <message> <source>Elapsed: 0 s</source> - <translation type="obsolete">Écoulé&nbsp;: 0 s </translation> + <translation type="obsolete">Écoulé : 0 s </translation> </message> <message> <source>Disable profiling</source> @@ -49018,7 +49018,7 @@ Voulez vous continuer&nbsp;?</translation> </message> <message> <source>Elapsed: %1 s</source> - <translation type="obsolete">Écoulé&nbsp;: %1 s</translation> + <translation type="obsolete">Écoulé : %1 s</translation> </message> <message> <source>Qt Creator</source> @@ -49028,7 +49028,7 @@ Voulez vous continuer&nbsp;?</translation> <source>Could not connect to the in-process QML profiler. Do you want to retry?</source> <translation type="obsolete">Impossible de connecter au profileur QML du processus. -Souhaitez-vous réessayer&nbsp;?</translation> +Souhaitez-vous réessayer ?</translation> </message> <message> <source>QML traces (%1)</source> @@ -49043,7 +49043,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> <name>QmlProfiler::Internal::RemoteLinuxQmlProfilerRunner</name> <message> <source>Gathering ports failed: %1</source> - <translation type="obsolete">Échec de la récupération des ports&nbsp;: %1 </translation> + <translation type="obsolete">Échec de la récupération des ports : %1 </translation> </message> <message> <source>Not enough free ports on device for analyzing. @@ -49090,7 +49090,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> </message> <message> <source>View event information on mouseover</source> - <translatorcomment>Euh, j'ai fait une tirade, là &nbsp;:D</translatorcomment> + <translatorcomment>Euh, j'ai fait une tirade, là :D</translatorcomment> <translation type="obsolete">Afficher les informations sur l'événement lorsque du survol de la souris</translation> </message> <message> @@ -49158,7 +49158,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> <message> <source>Executable file: %1 </source> - <translation type="obsolete">Fichier exécutable&nbsp;: %1 + <translation type="obsolete">Fichier exécutable : %1 </translation> </message> <message> @@ -49175,19 +49175,19 @@ Souhaitez-vous réessayer&nbsp;?</translation> <message> <source>Could not open serial device: %1 </source> - <translation type="obsolete">Impossible d'ouvrir le périphérique série&nbsp;: %1 + <translation type="obsolete">Impossible d'ouvrir le périphérique série : %1 </translation> </message> <message> <source>Connecting to %1:%2... </source> - <translation type="obsolete">Connexion à %1&nbsp;: %2... + <translation type="obsolete">Connexion à %1 : %2... </translation> </message> <message> <source>Error: %1 </source> - <translation type="obsolete">Erreur&nbsp;: %1 + <translation type="obsolete">Erreur : %1 </translation> </message> <message> @@ -49205,7 +49205,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> <message> <source>Thread has crashed: %1 </source> - <translation type="obsolete">Thread crashé&nbsp;: %1 + <translation type="obsolete">Thread crashé : %1 </translation> </message> <message> @@ -49217,7 +49217,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> <message> <source>Launching: %1 </source> - <translation type="obsolete">Lancement&nbsp;: %1 + <translation type="obsolete">Lancement : %1 </translation> </message> <message> @@ -49229,7 +49229,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> <message> <source>Launch failed: %1 </source> - <translation type="obsolete">Le lancement a échoué&nbsp;: %1 + <translation type="obsolete">Le lancement a échoué : %1 </translation> </message> <message> @@ -49327,11 +49327,11 @@ Souhaitez-vous réessayer&nbsp;?</translation> </message> <message> <source>Choose a build configuration:</source> - <translation type="obsolete">Choisir une configuration de compilation&nbsp;:</translation> + <translation type="obsolete">Choisir une configuration de compilation :</translation> </message> <message> <source>Choose a tool chain:</source> - <translation type="obsolete">Choisir une chaîne de compilation&nbsp;:</translation> + <translation type="obsolete">Choisir une chaîne de compilation :</translation> </message> <message> <source>Only Qt versions above 4.6.3 are made available in this wizard. @@ -49353,7 +49353,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source><html><head/><body><center><i>%1</i> is still running on the device.</center><center>Terminating it can leave the target in an inconsistent state.</center><center>Would you still like to terminate it?</center></body></html></source> - <translation type="obsolete"><html><head/><body><center><i>%1</i> est toujours en cours d'exécution sur le périphérique.</center><center>Le terminer peut laisser la cible dans un état incohérent.</center><center>Voulez-vous toujours le terminer&nbsp;?</center></body></html></translation> + <translation type="obsolete"><html><head/><body><center><i>%1</i> est toujours en cours d'exécution sur le périphérique.</center><center>Le terminer peut laisser la cible dans un état incohérent.</center><center>Voulez-vous toujours le terminer ?</center></body></html></translation> </message> <message> <source>Application Still Running</source> @@ -49377,11 +49377,11 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f <name>QmakeProjectManager::Internal::SymbianQtConfigWidget</name> <message> <source>S60 SDK:</source> - <translation type="obsolete">SDK S60&nbsp;:</translation> + <translation type="obsolete">SDK S60 :</translation> </message> <message> <source>SBS v2 directory:</source> - <translation type="obsolete">Répertoire SBS v2&nbsp;: </translation> + <translation type="obsolete">Répertoire SBS v2 : </translation> </message> </context> <context> @@ -49434,7 +49434,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>Invalid Qt version</source> @@ -49442,27 +49442,27 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>ABI:</source> - <translation>ABI&nbsp;:</translation> + <translation>ABI :</translation> </message> <message> <source>Source:</source> - <translation>Source&nbsp;:</translation> + <translation>Source :</translation> </message> <message> <source>mkspec:</source> - <translation>mkspec&nbsp;:</translation> + <translation>mkspec :</translation> </message> <message> <source>qmake:</source> - <translation>qmake&nbsp;:</translation> + <translation>qmake :</translation> </message> <message> <source>Default:</source> - <translation>Par défaut&nbsp;:</translation> + <translation>Par défaut :</translation> </message> <message> <source>Version:</source> - <translation>Version&nbsp;:</translation> + <translation>Version :</translation> </message> <message> <source>No Qt version.</source> @@ -49497,15 +49497,15 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Copy Project to writable Location?</source> - <translation type="obsolete">Copier le projet à un emplacement accessible en écriture&nbsp;?</translation> + <translation type="obsolete">Copier le projet à un emplacement accessible en écriture ?</translation> </message> <message> <source><p>The project you are about to open is located in the write-protected location:</p><blockquote>%1</blockquote><p>Please select a writable location below and click "Copy Project and Open" to open a modifiable copy of the project or click "Keep Project and Open" to open the project in location.</p><p><b>Note:</b> You will not be able to alter or compile your project in the current location.</p></source> - <translation type="obsolete"><p>Le projet que vous vous apprêtez à ouvrir se trouve dans un emplacement accessible en lecture seule&nbsp;:</p><blockquote>%1</blockquote><p>Veuillez sélectionner un emplacement accessible en écriture et cliquez sur "Copier projet et ouvrir" pour ouvrir une copie modifiable. Cliquez sur "Conserver l'emplacement et ouvrir" pour ouvrir le projet à l'emplacement courant.</p><p><b>Note&nbsp;:</b> vous ne pourrez pas modifier ou compiler votre projet à l'emplacement courant.</p></translation> + <translation type="obsolete"><p>Le projet que vous vous apprêtez à ouvrir se trouve dans un emplacement accessible en lecture seule :</p><blockquote>%1</blockquote><p>Veuillez sélectionner un emplacement accessible en écriture et cliquez sur "Copier projet et ouvrir" pour ouvrir une copie modifiable. Cliquez sur "Conserver l'emplacement et ouvrir" pour ouvrir le projet à l'emplacement courant.</p><p><b>Note :</b> vous ne pourrez pas modifier ou compiler votre projet à l'emplacement courant.</p></translation> </message> <message> <source>&Location:</source> - <translation type="obsolete">&Emplacement&nbsp;:</translation> + <translation type="obsolete">&Emplacement :</translation> </message> <message> <source>&Copy Project and Open</source> @@ -49556,7 +49556,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Do you want to remove all invalid Qt Versions?<br><ul><li>%1</li></ul><br>will be removed.</source> - <translation>Voulez-vous retirer toutes les versions de Qt invalides&nbsp;? <br/><ul><li>%1</li><br/> seront supprimées. </translation> + <translation>Voulez-vous retirer toutes les versions de Qt invalides ? <br/><ul><li>%1</li><br/> seront supprimées. </translation> </message> <message> <source>Qt version %1 for %2</source> @@ -49572,7 +49572,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>The following ABIs are currently not supported:<ul><li>%1</li></ul></source> - <translation>Les ABI suivantes ne sont pas supportées&nbsp;: <ul><li>%1</li></ul></translation> + <translation>Les ABI suivantes ne sont pas supportées : <ul><li>%1</li></ul></translation> </message> <message> <source>Building helpers</source> @@ -49596,7 +49596,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>The qmake executable %1 could not be added: %2</source> - <translation>L'exécutable qmake %1 n'a pas pu être ajouté&nbsp;: %2</translation> + <translation>L'exécutable qmake %1 n'a pas pu être ajouté : %2</translation> </message> <message> <source>Select a qmake executable</source> @@ -49644,12 +49644,12 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Helpers: None available</source> - <translation>Assistants&nbsp;: aucun disponible</translation> + <translation>Assistants : aucun disponible</translation> </message> <message> <source>Helpers: %1.</source> <extracomment>%1 is list of tool names.</extracomment> - <translation>Assistants&nbsp;: %1. </translation> + <translation>Assistants : %1. </translation> </message> <message> <source><i>Not yet built.</i></source> @@ -49665,11 +49665,11 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>S60 SDK:</source> - <translation type="obsolete">SDK S60&nbsp;:</translation> + <translation type="obsolete">SDK S60 :</translation> </message> <message> <source>SBS v2 directory:</source> - <translation type="obsolete">Répertoire SBS v2&nbsp;: </translation> + <translation type="obsolete">Répertoire SBS v2 : </translation> </message> </context> <context> @@ -49694,15 +49694,15 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Cannot deploy: Still cleaning up from last time.</source> - <translation type="obsolete">Impossible de déployer&nbsp;: le dernier nettoyage n'est pas encore terminé.</translation> + <translation type="obsolete">Impossible de déployer : le dernier nettoyage n'est pas encore terminé.</translation> </message> <message> <source>Cannot deploy: Qemu was not running. It has now been started up for you, but it will take a bit of time until it is ready. Please try again then.</source> - <translation type="obsolete">Impossible de déployer&nbsp;: Qemu n'était pas lancé. Il a maintenant été démarré, mais il prendra un peu de temps avant d'être prêt. Veuillez réessayer alors. </translation> + <translation type="obsolete">Impossible de déployer : Qemu n'était pas lancé. Il a maintenant été démarré, mais il prendra un peu de temps avant d'être prêt. Veuillez réessayer alors. </translation> </message> <message> <source>Cannot deploy: You want to deploy to Qemu, but it is not enabled for this Qt version.</source> - <translation type="obsolete">Impossible de déployer&nbsp;: vous voulez déployer sur Qemu, mais il n'est pas activé pour cette version de Qt. </translation> + <translation type="obsolete">Impossible de déployer : vous voulez déployer sur Qemu, mais il n'est pas activé pour cette version de Qt. </translation> </message> <message> <source>All files up to date, no installation necessary.</source> @@ -49710,7 +49710,7 @@ Les version de Qt précédentes ont des limitations lors de la compilation des f </message> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Connecting to device...</source> @@ -49824,7 +49824,7 @@ In addition, device connectivity will be tested.</source> </message> <message> <source>Available device types:</source> - <translation type="obsolete">Types de périphérique disponibles&nbsp;: </translation> + <translation type="obsolete">Types de périphérique disponibles : </translation> </message> </context> <context> @@ -49862,20 +49862,20 @@ In addition, device connectivity will be tested.</source> </message> <message> <source>Could not connect to host: %1</source> - <translation type="obsolete">Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source> Did you start Qemu?</source> - <translation type="obsolete">Avez-vous lancé Qemu&nbsp;?</translation> + <translation type="obsolete">Avez-vous lancé Qemu ?</translation> </message> <message> <source>Remote process failed: %1</source> - <translation type="obsolete">Échec du processus distant&nbsp;: %1</translation> + <translation type="obsolete">Échec du processus distant : %1</translation> </message> <message> <source>Qt version mismatch! Expected Qt on device: 4.6.2 or later.</source> - <translation type="obsolete">Conflit de versions de Qt&nbsp;! Version de Qt attendue sur le périphérique&nbsp;: 4.6.2 ou supérieure.</translation> + <translation type="obsolete">Conflit de versions de Qt ! Version de Qt attendue sur le périphérique : 4.6.2 ou supérieure.</translation> </message> <message> <source>%1 is not installed.<br>You will not be able to deploy to this device.</source> @@ -49891,7 +49891,7 @@ Did you start Qemu?</source> </message> <message> <source>Error retrieving list of used ports: %1</source> - <translation type="obsolete">Erreur lors de la récupération des ports utilisés&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de la récupération des ports utilisés : %1</translation> </message> <message> <source>All specified ports are available.</source> @@ -49899,7 +49899,7 @@ Did you start Qemu?</source> </message> <message> <source>The following supposedly free ports are being used on the device:</source> - <translation type="obsolete">Ces ports supposamment libres sont actuellement utilisés sur le périphérique&nbsp;: </translation> + <translation type="obsolete">Ces ports supposamment libres sont actuellement utilisés sur le périphérique : </translation> </message> <message> <source>Device configuration okay.</source> @@ -49912,18 +49912,18 @@ Did you start Qemu?</source> <message> <source>Device configuration test failed: Unexpected output: %1</source> - <translation type="obsolete">Échec du test de la configuration du périphérique, sortie inattendue&nbsp;: + <translation type="obsolete">Échec du test de la configuration du périphérique, sortie inattendue : %1</translation> </message> <message> <source>Hardware architecture: %1 </source> - <translation type="obsolete">Architecture matérielle&nbsp;: %1\n</translation> + <translation type="obsolete">Architecture matérielle : %1\n</translation> </message> <message> <source>Kernel version: %1 </source> - <translation type="obsolete">Version du noyau&nbsp;: %1\n</translation> + <translation type="obsolete">Version du noyau : %1\n</translation> </message> <message> <source>No Qt packages installed.</source> @@ -49931,7 +49931,7 @@ Did you start Qemu?</source> </message> <message> <source>List of installed Qt packages:</source> - <translation type="obsolete">Liste des paquets Qt installés&nbsp;:</translation> + <translation type="obsolete">Liste des paquets Qt installés :</translation> </message> </context> <context> @@ -49994,18 +49994,18 @@ Did you start Qemu?</source> <name>RemoteLinux::Internal::MaemoDeploymentMounter</name> <message> <source>Connection failed: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> </context> <context> <name>RemoteLinux::Internal::MaemoDeployStepBaseWidget</name> <message> <source>Cannot deploy: %1</source> - <translation type="obsolete">Impossible de déployer&nbsp;: %1</translation> + <translation type="obsolete">Impossible de déployer : %1</translation> </message> <message> <source><b>%1 using device</b>: %2</source> - <translation type="obsolete"><b>%1 utilisant le périphérique</b>&nbsp;: %2</translation> + <translation type="obsolete"><b>%1 utilisant le périphérique</b> : %2</translation> </message> </context> <context> @@ -50068,7 +50068,7 @@ Did you start Qemu?</source> </message> <message> <source>Key creation failed: %1</source> - <translation type="obsolete">Échec lors de la création des clés&nbsp;: %1</translation> + <translation type="obsolete">Échec lors de la création des clés : %1</translation> </message> <message> <source>Done.</source> @@ -50124,23 +50124,23 @@ Did you start Qemu?</source> <name>RemoteLinux::Internal::MaemoDeviceEnvReader</name> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Error running remote process: %1</source> - <translation type="obsolete">Erreur lors de l'exécution du processus à distance&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'exécution du processus à distance : %1</translation> </message> <message> <source> Remote stderr was: '%1'</source> - <translation type="obsolete">Le stderr distant était&nbsp;: "%1"</translation> + <translation type="obsolete">Le stderr distant était : "%1"</translation> </message> </context> <context> <name>RemoteLinux::Internal::MaemoDirectDeviceUploadStep</name> <message> <source>SFTP initialization failed: %1</source> - <translation type="obsolete">Échec de l'initialisation de SFTP&nbsp;: %1</translation> + <translation type="obsolete">Échec de l'initialisation de SFTP : %1</translation> </message> <message> <source>All files successfully deployed.</source> @@ -50156,11 +50156,11 @@ Remote stderr was: '%1'</source> </message> <message> <source>Failed to upload file '%1': Could not open for reading.</source> - <translation type="obsolete">Échec lors de l'envoi du fichier "%1"&nbsp;: impossible de l'ouvrir en lecture. </translation> + <translation type="obsolete">Échec lors de l'envoi du fichier "%1" : impossible de l'ouvrir en lecture. </translation> </message> <message> <source>Upload of file '%1' failed: %2</source> - <translation type="obsolete">Échec lors de l'envoi du fichier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Échec lors de l'envoi du fichier "%1" : %2</translation> </message> <message> <source>Upload files via SFTP</source> @@ -50171,17 +50171,17 @@ Remote stderr was: '%1'</source> <name>RemoteLinux::Internal::MaemoGlobal</name> <message> <source>Could not connect to host: %1</source> - <translation type="obsolete">Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source> Did you start Qemu?</source> - <translation type="obsolete">Avez-vous lancé Qemu&nbsp;?</translation> + <translation type="obsolete">Avez-vous lancé Qemu ?</translation> </message> <message> <source> Is the device connected and set up for network access?</source> - <translation type="obsolete">Est-ce que le périphérique est connecté et configuré pour l'accès réseau&nbsp;? </translation> + <translation type="obsolete">Est-ce que le périphérique est connecté et configuré pour l'accès réseau ? </translation> </message> <message> <source>(No device)</source> @@ -50204,7 +50204,7 @@ Is the device connected and set up for network access?</source> <name>RemoteLinux::Internal::AbstractMaemoInstallPackageToSysrootWidget</name> <message> <source>Cannot deploy to sysroot: No packaging step found.</source> - <translation type="obsolete">Impossible de déployer à la racine système&nbsp;: pas d'étape de paquetage trouvée. </translation> + <translation type="obsolete">Impossible de déployer à la racine système : pas d'étape de paquetage trouvée. </translation> </message> </context> <context> @@ -50261,7 +50261,7 @@ Is the device connected and set up for network access?</source> <message> <source>Sysroot installation failed: %1 Continuing anyway.</source> - <translation type="obsolete">L'installation à la racine système a échoué&nbsp;: %1. L'installation continue néanmoins. </translation> + <translation type="obsolete">L'installation à la racine système a échoué : %1. L'installation continue néanmoins. </translation> </message> <message> <source>Copy files to sysroot</source> @@ -50279,15 +50279,15 @@ Is the device connected and set up for network access?</source> <name>RemoteLinux::Internal::MaemoKeyDeployer</name> <message> <source>Public key error: %1</source> - <translation type="obsolete">Erreur de clé publique&nbsp;: %1</translation> + <translation type="obsolete">Erreur de clé publique : %1</translation> </message> <message> <source>Connection failed: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> <message> <source>Key deployment failed: %1.</source> - <translation type="obsolete">Échec lors du déploiement de la clé&nbsp;: %1.</translation> + <translation type="obsolete">Échec lors du déploiement de la clé : %1.</translation> </message> </context> <context> @@ -50325,27 +50325,27 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Packaging error: No Qt version.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: pas de version de Qt. </translation> + <translation type="obsolete">Erreur lors de la création du paquet : pas de version de Qt. </translation> </message> <message> <source>Package Creation: Running command '%1'.</source> - <translation type="obsolete">Création du paquet&nbsp;: exécuter la commande "%1".</translation> + <translation type="obsolete">Création du paquet : exécuter la commande "%1".</translation> </message> <message> <source>Packaging error: Could not start command '%1'. Reason: %2</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: impossible d'exécuter la commande "%1". Raison&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de la création du paquet : impossible d'exécuter la commande "%1". Raison : %2</translation> </message> <message> <source>Packaging Error: Command '%1' failed.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: échec de la commande "%1". </translation> + <translation type="obsolete">Erreur lors de la création du paquet : échec de la commande "%1". </translation> </message> <message> <source> Reason: %1</source> - <translation type="obsolete">Raison&nbsp;: %1</translation> + <translation type="obsolete">Raison : %1</translation> </message> <message> <source>Exit code: %1</source> - <translation type="obsolete">Code de sortie&nbsp;: %1</translation> + <translation type="obsolete">Code de sortie : %1</translation> </message> </context> <context> @@ -50372,7 +50372,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Packaging failed: Foreign debian directory detected.</source> - <translation type="obsolete">Échec du packaging&nbsp;: binaire Debian distant détecté. </translation> + <translation type="obsolete">Échec du packaging : binaire Debian distant détecté. </translation> </message> <message> <source>You are not using a shadow build and there is a debian directory in your project root ('%1'). Qt Creator will not overwrite that directory. Please remove it or use the shadow build feature.</source> @@ -50380,7 +50380,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Could not remove directory '%1': %2</source> - <translation type="obsolete">Impossible de supprimer le dossier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de supprimer le dossier "%1" : %2</translation> </message> <message> <source>Could not create Debian directory '%1'.</source> @@ -50392,7 +50392,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Error: Could not create file '%1'.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de créer le fichier "%1". </translation> + <translation type="obsolete">Erreur : impossible de créer le fichier "%1". </translation> </message> </context> <context> @@ -50414,7 +50414,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla <name>RemoteLinux::Internal::CreateTarStepWidget</name> <message> <source>Create tarball:</source> - <translation type="obsolete">Créer un tarball&nbsp;:</translation> + <translation type="obsolete">Créer un tarball :</translation> </message> </context> <context> @@ -50468,7 +50468,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source><b>Create Package:</b> </source> - <translation type="obsolete"><b>Créer le paquet&nbsp;:</b> </translation> + <translation type="obsolete"><b>Créer le paquet :</b> </translation> </message> <message> <source>Could Not Set Version Number</source> @@ -50479,7 +50479,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla <name>RemoteLinux::Internal::AbstractMaemoPackageInstaller</name> <message> <source>Connection failure: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> <message> <source>Installing package failed.</source> @@ -50501,19 +50501,19 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Connection failed: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> <message> <source>SFTP error: %1</source> - <translation type="obsolete">Erreur SFTP&nbsp;: %1</translation> + <translation type="obsolete">Erreur SFTP : %1</translation> </message> <message> <source>Package upload failed: Could not open file.</source> - <translation type="obsolete">Échec de l'envoi du paquet&nbsp;: impossible d'ouvrir le fichier. </translation> + <translation type="obsolete">Échec de l'envoi du paquet : impossible d'ouvrir le fichier. </translation> </message> <message> <source>Failed to upload package: %2</source> - <translation type="obsolete">Échec de l'envoi du paquet&nbsp;: %2</translation> + <translation type="obsolete">Échec de l'envoi du paquet : %2</translation> </message> </context> <context> @@ -50557,11 +50557,11 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>The project is missing some information important to publishing:</source> - <translation type="obsolete">Quelques informations manquent au projet pour la publication&nbsp;: </translation> + <translation type="obsolete">Quelques informations manquent au projet pour la publication : </translation> </message> <message> <source>Publishing failed: Missing project information.</source> - <translation type="obsolete">La publication a échoué&nbsp;: des informations sur le projet manquaient. </translation> + <translation type="obsolete">La publication a échoué : des informations sur le projet manquaient. </translation> </message> <message> <source>Removing left-over temporary directory ...</source> @@ -50569,11 +50569,11 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Error removing temporary directory: %1</source> - <translation type="obsolete">Erreur lors de la suppression du répertoire temporaire&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de la suppression du répertoire temporaire : %1</translation> </message> <message> <source>Publishing failed: Could not create source package.</source> - <translation type="obsolete">Échec de la publication&nbsp;: impossible de créer le paquet de sources. </translation> + <translation type="obsolete">Échec de la publication : impossible de créer le paquet de sources. </translation> </message> <message> <source>Setting up temporary directory ...</source> @@ -50581,19 +50581,19 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Error: Could not create temporary directory.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de créer le dossier temporaire. </translation> + <translation type="obsolete">Erreur : impossible de créer le dossier temporaire. </translation> </message> <message> <source>Error: Could not copy project directory.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de copier le répertoire du projet. </translation> + <translation type="obsolete">Erreur : impossible de copier le répertoire du projet. </translation> </message> <message> <source>Error: Could not fix newlines.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de fixer les lignes. </translation> + <translation type="obsolete">Erreur : impossible de fixer les lignes. </translation> </message> <message> <source>Publishing failed: Could not create package.</source> - <translation type="obsolete">Échec de la publication&nbsp;: impossible de créer un paquet. </translation> + <translation type="obsolete">Échec de la publication : impossible de créer un paquet. </translation> </message> <message> <source>Cleaning up temporary directory ...</source> @@ -50605,15 +50605,15 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Could not copy file '%1' to '%2': %3.</source> - <translation type="obsolete">Impossible de copier le fichier "%1" à "%2"&nbsp;: %3. </translation> + <translation type="obsolete">Impossible de copier le fichier "%1" à "%2" : %3. </translation> </message> <message> <source>Error: Failed to start dpkg-buildpackage.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de démarrer dpkg-buildpackage.</translation> + <translation type="obsolete">Erreur : impossible de démarrer dpkg-buildpackage.</translation> </message> <message> <source>Error: dpkg-buildpackage did not succeed.</source> - <translation type="obsolete">Erreur&nbsp;: dpkg-buildpackage n'a pas réussi. </translation> + <translation type="obsolete">Erreur : dpkg-buildpackage n'a pas réussi. </translation> </message> <message> <source>Package creation failed.</source> @@ -50626,7 +50626,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla <message> <source>Packaging finished successfully. The following files were created: </source> - <translation type="obsolete">La création du paquet s'est déroulé avec succès. Les fichiers suivants ont été créés&nbsp;: </translation> + <translation type="obsolete">La création du paquet s'est déroulé avec succès. Les fichiers suivants ont été créés : </translation> </message> <message> <source>No Qt version set.</source> @@ -50642,7 +50642,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>SSH error: %1</source> - <translation type="obsolete">Erreur SSH&nbsp;: %1</translation> + <translation type="obsolete">Erreur SSH : %1</translation> </message> <message> <source>Upload failed.</source> @@ -50650,7 +50650,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Error uploading file: %1.</source> - <translation type="obsolete">Erreur lors de l'envoi du fichier&nbsp;: %1.</translation> + <translation type="obsolete">Erreur lors de l'envoi du fichier : %1.</translation> </message> <message> <source>Error uploading file.</source> @@ -50670,11 +50670,11 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Cannot open file for reading: %1.</source> - <translation type="obsolete">Impossible d'ouvrir le fichier en lecture&nbsp;: %1.</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier en lecture : %1.</translation> </message> <message> <source>Cannot read file: %1</source> - <translation type="obsolete">Impossible de lire le fichier&nbsp;: %1</translation> + <translation type="obsolete">Impossible de lire le fichier : %1</translation> </message> <message> <source>The package description is empty. You must set one in Projects -> Run -> Create Package -> Details.</source> @@ -50746,7 +50746,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Qemu finished with error: Exit code was %1.</source> - <translation type="obsolete">Qemu s'est terminé avec une erreur&nbsp;: le code d'erreur était %1.</translation> + <translation type="obsolete">Qemu s'est terminé avec une erreur : le code d'erreur était %1.</translation> </message> <message> <source>Qemu error</source> @@ -50754,7 +50754,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Qemu failed to start: %1</source> - <translation type="obsolete">Qemu n'a pas pu démarrer&nbsp;: %1</translation> + <translation type="obsolete">Qemu n'a pas pu démarrer : %1</translation> </message> <message> <source>Stop MeeGo Emulator</source> @@ -50765,11 +50765,11 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla <name>RemoteLinux::Internal::MaemoRemoteCopyFacility</name> <message> <source>Connection failed: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> <message> <source>Error: Copy command failed.</source> - <translation type="obsolete">Erreur&nbsp;: échec de la commande de copie. </translation> + <translation type="obsolete">Erreur : échec de la commande de copie. </translation> </message> <message> <source>Copying file '%1' to directory '%2' on the device...</source> @@ -50792,7 +50792,7 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla </message> <message> <source>Failure unmounting: %1</source> - <translation type="obsolete">Échec au démontage&nbsp;: %1</translation> + <translation type="obsolete">Échec au démontage : %1</translation> </message> <message> <source>Finished unmounting.</source> @@ -50801,11 +50801,11 @@ On va essayer avec ce nom, mais vous pourrez rencontrer des problèmes.</transla <message> <source> stderr was: '%1'</source> - <translation type="obsolete">stderr était&nbsp;: "%1"</translation> + <translation type="obsolete">stderr était : "%1"</translation> </message> <message> <source>Error: Not enough free ports on device to fulfill all mount requests.</source> - <translation type="obsolete">Erreur&nbsp;: pas assez de ports libres sur le périphérique pour remplir toutes les requêtes. </translation> + <translation type="obsolete">Erreur : pas assez de ports libres sur le périphérique pour remplir toutes les requêtes. </translation> </message> <message> <source>Starting remote UTFS clients...</source> @@ -50817,7 +50817,7 @@ stderr was: '%1'</source> </message> <message> <source>Failure running UTFS client: %1</source> - <translation type="obsolete">Échec au lancement du client UTFS&nbsp;: %1</translation> + <translation type="obsolete">Échec au lancement du client UTFS : %1</translation> </message> <message> <source>Starting UTFS servers...</source> @@ -50827,11 +50827,11 @@ stderr was: '%1'</source> <source> stderr was: %1</source> <translation type="obsolete"> -stderr était&nbsp;: %1</translation> +stderr était : %1</translation> </message> <message> <source>Error running UTFS server: %1</source> - <translation type="obsolete">Erreur au lancement du serveur UTFS&nbsp;: %1</translation> + <translation type="obsolete">Erreur au lancement du serveur UTFS : %1</translation> </message> <message> <source>Timeout waiting for UTFS servers to connect.</source> @@ -50860,15 +50860,15 @@ stderr était&nbsp;: %1</translation> <name>RemoteLinux::Internal::MaemoRemoteProcessList</name> <message> <source>Connection failure: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> <message> <source>Error: Remote process failed to start: %1</source> - <translation type="obsolete">Erreur&nbsp;: le processus distant n'a pas pu démarrer&nbsp;: %1</translation> + <translation type="obsolete">Erreur : le processus distant n'a pas pu démarrer : %1</translation> </message> <message> <source>Error: Remote process crashed: %1</source> - <translation type="obsolete">Erreur&nbsp;: le processus distant a crashé&nbsp;: %1</translation> + <translation type="obsolete">Erreur : le processus distant a crashé : %1</translation> </message> <message> <source>Remote process failed.</source> @@ -50877,7 +50877,7 @@ stderr était&nbsp;: %1</translation> <message> <source> Remote stderr was: %1</source> - <translation type="obsolete">Le stderr distant était&nbsp;: %1</translation> + <translation type="obsolete">Le stderr distant était : %1</translation> </message> <message> <source>PID</source> @@ -50920,15 +50920,15 @@ Remote stderr was: %1</source> <message numerus="yes"> <source>WARNING: You want to mount %1 directories, but your device has only %n free ports.<br>You will not be able to run this configuration.</source> <translation type="obsolete"> - <numerusform>AVERTISSEMENT&nbsp;: vous voulez monter %1 répertoires mais votre périphérique n'a qu'un port de libre. <br>Vous n'êtes pas en mesure d'exécuter cette configuration.</numerusform> - <numerusform>AVERTISSEMENT&nbsp;: vous voulez monter %1 répertoires mais votre périphérique a uniquement %n ports de libre. <br>Vous n'êtes pas en mesure d'exécuter cette configuration.</numerusform> + <numerusform>AVERTISSEMENT : vous voulez monter %1 répertoires mais votre périphérique n'a qu'un port de libre. <br>Vous n'êtes pas en mesure d'exécuter cette configuration.</numerusform> + <numerusform>AVERTISSEMENT : vous voulez monter %1 répertoires mais votre périphérique a uniquement %n ports de libre. <br>Vous n'êtes pas en mesure d'exécuter cette configuration.</numerusform> </translation> </message> <message numerus="yes"> <source>WARNING: You want to mount %1 directories, but only %n ports on the device will be available in debug mode. <br>You will not be able to debug your application with this configuration.</source> <translation type="obsolete"> - <numerusform>AVERTISSEMENT&nbsp;: vous voulez monter %1 répertoires mais seul un port sera disponible en mode de débogage. <br>Vous n'êtes pas en mesure de déboguervotre application avec cette configuration.</numerusform> - <numerusform>AVERTISSEMENT&nbsp;: vous voulez monter %1 répertoires mais seulement %n ports seront disponibles en mode debug. <br>Vous n'êtes pas en mesure de déboguervotre application avec cette configuration.</numerusform> + <numerusform>AVERTISSEMENT : vous voulez monter %1 répertoires mais seul un port sera disponible en mode de débogage. <br>Vous n'êtes pas en mesure de déboguervotre application avec cette configuration.</numerusform> + <numerusform>AVERTISSEMENT : vous voulez monter %1 répertoires mais seulement %n ports seront disponibles en mode debug. <br>Vous n'êtes pas en mesure de déboguervotre application avec cette configuration.</numerusform> </translation> </message> </context> @@ -51029,7 +51029,7 @@ Remote stderr was: %1</source> <name>RemoteLinux::Internal::MaemoToolChainConfigWidget</name> <message> <source><html><head/><body><table><tr><td>Path to MADDE:</td><td>%1</td></tr><tr><td>Path to MADDE target:</td><td>%2</td></tr><tr><td>Debugger:</td/><td>%3</td></tr></body></html></source> - <translation type="obsolete"><html><head/><body><table><tr><td>Chemin de MADDE&nbsp;:</td><td>%1</td></tr><tr><td>Chemin de la cible MADDE&nbsp;:</td><td>%2</td></tr><tr><td>Débogueur&nbsp;:</td/><td>%3</td></tr></body></html></translation> + <translation type="obsolete"><html><head/><body><table><tr><td>Chemin de MADDE :</td><td>%1</td></tr><tr><td>Chemin de la cible MADDE :</td><td>%2</td></tr><tr><td>Débogueur :</td/><td>%3</td></tr></body></html></translation> </message> </context> <context> @@ -51076,24 +51076,24 @@ Remote stderr was: %1</source> <name>RemoteLinux::Internal::MaemoUsedPortsGatherer</name> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Could not start remote process: %1</source> - <translation type="obsolete">Impossible de démarrer le processus distant&nbsp;: %1</translation> + <translation type="obsolete">Impossible de démarrer le processus distant : %1</translation> </message> <message> <source>Remote process crashed: %1</source> - <translation type="obsolete">Processus distant crashé&nbsp;: %1</translation> + <translation type="obsolete">Processus distant crashé : %1</translation> </message> <message> <source>Remote process failed: %1</source> - <translation type="obsolete">Échec du processus distant&nbsp;: %1</translation> + <translation type="obsolete">Échec du processus distant : %1</translation> </message> <message> <source> Remote error output was: %1</source> - <translation type="obsolete">La sortie du processus distant était&nbsp;: %1</translation> + <translation type="obsolete">La sortie du processus distant était : %1</translation> </message> </context> <context> @@ -51150,7 +51150,7 @@ Remote error output was: %1</source> <name>RemoteLinux::Internal::AbstractQt4MaemoTarget</name> <message> <source>Cannot open file '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir le fichier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier "%1" : %2</translation> </message> <message> <source>Qt Creator</source> @@ -51158,7 +51158,7 @@ Remote error output was: %1</source> </message> <message> <source>Do you want to remove the packaging file(s) associated with the target '%1'?</source> - <translation type="obsolete">Voulez-vous supprimer les fichiers de paquetage associés avec la cible "%1"&nbsp;? </translation> + <translation type="obsolete">Voulez-vous supprimer les fichiers de paquetage associés avec la cible "%1" ? </translation> </message> <message> <source>Error creating packaging directory '%1'.</source> @@ -51172,9 +51172,9 @@ Remote error output was: %1</source> <source><html>Qt Creator has set up the following files to enable packaging: %1 Do you want to add them to the project?</html></source> - <translation type="obsolete"><html>Qt Creator a configuré les fichiers suivants pour permettre l'empaquetage&nbsp;: + <translation type="obsolete"><html>Qt Creator a configuré les fichiers suivants pour permettre l'empaquetage : %1 -Voulez-vous les ajouter au projet&nbsp;?</html></translation> +Voulez-vous les ajouter au projet ?</html></translation> </message> <message> <source>Error creating MeeGo templates</source> @@ -51201,15 +51201,15 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Unable to create Debian templates: No Qt version set</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: pas de version de Qt définie</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : pas de version de Qt définie</translation> </message> <message> <source>Unable to create Debian templates: dh_make failed (%1)</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1)</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1)</translation> </message> <message> <source>Unable to create debian templates: dh_make failed (%1)</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1)</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1)</translation> </message> <message> <source>Unable to move new debian directory to '%1'.</source> @@ -51220,7 +51220,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <name>RemoteLinux::RemoteLinuxApplicationRunner</name> <message> <source>Cannot run: %1</source> - <translation type="obsolete">Impossible de lancer&nbsp;: %1</translation> + <translation type="obsolete">Impossible de lancer : %1</translation> </message> <message> <source>Connecting to device...</source> @@ -51228,7 +51228,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Killing remote process(es)...</source> @@ -51236,7 +51236,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Initial cleanup failed: %1</source> - <translation type="obsolete">Échec du nettoyage initial&nbsp;: %1</translation> + <translation type="obsolete">Échec du nettoyage initial : %1</translation> </message> <message> <source>Remote process started.</source> @@ -51252,7 +51252,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Error running remote process: %1</source> - <translation type="obsolete">Erreur lors de l'exécution du processus à distance&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'exécution du processus à distance : %1</translation> </message> </context> <context> @@ -51277,7 +51277,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Initial setup failed: %1</source> - <translation type="obsolete">Échec lors de la configuration initiale&nbsp;: %1</translation> + <translation type="obsolete">Échec lors de la configuration initiale : %1</translation> </message> <message> <source>Not enough free ports on device for debugging.</source> @@ -51327,7 +51327,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Clean Environment</source> - <translatorcomment>ou Environnement propre/vierge&nbsp;? Contexte, messieurs les développeurs&nbsp;!</translatorcomment> + <translatorcomment>ou Environnement propre/vierge ? Contexte, messieurs les développeurs !</translatorcomment> <translation type="obsolete">Nettoyer l'environnement</translation> </message> <message> @@ -51362,15 +51362,15 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Device configuration:</source> - <translation type="obsolete">Configuration du périphérique&nbsp;:</translation> + <translation type="obsolete">Configuration du périphérique :</translation> </message> <message> <source>Executable on host:</source> - <translation>Exécutable sur l'hôte&nbsp;:</translation> + <translation>Exécutable sur l'hôte :</translation> </message> <message> <source>Executable on device:</source> - <translation>Exécutable sur le périphérique&nbsp;: </translation> + <translation>Exécutable sur le périphérique : </translation> </message> <message> <source>Use this command instead</source> @@ -51378,20 +51378,20 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Alternate executable on device:</source> - <translation>Eexécutable alternatif sur le périphérique&nbsp;:</translation> + <translation>Eexécutable alternatif sur le périphérique :</translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;: </translation> + <translation>Arguments : </translation> </message> <message> <source><default></source> - <translatorcomment>Euh, une balise&nbsp;? dois je traduire&nbsp;?</translatorcomment> - <translation><par&nbsp;défaut></translation> + <translatorcomment>Euh, une balise ? dois je traduire ?</translatorcomment> + <translation><par défaut></translation> </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Unknown</source> @@ -51415,15 +51415,15 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Debugging type:</source> - <translation type="obsolete">Type de débogage&nbsp;:</translation> + <translation type="obsolete">Type de débogage :</translation> </message> <message> <source>Base environment for this run configuration:</source> - <translation type="obsolete">Environnement de base pour cette configuration d'exécution&nbsp;: </translation> + <translation type="obsolete">Environnement de base pour cette configuration d'exécution : </translation> </message> <message> <source>Clean Environment</source> - <translatorcomment>idem&nbsp;! nom ou verbe&nbsp;? </translatorcomment> + <translatorcomment>idem ! nom ou verbe ? </translatorcomment> <translation type="obsolete">Environnement vierge</translation> </message> <message> @@ -51444,7 +51444,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Fetching environment failed: %1</source> - <translation type="obsolete">Échec lors de la récupération de l'environnement&nbsp;: %1</translation> + <translation type="obsolete">Échec lors de la récupération de l'environnement : %1</translation> </message> </context> <context> @@ -51477,11 +51477,11 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Cannot debug: Kit has no device.</source> - <translation>Impossible de déboguer&nbsp;: le kit n'a pas de périphérique.</translation> + <translation>Impossible de déboguer : le kit n'a pas de périphérique.</translation> </message> <message> <source>Cannot debug: Not enough free ports available.</source> - <translation>Impossible de déboguer&nbsp;: pas assez de ports libres disponibles.</translation> + <translation>Impossible de déboguer : pas assez de ports libres disponibles.</translation> </message> <message> <source>No analyzer tool selected.</source> @@ -51510,7 +51510,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <name>TextEditor::FallbackSelectorWidget</name> <message> <source>Settings:</source> - <translation type="obsolete">Paramètres&nbsp;:</translation> + <translation type="obsolete">Paramètres :</translation> </message> <message> <source>Custom</source> @@ -51564,7 +51564,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <name>Valgrind::Internal::CallgrindToolPrivate</name> <message> <source>Callers</source> - <translatorcomment>ou -ants&nbsp;?</translatorcomment> + <translatorcomment>ou -ants ?</translatorcomment> <translation>Appeleurs</translation> </message> <message> @@ -51649,7 +51649,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Failed to open file for reading: %1</source> - <translation>Échec lors de l'ouverture en écriture du fichier&nbsp;: %1</translation> + <translation>Échec lors de l'ouverture en écriture du fichier : %1</translation> </message> <message> <source>Parsing Profile Data...</source> @@ -51665,7 +51665,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>This removes template parameter lists when displaying function names.</source> - <translatorcomment>Cela r > R&nbsp;?</translatorcomment> + <translatorcomment>Cela r > R ?</translatorcomment> <translation>Cette opération retire les listes de paramètres templates lors de l'affichage des noms de fonctions.</translation> </message> <message> @@ -51783,11 +51783,11 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Failed to open file for reading: %1</source> - <translation>Échec lors de l'ouverture en lecture du fichier&nbsp;: %1</translation> + <translation>Échec lors de l'ouverture en lecture du fichier : %1</translation> </message> <message> <source>Error occurred parsing Valgrind output: %1</source> - <translation>Erreur d'analyse de la sortie de Valgring&nbsp;: %1</translation> + <translation>Erreur d'analyse de la sortie de Valgring : %1</translation> </message> <message> <source>Valgrind Memory Analyzer</source> @@ -51831,7 +51831,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Error occurred parsing valgrind output: %1</source> - <translation>Erreur d'analyse de la sortie de Valgring&nbsp;: %1</translation> + <translation>Erreur d'analyse de la sortie de Valgring : %1</translation> </message> </context> <context> @@ -51877,7 +51877,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>An error occurred while trying to run %1: %2</source> - <translation>Une erreur est apparue lors de l'exécution de %1&nbsp;: %2</translation> + <translation>Une erreur est apparue lors de l'exécution de %1 : %2</translation> </message> <message> <source>Callgrind dumped profiling info</source> @@ -51896,19 +51896,19 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <name>Valgrind::Callgrind::DataModel</name> <message> <source>Function:</source> - <translation>Fonction&nbsp;:</translation> + <translation>Fonction :</translation> </message> <message> <source>File:</source> - <translation>Fichier&nbsp;: </translation> + <translation>Fichier : </translation> </message> <message> <source>Object:</source> - <translation>Objet&nbsp;: </translation> + <translation>Objet : </translation> </message> <message> <source>Called:</source> - <translation>Appelé&nbsp;: </translation> + <translation>Appelé : </translation> </message> <message numerus="yes"> <source>%n time(s)</source> @@ -51965,11 +51965,11 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <message> <source>Self Cost: %1</source> <translatorcomment>?</translatorcomment> - <translation>Coût interne&nbsp;: %1</translation> + <translation>Coût interne : %1</translation> </message> <message> <source>Incl. Cost: %1</source> - <translation>Dont coût&nbsp;: %1</translation> + <translation>Dont coût : %1</translation> </message> </context> <context> @@ -51980,7 +51980,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>%1:%2 in %3</source> - <translation>%1&nbsp;: %2 dans %3</translation> + <translation>%1 : %2 dans %3</translation> </message> </context> <context> @@ -52035,11 +52035,11 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Line:</source> - <translation>Ligne&nbsp;:</translation> + <translation>Ligne :</translation> </message> <message> <source>Position:</source> - <translation>Position&nbsp;:</translation> + <translation>Position :</translation> </message> </context> <context> @@ -52069,11 +52069,11 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>XmlServer on %1:</source> - <translation>XmlServer sur %1&nbsp;:</translation> + <translation>XmlServer sur %1 :</translation> </message> <message> <source>LogServer on %1:</source> - <translation>LogServer sur %1&nbsp;:</translation> + <translation>LogServer sur %1 :</translation> </message> <message> <source>More than one network interface was found on your machine. Please select which one you want to use for remote analysis.</source> @@ -52095,19 +52095,19 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <name>Valgrind::Internal::ValgrindEngine</name> <message> <source>Valgrind options: %1</source> - <translation>Options de Valgrind&nbsp;: %1</translation> + <translation>Options de Valgrind : %1</translation> </message> <message> <source>Working directory: %1</source> - <translation>Répertoire de travail&nbsp;: %1</translation> + <translation>Répertoire de travail : %1</translation> </message> <message> <source>Command-line arguments: %1</source> - <translation type="obsolete">Arguments de la commande&nbsp;: %1</translation> + <translation type="obsolete">Arguments de la commande : %1</translation> </message> <message> <source>Commandline arguments: %1</source> - <translation>Arguments de la ligne de commande&nbsp;: %1</translation> + <translation>Arguments de la ligne de commande : %1</translation> </message> <message> <source>** Analyzing finished ** @@ -52117,12 +52117,12 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <message> <source>** Error: "%1" could not be started: %2 ** </source> - <translation>** Erreur&nbsp;: "%1" n'a pas pu être démarré&nbsp;: %2 **</translation> + <translation>** Erreur : "%1" n'a pas pu être démarré : %2 **</translation> </message> <message> <source>** Error: no valgrind executable set ** </source> - <translation>** Erreur&nbsp;: pas d'exécutable Valgrind défini **</translation> + <translation>** Erreur : pas d'exécutable Valgrind défini **</translation> </message> <message> <source>** Process Terminated ** @@ -52172,11 +52172,11 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <message> <source>CPU: v%1.%2%3%4</source> <extracomment>CPU description of an S60 device %1 major verison, %2 minor version %3 real name of major verison, %4 real name of minor version</extracomment> - <translation type="obsolete">CPU&nbsp;: v%1.%2%3%4</translation> + <translation type="obsolete">CPU : v%1.%2%3%4</translation> </message> <message> <source>CODA: v%1.%2 CODA protocol: v%3.%4</source> - <translation type="obsolete">CODA&nbsp;: v%1. Protocole CODA %2&nbsp;: v%3.%4</translation> + <translation type="obsolete">CODA : v%1. Protocole CODA %2 : v%3.%4</translation> </message> <message> <source>%1, %2%3%4, %5</source> @@ -52194,12 +52194,12 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <message> <source>, type size: %1</source> <extracomment>will be inserted into s60description</extracomment> - <translation type="obsolete">, taille du type&nbsp;: %1</translation> + <translation type="obsolete">, taille du type : %1</translation> </message> <message> <source>, float size: %1</source> <extracomment>will be inserted into s60description</extracomment> - <translation type="obsolete">, taille d'un flottant&nbsp;: %1</translation> + <translation type="obsolete">, taille d'un flottant : %1</translation> </message> </context> <context> @@ -52257,27 +52257,27 @@ Pour compiler l'observateur QML, allez à la page des versions de Qt, séle </message> <message> <source>Packaging error: No Qt version.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: pas de version de Qt. </translation> + <translation type="obsolete">Erreur lors de la création du paquet : pas de version de Qt. </translation> </message> <message> <source>Package Creation: Running command '%1'.</source> - <translation type="obsolete">Création du paquet&nbsp;: commande "%1" lancée. </translation> + <translation type="obsolete">Création du paquet : commande "%1" lancée. </translation> </message> <message> <source>Packaging error: Could not start command '%1'. Reason: %2</source> - <translation type="obsolete">Erreur de paquetage&nbsp;: impossible de lancer la commande "%1". Raison&nbsp;: %2</translation> + <translation type="obsolete">Erreur de paquetage : impossible de lancer la commande "%1". Raison : %2</translation> </message> <message> <source>Packaging Error: Command '%1' failed.</source> - <translation type="obsolete">Erreur de paquetage&nbsp;: la commande "%1" a échoué. </translation> + <translation type="obsolete">Erreur de paquetage : la commande "%1" a échoué. </translation> </message> <message> <source> Reason: %1</source> - <translation type="obsolete">Raison&nbsp;: %1</translation> + <translation type="obsolete">Raison : %1</translation> </message> <message> <source>Exit code: %1</source> - <translation type="obsolete">Code de sortie&nbsp;: %1</translation> + <translation type="obsolete">Code de sortie : %1</translation> </message> </context> <context> @@ -52304,7 +52304,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Packaging failed: Foreign debian directory detected.</source> - <translation type="obsolete">Échec du paquetage&nbsp;: binaire Debian distant détecté. </translation> + <translation type="obsolete">Échec du paquetage : binaire Debian distant détecté. </translation> </message> <message> <source>You are not using a shadow build and there is a debian directory in your project root ('%1'). Qt Creator will not overwrite that directory. Please remove it or use the shadow build feature.</source> @@ -52312,7 +52312,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Could not remove directory '%1': %2</source> - <translation type="obsolete">Impossible de supprimer le dossier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible de supprimer le dossier "%1" : %2</translation> </message> <message> <source>Could not create Debian directory '%1'.</source> @@ -52324,7 +52324,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Error: Could not create file '%1'.</source> - <translation type="obsolete">Erreur&nbsp;: impossible de créer le fichier "%1". </translation> + <translation type="obsolete">Erreur : impossible de créer le fichier "%1". </translation> </message> </context> <context> @@ -52354,7 +52354,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Create tarball:</source> - <translation>Créer un tarball&nbsp;:</translation> + <translation>Créer un tarball :</translation> </message> </context> <context> @@ -52365,23 +52365,23 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Error: tar file %1 cannot be opened (%2).</source> - <translation type="obsolete">Erreur&nbsp;: le fichier %1 n'a pas pu être ouvert (%2). </translation> + <translation type="obsolete">Erreur : le fichier %1 n'a pas pu être ouvert (%2). </translation> </message> <message> <source>Error writing tar file '%1': %2.</source> - <translation type="obsolete">Erreur lors de l'écriture du fichier "%1"&nbsp;: %2. </translation> + <translation type="obsolete">Erreur lors de l'écriture du fichier "%1" : %2. </translation> </message> <message> <source>Error reading file '%1': %2.</source> - <translation type="obsolete">Erreur lors de la lecture du fichier "%1"&nbsp;: %2. </translation> + <translation type="obsolete">Erreur lors de la lecture du fichier "%1" : %2. </translation> </message> <message> <source>Cannot add file '%1' to tar-archive: path too long.</source> - <translation type="obsolete">Impossible d'ajouter le fichier "%1" à l'archive&nbsp;: chemin trop long. </translation> + <translation type="obsolete">Impossible d'ajouter le fichier "%1" à l'archive : chemin trop long. </translation> </message> <message> <source>Error writing tar file '%1': %2</source> - <translation type="obsolete">Erreur lors de l'écriture du fichier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de l'écriture du fichier "%1" : %2</translation> </message> </context> <context> @@ -52392,11 +52392,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>The following plugins have errors and cannot be loaded:</source> - <translation>Les chemins suivant contiennent des erreurs et ne peuvent être chargés&nbsp;:</translation> + <translation>Les chemins suivant contiennent des erreurs et ne peuvent être chargés :</translation> </message> <message> <source>Details:</source> - <translation>Détails&nbsp;:</translation> + <translation>Détails :</translation> </message> </context> <context> @@ -52407,11 +52407,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>&Host:</source> - <translation type="obsolete">&Hôte&nbsp;: </translation> + <translation type="obsolete">&Hôte : </translation> </message> <message> <source>&Port:</source> - <translation type="obsolete">&Port&nbsp;:</translation> + <translation type="obsolete">&Port :</translation> </message> </context> <context> @@ -52457,15 +52457,15 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Duration:</source> - <translation>Durée&nbsp;:</translation> + <translation>Durée :</translation> </message> <message> <source>Details:</source> - <translation>Détails&nbsp;:</translation> + <translation>Détails :</translation> </message> <message> <source>Location:</source> - <translation>Emplacement&nbsp;:</translation> + <translation>Emplacement :</translation> </message> <message> <source>Binding loop detected</source> @@ -52480,7 +52480,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Application icon (80x80):</source> - <translation type="obsolete">Icône de l'application (80x80)&nbsp;:</translation> + <translation type="obsolete">Icône de l'application (80x80) :</translation> </message> <message> <source>Generate code to speed up the launching on the device.</source> @@ -52499,23 +52499,23 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>&Configuration:</source> - <translation type="obsolete">&Configuration&nbsp;:</translation> + <translation type="obsolete">&Configuration :</translation> </message> <message> <source>&Name:</source> - <translation type="obsolete">&Nom&nbsp;:</translation> + <translation type="obsolete">&Nom :</translation> </message> <message> <source>OS type:</source> - <translation type="obsolete">Type d'OS&nbsp;: </translation> + <translation type="obsolete">Type d'OS : </translation> </message> <message> <source>Device type:</source> - <translation type="obsolete">Type de périphérique&nbsp;:</translation> + <translation type="obsolete">Type de périphérique :</translation> </message> <message> <source>Authentication type:</source> - <translation type="obsolete">Type d'identification&nbsp;:</translation> + <translation type="obsolete">Type d'identification :</translation> </message> <message> <source>Password</source> @@ -52527,7 +52527,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>&Host name:</source> - <translation type="obsolete">Nom de l'&hôte&nbsp;:</translation> + <translation type="obsolete">Nom de l'&hôte :</translation> </message> <message> <source>IP or host name of the device</source> @@ -52535,19 +52535,19 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>&SSH port:</source> - <translation type="obsolete">Port &SSH&nbsp;: </translation> + <translation type="obsolete">Port &SSH : </translation> </message> <message> <source>Free ports:</source> - <translation type="obsolete">Ports libres&nbsp;: </translation> + <translation type="obsolete">Ports libres : </translation> </message> <message> <source>You can enter lists and ranges like this: 1024,1026-1028,1030</source> - <translation type="obsolete">Vous pouvez entrer des listes et des intervalles comme ceci&nbsp;: 1024,1026-1028,1030</translation> + <translation type="obsolete">Vous pouvez entrer des listes et des intervalles comme ceci : 1024,1026-1028,1030</translation> </message> <message> <source>Timeout:</source> - <translation type="obsolete">Timeout&nbsp;:</translation> + <translation type="obsolete">Timeout :</translation> </message> <message> <source>s</source> @@ -52555,11 +52555,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>&Username:</source> - <translation type="obsolete">&Utilisateur&nbsp;:</translation> + <translation type="obsolete">&Utilisateur :</translation> </message> <message> <source>&Password:</source> - <translation type="obsolete">Mot de &passe&nbsp;:</translation> + <translation type="obsolete">Mot de &passe :</translation> </message> <message> <source>Show password</source> @@ -52567,7 +52567,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Private key file:</source> - <translation type="obsolete">Fichier de clé privée&nbsp;:</translation> + <translation type="obsolete">Fichier de clé privée :</translation> </message> <message> <source>Set as Default</source> @@ -52628,7 +52628,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Device configuration:</source> - <translation type="obsolete">Configuration du périphérique&nbsp;:</translation> + <translation type="obsolete">Configuration du périphérique :</translation> </message> <message> <source><a href="irrelevant">Manage device configurations</a></source> @@ -52640,7 +52640,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Files to install for subproject:</source> - <translation type="obsolete">Fichiers à installer pour le sous-projet&nbsp;:</translation> + <translation type="obsolete">Fichiers à installer pour le sous-projet :</translation> </message> <message> <source>Edit the project file to add or remove entries.</source> @@ -52655,7 +52655,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>&Filter by process name:</source> - <translation type="obsolete">&Filtrer par nom de processus&nbsp;: </translation> + <translation type="obsolete">&Filtrer par nom de processus : </translation> </message> <message> <source>&Update List</source> @@ -52678,11 +52678,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Key &size:</source> - <translation type="obsolete">Taille de la clé (&S)&nbsp;: </translation> + <translation type="obsolete">Taille de la clé (&S) : </translation> </message> <message> <source>Key algorithm:</source> - <translation type="obsolete">Algorithme de la clé&nbsp;:</translation> + <translation type="obsolete">Algorithme de la clé :</translation> </message> <message> <source>&RSA</source> @@ -52721,11 +52721,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Device:</source> - <translation type="obsolete">Appareil mobile&nbsp;:</translation> + <translation type="obsolete">Appareil mobile :</translation> </message> <message> <source>&Filter by process name:</source> - <translation type="obsolete">&Filtrer par nom de processus&nbsp;: </translation> + <translation type="obsolete">&Filtrer par nom de processus : </translation> </message> <message> <source>&Attach to Selected Process</source> @@ -52744,7 +52744,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Current settings:</source> - <translation type="obsolete">Paramètres actuels&nbsp;:</translation> + <translation type="obsolete">Paramètres actuels :</translation> </message> <message> <source>Copy...</source> @@ -52772,7 +52772,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Code style name:</source> - <translation>Nom du style de code&nbsp;:</translation> + <translation>Nom du style de code :</translation> </message> <message> <source>%1 (Copy)</source> @@ -52784,7 +52784,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Are you sure you want to delete this code style permanently?</source> - <translation>Êtes vous sur de vouloir supprimer ce style de code&nbsp;?</translation> + <translation>Êtes vous sur de vouloir supprimer ce style de code ?</translation> </message> <message> <source>Delete</source> @@ -52812,7 +52812,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>%1 [proxy: %2]</source> - <translation>%1 [proxy&nbsp;: %2]</translation> + <translation>%1 [proxy : %2]</translation> </message> <message> <source>%1 [built-in]</source> @@ -52864,7 +52864,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source><program></source> - <translatorcomment>Une autre balise, dois-je traduire&nbsp;? oui oui, si ils les ont mis... C'est sans doute des placeHolders</translatorcomment> + <translatorcomment>Une autre balise, dois-je traduire ? oui oui, si ils les ont mis... C'est sans doute des placeHolders</translatorcomment> <translation type="obsolete"><programme></translation> </message> <message> @@ -52877,7 +52877,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source><Animation Update></source> - <translatorcomment>Balise&nbsp;? dois je traduire&nbsp;?</translatorcomment> + <translatorcomment>Balise ? dois je traduire ?</translatorcomment> <translation type="obsolete"><Mise à jour Animation></translation> </message> <message> @@ -52894,7 +52894,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Error while parsing %1</source> - <translation type="obsolete">Erreur lors de l'analyse de&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'analyse de : %1</translation> </message> <message> <source>Invalid version of QML Trace file.</source> @@ -52982,7 +52982,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro %1 </source> - <translation>Impossible de démarrer le gestionnaire de fichiers&nbsp;: + <translation>Impossible de démarrer le gestionnaire de fichiers : %1 @@ -52992,7 +52992,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <source>'%1' returned the following error: %2</source> - <translation>'%1' retourne l'erreur suivante&nbsp;: + <translation>'%1' retourne l'erreur suivante : %2</translation> </message> @@ -53110,26 +53110,26 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Load module:</source> - <translation>Charger le module&nbsp;:</translation> + <translation>Charger le module :</translation> </message> <message> <source>Unload module:</source> - <translation>Décharger le module&nbsp;: </translation> + <translation>Décharger le module : </translation> </message> <message> <source>Output:</source> - <translation>Sortie&nbsp;: </translation> + <translation>Sortie : </translation> </message> </context> <context> <name>Debugger::Internal::QScriptDebuggerClient</name> <message> <source><p>An uncaught exception occurred:</p><p>%1</p></source> - <translation><p>Une exception non gérée a eu lieu&nbsp;: </p><p>%1</p></translation> + <translation><p>Une exception non gérée a eu lieu : </p><p>%1</p></translation> </message> <message> <source><p>An uncaught exception occurred in '%1':</p><p>%2</p></source> - <translation><p>Une exception non gérée a eu lieu dans '%1'&nbsp;: </p><p>%2</p></translation> + <translation><p>Une exception non gérée a eu lieu dans '%1' : </p><p>%2</p></translation> </message> <message> <source>No Local Variables</source> @@ -53137,7 +53137,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source><p>An uncaught exception occurred in <i>%1</i>:</p><p>%2</p></source> - <translation type="obsolete"><p>Une exception non gérée a eu lieu dans <i>%1</i>&nbsp;: </p><p>%2</p></translation> + <translation type="obsolete"><p>Une exception non gérée a eu lieu dans <i>%1</i> : </p><p>%2</p></translation> </message> <message> <source>Uncaught Exception</source> @@ -53164,7 +53164,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Flags: %1</source> - <translation>Flags&nbsp;: %1</translation> + <translation>Flags : %1</translation> </message> <message> <source>None</source> @@ -53195,7 +53195,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Replace with:</source> - <translation>Remplacer avec&nbsp;:</translation> + <translation>Remplacer avec :</translation> </message> <message> <source>Replace all occurrences</source> @@ -53220,8 +53220,8 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <message numerus="yes"> <source>The search resulted in more than %n items, do you still want to continue?</source> <translation> - <numerusform>La recherche a trouvé plus de %n élément, souhaitez vous continuer&nbsp;?</numerusform> - <numerusform>La recherche a trouvé plus de %n éléments, souhaitez vous continuer&nbsp;?</numerusform> + <numerusform>La recherche a trouvé plus de %n élément, souhaitez vous continuer ?</numerusform> + <numerusform>La recherche a trouvé plus de %n éléments, souhaitez vous continuer ?</numerusform> </translation> </message> <message> @@ -53288,7 +53288,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <message> <source>SSH connection error: %1 </source> - <translation>Erreur de connexion SSH&nbsp;: %1 + <translation>Erreur de connexion SSH : %1 </translation> </message> <message> @@ -53310,7 +53310,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <message> <source>Error checking for connectivity tool: %1 </source> - <translation>Erreur dans l'outil de connectivité&nbsp;: %1 + <translation>Erreur dans l'outil de connectivité : %1 </translation> </message> <message> @@ -53370,11 +53370,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <name>Madde::Internal::AbstractMaddeUploadAndInstallPackageAction</name> <message> <source>Cannot deploy: Qemu was not running. It has now been started up for you, but it will take a bit of time until it is ready. Please try again then.</source> - <translation type="obsolete">Impossible de déployer&nbsp;: Qemu n'était pas lancé. Il a maintenant été démarré, mais il prendra un peu de temps avant d'être prêt. Veuillez réessayer alors. </translation> + <translation type="obsolete">Impossible de déployer : Qemu n'était pas lancé. Il a maintenant été démarré, mais il prendra un peu de temps avant d'être prêt. Veuillez réessayer alors. </translation> </message> <message> <source>Cannot deploy: You want to deploy to Qemu, but it is not enabled for this Qt version.</source> - <translation type="obsolete">Impossible de déployer&nbsp;: vous voulez déployer sur Qemu, mais il n'est pas activé pour cette version de Qt. </translation> + <translation type="obsolete">Impossible de déployer : vous voulez déployer sur Qemu, mais il n'est pas activé pour cette version de Qt. </translation> </message> </context> <context> @@ -53403,11 +53403,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <name>Madde::Internal::AbstractMaemoDeployByMountService</name> <message> <source>Cannot deploy: Qemu was not running. It has now been started up for you, but it will take a bit of time until it is ready. Please try again then.</source> - <translation type="obsolete">Impossible de déployer&nbsp;: Qemu n'était pas lancé. Il a maintenant été démarré, mais il prendra un peu de temps avant d'être prêt. Veuillez réessayer alors. </translation> + <translation type="obsolete">Impossible de déployer : Qemu n'était pas lancé. Il a maintenant été démarré, mais il prendra un peu de temps avant d'être prêt. Veuillez réessayer alors. </translation> </message> <message> <source>Cannot deploy: You want to deploy to Qemu, but it is not enabled for this Qt version.</source> - <translation type="obsolete">Impossible de déployer&nbsp;: vous voulez déployer sur Qemu, mais il n'est pas activé pour cette version de Qt. </translation> + <translation type="obsolete">Impossible de déployer : vous voulez déployer sur Qemu, mais il n'est pas activé pour cette version de Qt. </translation> </message> <message> <source>Missing build configuration.</source> @@ -53497,7 +53497,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <name>Madde::Internal::MaemoDeploymentMounter</name> <message> <source>Connection failed: %1</source> - <translation>Échec de la connexion&nbsp;: %1</translation> + <translation>Échec de la connexion : %1</translation> </message> </context> <context> @@ -53520,15 +53520,15 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>The name to identify this configuration:</source> - <translation>Le nom pour identifier cette configuration&nbsp;: </translation> + <translation>Le nom pour identifier cette configuration : </translation> </message> <message> <source>The system running on the device:</source> - <translation type="obsolete">Le système exécuté sur ce périphérique&nbsp;: </translation> + <translation type="obsolete">Le système exécuté sur ce périphérique : </translation> </message> <message> <source>The kind of device:</source> - <translation>Le type de périphérique&nbsp;: </translation> + <translation>Le type de périphérique : </translation> </message> <message> <source>Emulator</source> @@ -53540,11 +53540,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>The device's host name or IP address:</source> - <translation>Le nom d'hôte du périphérique ou son adresse IP&nbsp;: </translation> + <translation>Le nom d'hôte du périphérique ou son adresse IP : </translation> </message> <message> <source>The SSH server port:</source> - <translation>Port du serveur SSH&nbsp;:</translation> + <translation>Port du serveur SSH :</translation> </message> </context> <context> @@ -53566,7 +53566,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Do you want to re-use an existing pair of keys or should a new one be created?</source> - <translation>Voulez-vous réutiliser une paire de clés existante ou en créer une nouvelle&nbsp;?</translation> + <translation>Voulez-vous réutiliser une paire de clés existante ou en créer une nouvelle ?</translation> </message> <message> <source>Re-use existing keys</source> @@ -53574,11 +53574,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>File containing the public key:</source> - <translation>Fichier contenant la clé publique&nbsp;: </translation> + <translation>Fichier contenant la clé publique : </translation> </message> <message> <source>File containing the private key:</source> - <translation>Fichier contenant la clé privée&nbsp;: </translation> + <translation>Fichier contenant la clé privée : </translation> </message> <message> <source>Create new keys</source> @@ -53617,7 +53617,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Key creation failed: %1</source> - <translation>Échec lors de la création des clés&nbsp;: %1</translation> + <translation>Échec lors de la création des clés : %1</translation> </message> <message> <source>Done.</source> @@ -53637,7 +53637,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Directory:</source> - <translation>Répertoire&nbsp;:</translation> + <translation>Répertoire :</translation> </message> <message> <source>Create Keys</source> @@ -53687,7 +53687,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <li>In "%%%maddev%%%", press "Developer Password" and enter it in the field below.</li> <li>Click "Deploy Key"</li> </source> - <translation>Pour deployer la clé publique sur votre periphérique, merci d'exécuter les étapes suivantes&nbsp;: + <translation>Pour deployer la clé publique sur votre periphérique, merci d'exécuter les étapes suivantes : <ul> <li>Connectez le periphérique sur votre ordinateur (à moins que vous comptiez le connecté par WLAN).</li> <li>Sur le periphérique, démarrez l'application "%%%maddev%%%".</li> @@ -53697,11 +53697,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Device address:</source> - <translation>Adresse du périphérique&nbsp;: </translation> + <translation>Adresse du périphérique : </translation> </message> <message> <source>Password:</source> - <translation>Mot de passe&nbsp;:</translation> + <translation>Mot de passe :</translation> </message> <message> <source>Deploy Key</source> @@ -53726,7 +53726,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <name>Madde::Internal::AbstractMaemoInstallPackageToSysrootWidget</name> <message> <source>Cannot deploy to sysroot: No packaging step found.</source> - <translation>Impossible de déployer à la racine système&nbsp;: pas d'étape de paquetage trouvée. </translation> + <translation>Impossible de déployer à la racine système : pas d'étape de paquetage trouvée. </translation> </message> </context> <context> @@ -53791,7 +53791,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <message> <source>Sysroot installation failed: %1 Continuing anyway.</source> - <translation>L'installation à la racine système a échoué&nbsp;: %1. L'installation continue néanmoins. </translation> + <translation>L'installation à la racine système a échoué : %1. L'installation continue néanmoins. </translation> </message> <message> <source>Copy files to sysroot</source> @@ -53802,15 +53802,15 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro <name>Madde::Internal::MaemoMakeInstallToSysrootStep</name> <message> <source>Cannot deploy: No active build dconfiguration.</source> - <translation type="obsolete">Déploiement impossible&nbsp;: aucune configuration de compilation active.</translation> + <translation type="obsolete">Déploiement impossible : aucune configuration de compilation active.</translation> </message> <message> <source>Cannot deploy: No active build configuration.</source> - <translation>Déploiement impossible&nbsp;: aucune configuration de compilation active.</translation> + <translation>Déploiement impossible : aucune configuration de compilation active.</translation> </message> <message> <source>Cannot deploy: Unusable build configuration.</source> - <translation>Déploiement impossible&nbsp;: configuration de compilation inutilisable.</translation> + <translation>Déploiement impossible : configuration de compilation inutilisable.</translation> </message> <message> <source>Copy files to sysroot</source> @@ -53833,7 +53833,7 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Packaging failed: No Qt version.</source> - <translation>Échec de paquetage&nbsp;: Aucune version de Qt.</translation> + <translation>Échec de paquetage : Aucune version de Qt.</translation> </message> <message> <source>No Qt4 build configuration</source> @@ -53849,23 +53849,23 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Package Creation: Running command '%1'.</source> - <translation>Création du paquetage&nbsp;: Exécution de la commande '%1'.</translation> + <translation>Création du paquetage : Exécution de la commande '%1'.</translation> </message> <message> <source>Packaging failed: Could not start command '%1'. Reason: %2</source> - <translation>Échec de paquetage&nbsp;: Impossible de démarre la commande '%1'. Raison&nbsp;: %2</translation> + <translation>Échec de paquetage : Impossible de démarre la commande '%1'. Raison : %2</translation> </message> <message> <source>Packaging Error: Command '%1' failed.</source> - <translation>Erreur de paquetage&nbsp;: Commande '%1' échouée.</translation> + <translation>Erreur de paquetage : Commande '%1' échouée.</translation> </message> <message> <source> Reason: %1</source> - <translation>Raison&nbsp;: %1</translation> + <translation>Raison : %1</translation> </message> <message> <source>Exit code: %1</source> - <translation>Code de sortie&nbsp;: %1</translation> + <translation>Code de sortie : %1</translation> </message> </context> <context> @@ -53876,11 +53876,11 @@ Nous allons essayer de travailler avec cela mais vous pourrez rencontrer des pro </message> <message> <source>Packaging failed: Could not get package name.</source> - <translation>Erreur lors de la création du paquet&nbsp;: Impossible de récupérer le nom du paquet.</translation> + <translation>Erreur lors de la création du paquet : Impossible de récupérer le nom du paquet.</translation> </message> <message> <source>Packaging failed: Could not move package files from '%1' to '%2'.</source> - <translation>Erreur lors de la création du paquet&nbsp;: Impossible de déplacer les fichiers du paquet de '%1' vers '%2'.</translation> + <translation>Erreur lors de la création du paquet : Impossible de déplacer les fichiers du paquet de '%1' vers '%2'.</translation> </message> <message> <source>Your project name contains characters not allowed in Debian packages. @@ -53892,11 +53892,11 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Packaging failed: Foreign debian directory detected. You are not using a shadow build and there is a debian directory in your project root ('%1'). Qt Creator will not overwrite that directory. Please remove it or use the shadow build feature.</source> - <translation>Erreur lors de la création du paquet&nbsp;: Dossier Debian étranger détecté. Vous n'utilisez pas un shadow build et il y a un dossier Debug dans votre racine de projet ('%1'). Qt Créator n'écrasera pas ce dossier. Veuillez le retirer ou l'utiliser dans la fonctionnalité de shadow build.</translation> + <translation>Erreur lors de la création du paquet : Dossier Debian étranger détecté. Vous n'utilisez pas un shadow build et il y a un dossier Debug dans votre racine de projet ('%1'). Qt Créator n'écrasera pas ce dossier. Veuillez le retirer ou l'utiliser dans la fonctionnalité de shadow build.</translation> </message> <message> <source>Packaging failed: Could not remove directory '%1': %2</source> - <translation>Erreur lors de la création du paquet&nbsp;: Impossible de supprimer le dossier '%1': %2</translation> + <translation>Erreur lors de la création du paquet : Impossible de supprimer le dossier '%1': %2</translation> </message> <message> <source>Could not create Debian directory '%1'.</source> @@ -53904,11 +53904,11 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Could not read manifest file '%1': %2.</source> - <translation>Impossible de lire le fichier manifeste '%1'&nbsp;: %2.</translation> + <translation>Impossible de lire le fichier manifeste '%1' : %2.</translation> </message> <message> <source>Could not write manifest file '%1': %2.</source> - <translation>Impossible d'écrire le fichier manifest '%1'&nbsp;: %2.</translation> + <translation>Impossible d'écrire le fichier manifest '%1' : %2.</translation> </message> <message> <source>Could not copy file '%1' to '%2'.</source> @@ -53916,7 +53916,7 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Error: Could not create file '%1'.</source> - <translation>Erreur&nbsp;: impossible de créer le fichier "%1". </translation> + <translation>Erreur : impossible de créer le fichier "%1". </translation> </message> </context> <context> @@ -53927,7 +53927,7 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Packaging failed: Could not move package file from %1 to %2.</source> - <translation type="obsolete">Erreur lors de la création du paquet&nbsp;: Impossible de déplacer les fichiers du paquet de '%1' vers '%2'.</translation> + <translation type="obsolete">Erreur lors de la création du paquet : Impossible de déplacer les fichiers du paquet de '%1' vers '%2'.</translation> </message> </context> <context> @@ -53978,7 +53978,7 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source><b>Create Package:</b> </source> - <translation><b>Créer le paquet&nbsp;:</b> </translation> + <translation><b>Créer le paquet :</b> </translation> </message> <message> <source>Could Not Set Version Number</source> @@ -53986,39 +53986,39 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Package name:</source> - <translation>Nom du paquet&nbsp;: </translation> + <translation>Nom du paquet : </translation> </message> <message> <source>Package version:</source> - <translation>Version du paquet&nbsp;: </translation> + <translation>Version du paquet : </translation> </message> <message> <source>Major:</source> - <translation>Majeur&nbsp;:</translation> + <translation>Majeur :</translation> </message> <message> <source>Minor:</source> - <translation>Mineur&nbsp;:</translation> + <translation>Mineur :</translation> </message> <message> <source>Patch:</source> - <translation>Patch&nbsp;:</translation> + <translation>Patch :</translation> </message> <message> <source>Short package description:</source> - <translation>Description couret du paquet&nbsp;: </translation> + <translation>Description couret du paquet : </translation> </message> <message> <source>Name to be displayed in Package Manager:</source> - <translation>Nom à afficher dans le gestionnaire de paquets&nbsp;: </translation> + <translation>Nom à afficher dans le gestionnaire de paquets : </translation> </message> <message> <source>Icon to be displayed in Package Manager:</source> - <translation>Icône à afficher dans le gestionnaire de paquets&nbsp;: </translation> + <translation>Icône à afficher dans le gestionnaire de paquets : </translation> </message> <message> <source>Adapt Debian file:</source> - <translation>Adapter le fichier Debian&nbsp;: </translation> + <translation>Adapter le fichier Debian : </translation> </message> <message> <source>Edit...</source> @@ -54063,11 +54063,11 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>The project is missing some information important to publishing:</source> - <translation>Quelques informations manquent au projet pour la publication&nbsp;: </translation> + <translation>Quelques informations manquent au projet pour la publication : </translation> </message> <message> <source>Publishing failed: Missing project information.</source> - <translation>La publication a échoué&nbsp;: des informations sur le projet manquaient. </translation> + <translation>La publication a échoué : des informations sur le projet manquaient. </translation> </message> <message> <source>Removing left-over temporary directory ...</source> @@ -54075,11 +54075,11 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Error removing temporary directory: %1</source> - <translation>Erreur lors de la suppression du répertoire temporaire&nbsp;: %1</translation> + <translation>Erreur lors de la suppression du répertoire temporaire : %1</translation> </message> <message> <source>Publishing failed: Could not create source package.</source> - <translation>Échec de la publication&nbsp;: impossible de créer le paquet de sources. </translation> + <translation>Échec de la publication : impossible de créer le paquet de sources. </translation> </message> <message> <source>Setting up temporary directory ...</source> @@ -54087,19 +54087,19 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Error: Could not create temporary directory.</source> - <translation>Erreur&nbsp;: impossible de créer le répertoire temporaire. </translation> + <translation>Erreur : impossible de créer le répertoire temporaire. </translation> </message> <message> <source>Error: Could not copy project directory.</source> - <translation>Erreur&nbsp;: impossible de copier le répertoire du projet. </translation> + <translation>Erreur : impossible de copier le répertoire du projet. </translation> </message> <message> <source>Error: Could not fix newlines.</source> - <translation>Erreur&nbsp;: impossible de corriger les nouvelle lignes.</translation> + <translation>Erreur : impossible de corriger les nouvelle lignes.</translation> </message> <message> <source>Publishing failed: Could not create package.</source> - <translation>Échec de la publication&nbsp;: impossible de créer un paquet. </translation> + <translation>Échec de la publication : impossible de créer un paquet. </translation> </message> <message> <source>Cleaning up temporary directory ...</source> @@ -54123,23 +54123,23 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Could not set execute permissions for rules file: %1</source> - <translation>Impossible de définir les règles de permission pour le fichier&nbsp;: %1</translation> + <translation>Impossible de définir les règles de permission pour le fichier : %1</translation> </message> <message> <source>Could not copy file '%1' to '%2': %3.</source> - <translation>Impossible de copier le fichier "%1" à "%2"&nbsp;: %3. </translation> + <translation>Impossible de copier le fichier "%1" à "%2" : %3. </translation> </message> <message> <source>Make distclean failed: %1</source> - <translation>Échec de "make disclean"&nbsp;: %1</translation> + <translation>Échec de "make disclean" : %1</translation> </message> <message> <source>Error: Failed to start dpkg-buildpackage.</source> - <translation>Erreur&nbsp;: impossible de démarrer dpkg-buildpackage.</translation> + <translation>Erreur : impossible de démarrer dpkg-buildpackage.</translation> </message> <message> <source>Error: dpkg-buildpackage did not succeed.</source> - <translation>Erreur&nbsp;: dpkg-buildpackage n'a pas réussi. </translation> + <translation>Erreur : dpkg-buildpackage n'a pas réussi. </translation> </message> <message> <source>Package creation failed.</source> @@ -54177,7 +54177,7 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>SSH error: %1</source> - <translation>Erreur SSH&nbsp;: %1</translation> + <translation>Erreur SSH : %1</translation> </message> <message> <source>Upload failed.</source> @@ -54185,7 +54185,7 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Error uploading file: %1.</source> - <translation>Erreur lors de l'envoi du fichier&nbsp;: %1.</translation> + <translation>Erreur lors de l'envoi du fichier : %1.</translation> </message> <message> <source>Error uploading file.</source> @@ -54205,11 +54205,11 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Cannot open file for reading: %1.</source> - <translation>Impossible d'ouvrir le fichier en lecture&nbsp;: %1.</translation> + <translation>Impossible d'ouvrir le fichier en lecture : %1.</translation> </message> <message> <source>Cannot read file: %1</source> - <translation>Impossible de lire le fichier&nbsp;: %1</translation> + <translation>Impossible de lire le fichier : %1</translation> </message> <message> <source>The package description is empty. You must set one in Projects -> Run -> Create Package -> Details.</source> @@ -54252,7 +54252,7 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Garage account name:</source> - <translation>Nom de compte Garage&nbsp;: </translation> + <translation>Nom de compte Garage : </translation> </message> <message> <source><a href="https://garage.maemo.org/account/register.php">Get an account</a></source> @@ -54264,15 +54264,15 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Private key file:</source> - <translation>Fichier de clé privée&nbsp;:</translation> + <translation>Fichier de clé privée :</translation> </message> <message> <source>Server address:</source> - <translation>Adresse du serveur&nbsp;: </translation> + <translation>Adresse du serveur : </translation> </message> <message> <source>Target directory on server:</source> - <translation>Répertoire cible sur le serveur&nbsp;: </translation> + <translation>Répertoire cible sur le serveur : </translation> </message> </context> <context> @@ -54321,7 +54321,7 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Qemu finished with error: Exit code was %1.</source> - <translation>Qemu s'est terminé avec une erreur&nbsp;: le code d'erreur était %1.</translation> + <translation>Qemu s'est terminé avec une erreur : le code d'erreur était %1.</translation> </message> <message> <source>Qemu error</source> @@ -54329,7 +54329,7 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Qemu failed to start: %1</source> - <translation>Qemu n'a pas pu démarrer&nbsp;: %1</translation> + <translation>Qemu n'a pas pu démarrer : %1</translation> </message> <message> <source>Stop MeeGo Emulator</source> @@ -54340,11 +54340,11 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè <name>Madde::Internal::MaemoRemoteCopyFacility</name> <message> <source>Connection failed: %1</source> - <translation>Échec de la connexion&nbsp;: %1</translation> + <translation>Échec de la connexion : %1</translation> </message> <message> <source>Error: Copy command failed.</source> - <translation>Erreur&nbsp;: échec de la commande de copie. </translation> + <translation>Erreur : échec de la commande de copie. </translation> </message> <message> <source>Copying file '%1' to directory '%2' on the device...</source> @@ -54367,7 +54367,7 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè </message> <message> <source>Failure unmounting: %1</source> - <translation>Échec dans le démontage de&nbsp;: %1</translation> + <translation>Échec dans le démontage de : %1</translation> </message> <message> <source>Finished unmounting.</source> @@ -54376,11 +54376,11 @@ Nous essayerons de contourner cela, mais vous pouvez rencontrer quelques problè <message> <source> stderr was: '%1'</source> - <translation>stderr était&nbsp;: "%1"</translation> + <translation>stderr était : "%1"</translation> </message> <message> <source>Error: Not enough free ports on device to fulfill all mount requests.</source> - <translation>Erreur&nbsp;: pas assez de ports libres sur le périphérique pour remplir toutes les requêtes. </translation> + <translation>Erreur : pas assez de ports libres sur le périphérique pour remplir toutes les requêtes. </translation> </message> <message> <source>Starting remote UTFS clients...</source> @@ -54402,11 +54402,11 @@ stderr was: '%1'</source> <source> stderr was: %1</source> <translation> -stderr était&nbsp;: %1</translation> +stderr était : %1</translation> </message> <message> <source>Error running UTFS server: %1</source> - <translation>Erreur au lancement du serveur UTFS&nbsp;: %1</translation> + <translation>Erreur au lancement du serveur UTFS : %1</translation> </message> <message> <source>Timeout waiting for UTFS servers to connect.</source> @@ -54476,11 +54476,11 @@ stderr était&nbsp;: %1</translation> </message> <message> <source>Cannot debug: Kit has no device.</source> - <translation>Impossible de déboguer&nbsp;: le kit n'a pas de périphérique.</translation> + <translation>Impossible de déboguer : le kit n'a pas de périphérique.</translation> </message> <message> <source>Cannot debug: Not enough free ports available.</source> - <translation>Impossible de déboguer&nbsp;: pas assez de ports libres disponibles.</translation> + <translation>Impossible de déboguer : pas assez de ports libres disponibles.</translation> </message> </context> <context> @@ -54555,7 +54555,7 @@ stderr était&nbsp;: %1</translation> <name>Madde::Internal::MaemoToolChainConfigWidget</name> <message> <source><html><head/><body><table><tr><td>Path to MADDE:</td><td>%1</td></tr><tr><td>Path to MADDE target:</td><td>%2</td></tr><tr><td>Debugger:</td/><td>%3</td></tr></body></html></source> - <translation type="obsolete"><html><head/><body><table><tr><td>Chemin de MADDE&nbsp;:</td><td>%1</td></tr><tr><td>Chemin de la cible MADDE&nbsp;:</td><td>%2</td></tr><tr><td>Débogueur&nbsp;:</td/><td>%3</td></tr></body></html></translation> + <translation type="obsolete"><html><head/><body><table><tr><td>Chemin de MADDE :</td><td>%1</td></tr><tr><td>Chemin de la cible MADDE :</td><td>%2</td></tr><tr><td>Débogueur :</td/><td>%3</td></tr></body></html></translation> </message> </context> <context> @@ -54581,7 +54581,7 @@ stderr était&nbsp;: %1</translation> <name>Madde::Internal::AbstractQt4MaemoTarget</name> <message> <source>Cannot open file '%1': %2</source> - <translation type="obsolete">Impossible d'ouvrir le fichier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Impossible d'ouvrir le fichier "%1" : %2</translation> </message> <message> <source>Add Packaging Files to Project</source> @@ -54591,9 +54591,9 @@ stderr était&nbsp;: %1</translation> <source><html>Qt Creator has set up the following files to enable packaging: %1 Do you want to add them to the project?</html></source> - <translation type="obsolete"><html>Qt Creator a configuré les fichiers suivants pour permettre l'empaquetage&nbsp;: + <translation type="obsolete"><html>Qt Creator a configuré les fichiers suivants pour permettre l'empaquetage : %1 -Voulez-vous les ajouter au projet&nbsp;?</html></translation> +Voulez-vous les ajouter au projet ?</html></translation> </message> <message> <source>Qt Creator</source> @@ -54601,11 +54601,11 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Do you want to remove the packaging files associated with the target '%1'?</source> - <translation type="obsolete">Voulez-vous supprimer les fichiers de packaging associés avec la cible '%1'&nbsp;?</translation> + <translation type="obsolete">Voulez-vous supprimer les fichiers de packaging associés avec la cible '%1' ?</translation> </message> <message> <source>Do you want to remove the packaging file(s) associated with the target '%1'?</source> - <translation type="obsolete">Souhaitez vous supprimer les fichiers de paquetage associés à la cible '%1'&nbsp;?</translation> + <translation type="obsolete">Souhaitez vous supprimer les fichiers de paquetage associés à la cible '%1' ?</translation> </message> <message> <source>Error creating packaging directory '%1'.</source> @@ -54624,11 +54624,11 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Refusing to update changelog file: Already contains version '%1'.</source> - <translation type="obsolete">Refus de mise à jour du journal des changements&nbsp;: Il contient déjà la version '%1'.</translation> + <translation type="obsolete">Refus de mise à jour du journal des changements : Il contient déjà la version '%1'.</translation> </message> <message> <source>Cannot update changelog: Invalid format (no maintainer entry found).</source> - <translation type="obsolete">Refus de mise à jour du journal des changements&nbsp;: Format invalide (aucune entrée de mainteneur trouvée).</translation> + <translation type="obsolete">Refus de mise à jour du journal des changements : Format invalide (aucune entrée de mainteneur trouvée).</translation> </message> <message> <source>Invalid icon data in Debian control file.</source> @@ -54644,27 +54644,27 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Unable to create Debian templates: No Qt version set.</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: pas de version de Qt définie.</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : pas de version de Qt définie.</translation> </message> <message> <source>Unable to create Debian templates: dh_make failed (%1).</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1).</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1).</translation> </message> <message> <source>Unable to create debian templates: dh_make failed (%1).</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1).</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1).</translation> </message> <message> <source>Unable to create Debian templates: No Qt version set</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: pas de version de Qt définie</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : pas de version de Qt définie</translation> </message> <message> <source>Unable to create Debian templates: dh_make failed (%1)</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1)</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1)</translation> </message> <message> <source>Unable to create debian templates: dh_make failed (%1)</source> - <translation type="obsolete">Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1)</translation> + <translation type="obsolete">Impossible de créer des modèles Debian : échec de dh_make (%1)</translation> </message> <message> <source>Unable to move new debian directory to '%1'.</source> @@ -54683,7 +54683,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Project Settings File from a different Environment?</source> - <translation type="obsolete">Le fichier de configuration du projet provient-il d'un environnement différent&nbsp;?</translation> + <translation type="obsolete">Le fichier de configuration du projet provient-il d'un environnement différent ?</translation> </message> <message> <source>Qt Creator has found a .user settings file which was created for another development setup, maybe originating from another machine. @@ -54695,7 +54695,7 @@ Do you still want to load the settings file?</source> Le fichier de configuration .user contient des paramètres spécifiques à un environnement. Ils ne devraient pas être copiés dans un environnement différent. -Voulez-vous toujours charger le fichier de configuration&nbsp;?</translation> +Voulez-vous toujours charger le fichier de configuration ?</translation> </message> <message> <source>No valid .user file found for '%1'</source> @@ -54707,11 +54707,11 @@ Voulez-vous toujours charger le fichier de configuration&nbsp;?</translation </message> <message> <source>Settings File for '%1' from a different Environment?</source> - <translation>Fichier de configuration pour "%1" venant d'un autre environnement&nbsp;?</translation> + <translation>Fichier de configuration pour "%1" venant d'un autre environnement ?</translation> </message> <message> <source><p>No .user settings file created by this instance of Qt Creator was found.</p><p>Did you work with this project on another machine or using a different settings path before?</p><p>Do you still want to load the settings file '%1'?</p></source> - <translation><p>Aucun fichier de configuration .user crée par cette instance de Qt Creator n'a été trouvé.</p><p>Avez-vous travailler avec ce projet sur une autre machine ou utilisant un autre répertoire de configuration précédemment&nbsp;?</p><p>Souhaitez-vous toujours charger le fichier de configuration "%1"&nbsp;?</p></translation> + <translation><p>Aucun fichier de configuration .user crée par cette instance de Qt Creator n'a été trouvé.</p><p>Avez-vous travailler avec ce projet sur une autre machine ou utilisant un autre répertoire de configuration précédemment ?</p><p>Souhaitez-vous toujours charger le fichier de configuration "%1" ?</p></translation> </message> <message> <source>Using Old Settings File for '%1'</source> @@ -54727,7 +54727,7 @@ Voulez-vous toujours charger le fichier de configuration&nbsp;?</translation </message> <message> <source>The version of your .shared file is not supported by Qt Creator. Do you want to try loading it anyway?</source> - <translation>La version de votre fichier .shared n'est pas supportée par Qt Creator. Souhaitez-vous le charger&nbsp;?</translation> + <translation>La version de votre fichier .shared n'est pas supportée par Qt Creator. Souhaitez-vous le charger ?</translation> </message> <message> <source>The version of your .shared file is not supported by this Qt Creator version. Only settings that are still compatible will be taken into account. @@ -54735,7 +54735,7 @@ Voulez-vous toujours charger le fichier de configuration&nbsp;?</translation Do you want to try loading it?</source> <translation type="obsolete">La version de votre fichier .shared n'est pas supportée par cette version de Qt Creator. Seuls les paramètres compatibles seront pris en compte. -Souhaitez-vous le charger&nbsp;?</translation> +Souhaitez-vous le charger ?</translation> </message> <message> <source>The version of your .shared file is not yet supported by this Qt Creator version. Only settings that are still compatible will be taken into account. @@ -54745,7 +54745,7 @@ Do you want to continue? If you choose not to continue Qt Creator will not try to load the .shared file.</source> <translation type="obsolete">La version de votre fichier partagé n'est pas encore supporté par cette version de Qt Creator. Seuls les paramètres toujours compatible seront pris en compte. -Voulez vous continuez&nbsp;? +Voulez vous continuez ? Si vous choisissez de ne pas continuer, Qt Creator n'essayera pas de charger le fichier partagé.</translation> </message> @@ -54754,7 +54754,7 @@ Si vous choisissez de ne pas continuer, Qt Creator n'essayera pas de charge <name>QmlJSEditor</name> <message> <source>Qt Quick</source> - <translatorcomment>Burger King bientôt&nbsp;?&nbsp;:P</translatorcomment> + <translatorcomment>Burger King bientôt ? :P</translatorcomment> <translation>Qt Quick</translation> </message> </context> @@ -54824,7 +54824,7 @@ globalement dans l'éditeur QML. Vous pouvez ajouter une annotation '/ </message> <message> <source>Failed!</source> - <translation>Échec&nbsp;!</translation> + <translation>Échec !</translation> </message> <message> <source>Could not write project file %1.</source> @@ -54843,7 +54843,7 @@ globalement dans l'éditeur QML. Vous pouvez ajouter une annotation '/ </message> <message> <source>The icon needs to be %1x%2 pixels big, but is not. Do you want Qt Creator to scale it?</source> - <translation>L'icône doit être de la taille %1x%2, mais ne l'est pas. Souhaitez vous que Qt Creator la redimensionne&nbsp;?</translation> + <translation>L'icône doit être de la taille %1x%2, mais ne l'est pas. Souhaitez vous que Qt Creator la redimensionne ?</translation> </message> <message> <source>File Error</source> @@ -54851,7 +54851,7 @@ globalement dans l'éditeur QML. Vous pouvez ajouter une annotation '/ </message> <message> <source>Could not copy icon file: %1</source> - <translation>Impossible de copier le fichier de l'icône&nbsp;: %1</translation> + <translation>Impossible de copier le fichier de l'icône : %1</translation> </message> </context> <context> @@ -54870,32 +54870,32 @@ globalement dans l'éditeur QML. Vous pouvez ajouter une annotation '/ </message> <message> <source>Could not connect to host: %1</source> - <translation>Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation>Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source> Did the emulator fail to start?</source> - <translation>Est ce que l'émulateur n'a pas pu démarrer&nbsp;?</translation> + <translation>Est ce que l'émulateur n'a pas pu démarrer ?</translation> </message> <message> <source> Is the device connected and set up for network access?</source> - <translation>Est-ce que le périphérique est connecté et configuré pour l'accès réseau&nbsp;? </translation> + <translation>Est-ce que le périphérique est connecté et configuré pour l'accès réseau ? </translation> </message> <message> <source>Connection error: %1</source> - <translation>Erreur de connexion&nbsp;: %1</translation> + <translation>Erreur de connexion : %1</translation> </message> </context> <context> <name>RemoteLinux::AbstractRemoteLinuxDeployStep</name> <message> <source>Deployment failed: %1</source> - <translation type="obsolete">Échec du déploiement&nbsp;: %1</translation> + <translation type="obsolete">Échec du déploiement : %1</translation> </message> <message> <source>Cannot deploy: %1</source> - <translation>Impossible de déployer&nbsp;: %1</translation> + <translation>Impossible de déployer : %1</translation> </message> <message> <source>User requests deployment to stop; cleaning up.</source> @@ -54929,15 +54929,15 @@ Is the device connected and set up for network access?</source> <name>RemoteLinux::GenericDirectUploadService</name> <message> <source>SFTP initialization failed: %1</source> - <translation>Échec de l'initialisation de SFTP&nbsp;: %1</translation> + <translation>Échec de l'initialisation de SFTP : %1</translation> </message> <message> <source>Upload of file '%1' failed: %2</source> - <translation type="obsolete">Échec lors de l'envoi du fichier "%1"&nbsp;: %2</translation> + <translation type="obsolete">Échec lors de l'envoi du fichier "%1" : %2</translation> </message> <message> <source>Upload of file '%1' failed. The server said: '%2'.</source> - <translation>L'envoi du fichier '%1' a échoué. Le serveur a répondu&nbsp;: '%2'.</translation> + <translation>L'envoi du fichier '%1' a échoué. Le serveur a répondu : '%2'.</translation> </message> <message> <source>If '%1' is currently running on the remote host, you might need to stop it first.</source> @@ -54953,7 +54953,7 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Failed to upload file '%1': Could not open for reading.</source> - <translation>Échec lors de l'envoi du fichier "%1"&nbsp;: impossible de l'ouvrir en lecture. </translation> + <translation>Échec lors de l'envoi du fichier "%1" : impossible de l'ouvrir en lecture. </translation> </message> <message> <source>All files successfully deployed.</source> @@ -54980,7 +54980,7 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Command line:</source> - <translation>Ligne de commande&nbsp;: </translation> + <translation>Ligne de commande : </translation> </message> </context> <context> @@ -55048,7 +55048,7 @@ Is the device connected and set up for network access?</source> </message> <message> <source>&Configuration:</source> - <translation type="obsolete">&Configuration&nbsp;:</translation> + <translation type="obsolete">&Configuration :</translation> </message> <message> <source>General</source> @@ -55056,15 +55056,15 @@ Is the device connected and set up for network access?</source> </message> <message> <source>&Name:</source> - <translation type="obsolete">&Nom&nbsp;:</translation> + <translation type="obsolete">&Nom :</translation> </message> <message> <source>OS type:</source> - <translation type="obsolete">Type d'OS&nbsp;: </translation> + <translation type="obsolete">Type d'OS : </translation> </message> <message> <source>Device type:</source> - <translation type="obsolete">Type de périphérique&nbsp;:</translation> + <translation type="obsolete">Type de périphérique :</translation> </message> <message> <source>&Add...</source> @@ -55114,11 +55114,11 @@ Is the device connected and set up for network access?</source> </message> <message> <source>SSH connection failure: %1</source> - <translation>Échec de la connexion SSH&nbsp;: %1</translation> + <translation>Échec de la connexion SSH : %1</translation> </message> <message> <source>uname failed: %1</source> - <translation>Échec d'uname&nbsp;: %1</translation> + <translation>Échec d'uname : %1</translation> </message> <message> <source>uname failed.</source> @@ -55126,7 +55126,7 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Error gathering ports: %1</source> - <translation>Erreur lors de la récupération des ports&nbsp;: %1</translation> + <translation>Erreur lors de la récupération des ports : %1</translation> </message> <message> <source>All specified ports are available.</source> @@ -55134,7 +55134,7 @@ Is the device connected and set up for network access?</source> </message> <message> <source>The following specified ports are currently in use: %1</source> - <translation>Les ports suivant sont actuellement en cours d'utilisation&nbsp;: %1</translation> + <translation>Les ports suivant sont actuellement en cours d'utilisation : %1</translation> </message> <message> <source>SSH connection failure: %1 @@ -55145,7 +55145,7 @@ Is the device connected and set up for network access?</source> <message> <source>uname failed: %1 </source> - <translation>Échec d'uname&nbsp;: %1 + <translation>Échec d'uname : %1 </translation> </message> <message> @@ -55161,7 +55161,7 @@ Is the device connected and set up for network access?</source> <message> <source>Error gathering ports: %1 </source> - <translation>Erreur lors de la récupération des ports&nbsp;: %1 + <translation>Erreur lors de la récupération des ports : %1 </translation> </message> <message> @@ -55172,7 +55172,7 @@ Is the device connected and set up for network access?</source> <message> <source>The following specified ports are currently in use: %1 </source> - <translation>Les ports suivant sont actuellement en cours d'utilisation&nbsp;: %1 + <translation>Les ports suivant sont actuellement en cours d'utilisation : %1 </translation> </message> </context> @@ -55184,15 +55184,15 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Connection failed: %1</source> - <translation>Échec de la connexion&nbsp;: %1</translation> + <translation>Échec de la connexion : %1</translation> </message> <message> <source>SFTP error: %1</source> - <translation>Erreur SFTP&nbsp;: %1</translation> + <translation>Erreur SFTP : %1</translation> </message> <message> <source>Package upload failed: Could not open file.</source> - <translation>Échec de l'envoi du paquet&nbsp;: impossible d'ouvrir le fichier. </translation> + <translation>Échec de l'envoi du paquet : impossible d'ouvrir le fichier. </translation> </message> <message> <source>Starting upload...</source> @@ -55200,7 +55200,7 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Failed to upload package: %2</source> - <translation>Échec de l'envoi du paquet&nbsp;: %2</translation> + <translation>Échec de l'envoi du paquet : %2</translation> </message> </context> <context> @@ -55230,15 +55230,15 @@ Is the device connected and set up for network access?</source> <name>RemoteLinux::AbstractRemoteLinuxApplicationRunner</name> <message> <source>Cannot run: %1</source> - <translation type="obsolete">Impossible de lancer&nbsp;: %1</translation> + <translation type="obsolete">Impossible de lancer : %1</translation> </message> <message> <source>Could not connect to host: %1</source> - <translation type="obsolete">Impossible de se connecter à l'hôte&nbsp;: %1</translation> + <translation type="obsolete">Impossible de se connecter à l'hôte : %1</translation> </message> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Killing remote process(es)...</source> @@ -55246,7 +55246,7 @@ Is the device connected and set up for network access?</source> </message> <message> <source>Initial cleanup failed: %1</source> - <translation type="obsolete">Échec du nettoyage initial&nbsp;: %1</translation> + <translation type="obsolete">Échec du nettoyage initial : %1</translation> </message> <message> <source>Remote process started.</source> @@ -55255,7 +55255,7 @@ Is the device connected and set up for network access?</source> <message> <source>Gathering ports failed: %1 Continuing anyway.</source> - <translation type="obsolete">La récupération des ports a échoué&nbsp;: %1 + <translation type="obsolete">La récupération des ports a échoué : %1 Continuation.</translation> </message> <message> @@ -55272,7 +55272,7 @@ Continuation.</translation> </message> <message> <source>Error running remote process: %1</source> - <translation type="obsolete">Erreur lors de l'exécution du processus à distance&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'exécution du processus à distance : %1</translation> </message> </context> <context> @@ -55332,22 +55332,22 @@ Continuation.</translation> <name>RemoteLinux::RemoteLinuxDeployStepWidget</name> <message> <source><b>%1 using device</b>: %2</source> - <translation type="obsolete"><b>%1 utilisant le périphérique</b>&nbsp;: %2</translation> + <translation type="obsolete"><b>%1 utilisant le périphérique</b> : %2</translation> </message> </context> <context> <name>RemoteLinux::Internal::RemoteLinuxEnvironmentReader</name> <message> <source>Connection error: %1</source> - <translation>Erreur de connexion&nbsp;: %1</translation> + <translation>Erreur de connexion : %1</translation> </message> <message> <source>Error running remote process: %1</source> - <translation>Erreur lors de l'exécution du processus à distance&nbsp;: %1</translation> + <translation>Erreur lors de l'exécution du processus à distance : %1</translation> </message> <message> <source>Error: %1</source> - <translation>Erreur&nbsp;: %1</translation> + <translation>Erreur : %1</translation> </message> <message> <source>Process exited with code %1.</source> @@ -55355,19 +55355,19 @@ Continuation.</translation> </message> <message> <source>Error running 'env': %1</source> - <translation>Erreur lors de l'exécution de "env"&nbsp;: %1</translation> + <translation>Erreur lors de l'exécution de "env" : %1</translation> </message> <message> <source> Remote stderr was: '%1'</source> - <translation>Le stderr distant était&nbsp;: "%1"</translation> + <translation>Le stderr distant était : "%1"</translation> </message> </context> <context> <name>RemoteLinux::AbstractRemoteLinuxPackageInstaller</name> <message> <source>Connection failure: %1</source> - <translation>Échec de la connexion&nbsp;: %1</translation> + <translation>Échec de la connexion : %1</translation> </message> <message> <source>Installing package failed.</source> @@ -55404,15 +55404,15 @@ Remote stderr was: '%1'</source> </message> <message> <source>Connection failure: %1</source> - <translation type="obsolete">Échec de la connexion&nbsp;: %1</translation> + <translation type="obsolete">Échec de la connexion : %1</translation> </message> <message> <source>Error: Remote process failed to start: %1</source> - <translation type="obsolete">Erreur&nbsp;: le processus distant n'a pas pu démarrer&nbsp;: %1</translation> + <translation type="obsolete">Erreur : le processus distant n'a pas pu démarrer : %1</translation> </message> <message> <source>Error: Remote process crashed: %1</source> - <translation type="obsolete">Erreur&nbsp;: le processus distant a crashé&nbsp;: %1</translation> + <translation type="obsolete">Erreur : le processus distant a crashé : %1</translation> </message> <message> <source>Remote process failed.</source> @@ -55421,7 +55421,7 @@ Remote stderr was: '%1'</source> <message> <source> Remote stderr was: %1</source> - <translation type="obsolete">Le stderr distant était&nbsp;: %1</translation> + <translation type="obsolete">Le stderr distant était : %1</translation> </message> </context> <context> @@ -55435,15 +55435,15 @@ Remote stderr was: %1</source> <name>RemoteLinux::RemoteLinuxUsedPortsGatherer</name> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Could not start remote process: %1</source> - <translation type="obsolete">Impossible de démarrer le processus distant&nbsp;: %1</translation> + <translation type="obsolete">Impossible de démarrer le processus distant : %1</translation> </message> <message> <source>Remote process crashed: %1</source> - <translation type="obsolete">Processus distant crashé&nbsp;: %1</translation> + <translation type="obsolete">Processus distant crashé : %1</translation> </message> <message> <source>Remote process failed; exit code was %1.</source> @@ -55452,7 +55452,7 @@ Remote stderr was: %1</source> <message> <source> Remote error output was: %1</source> - <translation type="obsolete">La sortie du processus distant était&nbsp;: %1</translation> + <translation type="obsolete">La sortie du processus distant était : %1</translation> </message> </context> <context> @@ -55475,7 +55475,7 @@ Remote error output was: %1</source> </message> <message> <source>Key algorithm:</source> - <translation type="obsolete">Algorithme de la clé&nbsp;:</translation> + <translation type="obsolete">Algorithme de la clé :</translation> </message> <message> <source>&RSA</source> @@ -55487,15 +55487,15 @@ Remote error output was: %1</source> </message> <message> <source>Key &size:</source> - <translation type="obsolete">Taille de la clé (&S)&nbsp;: </translation> + <translation type="obsolete">Taille de la clé (&S) : </translation> </message> <message> <source>Private key file:</source> - <translation type="obsolete">Fichier de clé privée&nbsp;:</translation> + <translation type="obsolete">Fichier de clé privée :</translation> </message> <message> <source>Public key file:</source> - <translation type="obsolete">Fichier de clé publique&nbsp;:</translation> + <translation type="obsolete">Fichier de clé publique :</translation> </message> <message> <source>&Generate And Save Key Pair</source> @@ -55515,22 +55515,22 @@ Remote error output was: %1</source> </message> <message> <source>Failed to create directory: '%1'.</source> - <translation type="obsolete">Impossible de créer le dossier&nbsp;: '%1'.</translation> + <translation type="obsolete">Impossible de créer le dossier : '%1'.</translation> </message> </context> <context> <name>RemoteLinux::SshKeyDeployer</name> <message> <source>Public key error: %1</source> - <translation>Erreur de clé publique&nbsp;: %1</translation> + <translation>Erreur de clé publique : %1</translation> </message> <message> <source>Connection failed: %1</source> - <translation>Échec de la connexion&nbsp;: %1</translation> + <translation>Échec de la connexion : %1</translation> </message> <message> <source>Key deployment failed: %1.</source> - <translation>Échec lors du déploiement de la clé&nbsp;: %1.</translation> + <translation>Échec lors du déploiement de la clé : %1.</translation> </message> </context> <context> @@ -55549,15 +55549,15 @@ Remote error output was: %1</source> </message> <message> <source>Device:</source> - <translation type="obsolete">Appareil mobile&nbsp;:</translation> + <translation type="obsolete">Appareil mobile :</translation> </message> <message> <source>Sysroot:</source> - <translation type="obsolete">Sysroot&nbsp;:</translation> + <translation type="obsolete">Sysroot :</translation> </message> <message> <source>&Filter by process name:</source> - <translation type="obsolete">&Filtrer par nom de processus&nbsp;: </translation> + <translation type="obsolete">&Filtrer par nom de processus : </translation> </message> <message> <source>List of Remote Processes</source> @@ -55573,11 +55573,11 @@ Remote error output was: %1</source> </message> <message> <source>Could not retrieve list of free ports:</source> - <translation type="obsolete">Impossible de récupérer la liste des ports disponibles&nbsp;: </translation> + <translation type="obsolete">Impossible de récupérer la liste des ports disponibles : </translation> </message> <message> <source>Connection error: %1</source> - <translation type="obsolete">Erreur de connexion&nbsp;: %1</translation> + <translation type="obsolete">Erreur de connexion : %1</translation> </message> <message> <source>Starting gdbserver...</source> @@ -55597,7 +55597,7 @@ Remote error output was: %1</source> </message> <message> <source>Running command: %1</source> - <translation type="obsolete">Exécute la commande&nbsp;: %1 + <translation type="obsolete">Exécute la commande : %1 {1?}</translation> </message> </context> @@ -55621,7 +55621,7 @@ Remote error output was: %1</source> </message> <message> <source>Error: tar file %1 cannot be opened (%2).</source> - <translation>Erreur&nbsp;: le fichier %1 n'a pas pu être ouvert (%2). </translation> + <translation>Erreur : le fichier %1 n'a pas pu être ouvert (%2). </translation> </message> <message> <source>No remote path specified for file '%1', skipping.</source> @@ -55629,11 +55629,11 @@ Remote error output was: %1</source> </message> <message> <source>Error writing tar file '%1': %2.</source> - <translation>Erreur lors de l'écriture du fichier "%1"&nbsp;: %2. </translation> + <translation>Erreur lors de l'écriture du fichier "%1" : %2. </translation> </message> <message> <source>Error reading file '%1': %2.</source> - <translation>Erreur lors de la lecture du fichier "%1"&nbsp;: %2. </translation> + <translation>Erreur lors de la lecture du fichier "%1" : %2. </translation> </message> <message> <source>Adding file '%1' to tarball...</source> @@ -55641,11 +55641,11 @@ Remote error output was: %1</source> </message> <message> <source>Cannot add file '%1' to tar-archive: path too long.</source> - <translation>Impossible d'ajouter le fichier "%1" à l'archive&nbsp;: chemin trop long. </translation> + <translation>Impossible d'ajouter le fichier "%1" à l'archive : chemin trop long. </translation> </message> <message> <source>Error writing tar file '%1': %2</source> - <translation>Erreur lors de l'écriture du fichier "%1"&nbsp;: %2</translation> + <translation>Erreur lors de l'écriture du fichier "%1" : %2</translation> </message> <message> <source>Create tarball</source> @@ -55689,7 +55689,7 @@ Remote error output was: %1</source> </message> <message> <source>Code style name:</source> - <translation>Nom du style de code&nbsp;:</translation> + <translation>Nom du style de code :</translation> </message> <message> <source>You cannot save changes to a built-in code style. Copy it first to create your own version.</source> @@ -55712,20 +55712,20 @@ Remote error output was: %1</source> </message> <message> <source>Directory '%1':</source> - <translation>Répertoire '%1'&nbsp;:</translation> + <translation>Répertoire '%1' :</translation> </message> <message> <source>Path: %1 Filter: %2 %3</source> <extracomment>%3 is filled by BaseFileFind::runNewSearch</extracomment> - <translation>Chemin&nbsp;: %1 -Filtre&nbsp;: %2 + <translation>Chemin : %1 +Filtre : %2 %3</translation> </message> <message> <source>Director&y:</source> - <translation>Réperto&ire&nbsp;:</translation> + <translation>Réperto&ire :</translation> </message> <message> <source>&Browse...</source> @@ -55737,7 +55737,7 @@ Filtre&nbsp;: %2 </message> <message> <source>Fi&le pattern:</source> - <translation>Pat&ron de fichier&nbsp;:</translation> + <translation>Pat&ron de fichier :</translation> </message> <message> <source>Directory to search</source> @@ -55790,7 +55790,7 @@ Filtre&nbsp;: %2 <name>VcsBase::Command</name> <message> <source>Error: VCS timed out after %1s.</source> - <translation>Erreur&nbsp;: le délai d'attente du serveur de contrôle de donnée a expiré après %1s.</translation> + <translation>Erreur : le délai d'attente du serveur de contrôle de donnée a expiré après %1s.</translation> </message> <message> <source>Unable to start process, binary is empty</source> @@ -55798,7 +55798,7 @@ Filtre&nbsp;: %2 </message> <message> <source>Error: Executable timed out after %1s.</source> - <translation>Erreur&nbsp;: l'exécutable est arrivé à échéance après %1 s.</translation> + <translation>Erreur : l'exécutable est arrivé à échéance après %1 s.</translation> </message> </context> <context> @@ -55813,15 +55813,15 @@ Filtre&nbsp;: %2 </message> <message> <source>Host:</source> - <translation type="obsolete">Hôte&nbsp;: </translation> + <translation type="obsolete">Hôte : </translation> </message> <message> <source>User:</source> - <translation type="obsolete">Utilisateur&nbsp;:</translation> + <translation type="obsolete">Utilisateur :</translation> </message> <message> <source>Port:</source> - <translation type="obsolete">Port&nbsp;:</translation> + <translation type="obsolete">Port :</translation> </message> <message> <source>You need to pass either a password or an SSH key.</source> @@ -55829,11 +55829,11 @@ Filtre&nbsp;: %2 </message> <message> <source>Password:</source> - <translation type="obsolete">Mot de passe&nbsp;:</translation> + <translation type="obsolete">Mot de passe :</translation> </message> <message> <source>Private key:</source> - <translation type="obsolete">Clé privée&nbsp;: </translation> + <translation type="obsolete">Clé privée : </translation> </message> <message> <source>Target</source> @@ -55841,15 +55841,15 @@ Filtre&nbsp;: %2 </message> <message> <source>Executable:</source> - <translation type="obsolete">Exécutable&nbsp;:</translation> + <translation type="obsolete">Exécutable :</translation> </message> <message> <source>Arguments:</source> - <translation type="obsolete">Arguments&nbsp;:</translation> + <translation type="obsolete">Arguments :</translation> </message> <message> <source>Working directory:</source> - <translation type="obsolete">Répertoire de travail&nbsp;:</translation> + <translation type="obsolete">Répertoire de travail :</translation> </message> </context> <context> @@ -55892,7 +55892,7 @@ Filtre&nbsp;: %2 </message> <message> <source>Target:</source> - <translation>Cible&nbsp;:</translation> + <translation>Cible :</translation> </message> <message> <source>Reset to default</source> @@ -55927,7 +55927,7 @@ Filtre&nbsp;: %2 </message> <message> <source>Patterns:</source> - <translation>Motifs&nbsp;: </translation> + <translation>Motifs : </translation> </message> <message> <source>Magic Header</source> @@ -55985,11 +55985,11 @@ Filtre&nbsp;: %2 </message> <message> <source>&Path:</source> - <translation>Che&min&nbsp;:</translation> + <translation>Che&min :</translation> </message> <message> <source>&Display:</source> - <translation>&Afficher&nbsp;:</translation> + <translation>&Afficher :</translation> </message> <message> <source>entries</source> @@ -56008,22 +56008,22 @@ Filtre&nbsp;: %2 </message> <message> <source>Server prefix:</source> - <translation>Préfixe du serveur&nbsp;:</translation> + <translation>Préfixe du serveur :</translation> </message> <message> <source><i>Note: The plugin will use this for posting as well as fetching.</i></source> - <translation><i>Note&nbsp;: le plug-in utilisera ceci pour poster et récupérer. </i></translation> + <translation><i>Note : le plug-in utilisera ceci pour poster et récupérer. </i></translation> </message> </context> <context> <name>CodePaster::Internal::PasteSelectDialog</name> <message> <source>Protocol:</source> - <translation>Protocole&nbsp;:</translation> + <translation>Protocole :</translation> </message> <message> <source>Paste:</source> - <translation>Collage&nbsp;:</translation> + <translation>Collage :</translation> </message> </context> <context> @@ -56034,11 +56034,11 @@ Filtre&nbsp;: %2 </message> <message> <source>Protocol:</source> - <translation>Protocole&nbsp;:</translation> + <translation>Protocole :</translation> </message> <message> <source>&Username:</source> - <translation>&Utilisateur&nbsp;:</translation> + <translation>&Utilisateur :</translation> </message> <message> <source><Username></source> @@ -56046,7 +56046,7 @@ Filtre&nbsp;: %2 </message> <message> <source>&Description:</source> - <translation>&Description&nbsp;:</translation> + <translation>&Description :</translation> </message> <message> <source><Description></source> @@ -56082,7 +56082,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>&Expires after:</source> - <translation>&Expire après&nbsp;:</translation> + <translation>&Expire après :</translation> </message> </context> <context> @@ -56097,15 +56097,15 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Username:</source> - <translation>Nom d'utilisateur&nbsp;:</translation> + <translation>Nom d'utilisateur :</translation> </message> <message> <source>Default protocol:</source> - <translation>Protocole par défaut&nbsp;:</translation> + <translation>Protocole par défaut :</translation> </message> <message> <source>&Expires after:</source> - <translation>&Expire après&nbsp;:</translation> + <translation>&Expire après :</translation> </message> <message> <source>Days</source> @@ -56116,11 +56116,11 @@ p, li { white-space: pre-wrap; } <name>CppTools::Internal::CppFileSettingsPage</name> <message> <source>Header suffix:</source> - <translation>Suffixe des fichier d'en-tête&nbsp;:</translation> + <translation>Suffixe des fichier d'en-tête :</translation> </message> <message> <source>Source suffix:</source> - <translation>Suffixe des fichiers source&nbsp;:</translation> + <translation>Suffixe des fichiers source :</translation> </message> <message> <source>Lower case file names</source> @@ -56128,7 +56128,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>License template:</source> - <translation>Modèle de licence&nbsp;:</translation> + <translation>Modèle de licence :</translation> </message> <message> <source>Headers</source> @@ -56136,11 +56136,11 @@ p, li { white-space: pre-wrap; } </message> <message> <source>&Suffix:</source> - <translation>&Suffixe&nbsp;:</translation> + <translation>&Suffixe :</translation> </message> <message> <source>S&earch paths:</source> - <translation>&Chemins de la recherche&nbsp;:</translation> + <translation>&Chemins de la recherche :</translation> </message> <message> <source>Comma-separated list of header paths. @@ -56160,11 +56160,11 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>S&uffix:</source> - <translation>S&uffixe&nbsp;:</translation> + <translation>S&uffixe :</translation> </message> <message> <source>Se&arch paths:</source> - <translation>&Chemins de la recherche&nbsp;:</translation> + <translation>&Chemins de la recherche :</translation> </message> <message> <source>Comma-separated list of source paths. @@ -56184,7 +56184,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>License &template:</source> - <translation>&Modèle de licence&nbsp;:</translation> + <translation>&Modèle de licence :</translation> </message> </context> <context> @@ -56195,19 +56195,19 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Kit:</source> - <translation>Kit&nbsp;:</translation> + <translation>Kit :</translation> </message> <message> <source>&Host:</source> - <translation type="obsolete">&Hôte&nbsp;: </translation> + <translation type="obsolete">&Hôte : </translation> </message> <message> <source>&Port:</source> - <translation>&Port&nbsp;:</translation> + <translation>&Port :</translation> </message> <message> <source>Sys&root:</source> - <translation type="obsolete">&Racine système&nbsp;: </translation> + <translation type="obsolete">&Racine système : </translation> </message> </context> <context> @@ -56258,7 +56258,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Maximum stack depth:</source> - <translation type="obsolete">Profondeur maximale de la pile&nbsp;:</translation> + <translation type="obsolete">Profondeur maximale de la pile :</translation> </message> <message> <source><unlimited></source> @@ -56313,23 +56313,23 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>&Host:</source> - <translation>&Hôte&nbsp;: </translation> + <translation>&Hôte : </translation> </message> <message> <source>&Username:</source> - <translation>&Utilisateur&nbsp;:</translation> + <translation>&Utilisateur :</translation> </message> <message> <source>&Password:</source> - <translation>Mot de &passe&nbsp;:</translation> + <translation>Mot de &passe :</translation> </message> <message> <source>&Engine path:</source> - <translation>Chemin du mot&eur&nbsp;: </translation> + <translation>Chemin du mot&eur : </translation> </message> <message> <source>&Inferior path:</source> - <translation>Chemin &inférieur&nbsp;: </translation> + <translation>Chemin &inférieur : </translation> </message> </context> <context> @@ -56340,7 +56340,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Has a passwordless (key-based) login already been set up for this device?</source> - <translation>Posséde déjà un de mot de passe (basé sur des clés) de connexion pour cet appareil&nbsp;?</translation> + <translation>Posséde déjà un de mot de passe (basé sur des clés) de connexion pour cet appareil ?</translation> </message> <message> <source>Yes, and the private key is located at</source> @@ -56359,7 +56359,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Choose build configuration:</source> - <translation>Choisir la configuration de compilation&nbsp;:</translation> + <translation>Choisir la configuration de compilation :</translation> </message> <message> <source>Only create source package, do not upload</source> @@ -56420,7 +56420,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Language:</source> - <translation>Langue&nbsp;:</translation> + <translation>Langue :</translation> </message> </context> <context> @@ -56431,15 +56431,15 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Type:</source> - <translation>Type&nbsp;:</translation> + <translation>Type :</translation> </message> <message> <source>ID:</source> - <translation>Id&nbsp;:</translation> + <translation>Id :</translation> </message> <message> <source>Property name:</source> - <translation>Nom de la propriété&nbsp;:</translation> + <translation>Nom de la propriété :</translation> </message> <message> <source>Animation</source> @@ -56455,11 +56455,11 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Duration:</source> - <translation>Durée&nbsp;:</translation> + <translation>Durée :</translation> </message> <message> <source>Curve:</source> - <translation>Courbe&nbsp;:</translation> + <translation>Courbe :</translation> </message> <message> <source>easeNone</source> @@ -56467,19 +56467,19 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Source:</source> - <translation>Source&nbsp;:</translation> + <translation>Source :</translation> </message> <message> <source>Velocity:</source> - <translation>Vitesse&nbsp;:</translation> + <translation>Vitesse :</translation> </message> <message> <source>Spring:</source> - <translation>Élasticité&nbsp;:</translation> + <translation>Élasticité :</translation> </message> <message> <source>Damping:</source> - <translation>Amortissement&nbsp;:</translation> + <translation>Amortissement :</translation> </message> </context> <context> @@ -56505,18 +56505,18 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer <name>QmakeProjectManager::Internal::MakeStep</name> <message> <source>Make arguments:</source> - <translation>Arguments de Make&nbsp;:</translation> + <translation>Arguments de Make :</translation> </message> <message> <source>Override %1:</source> - <translation>Écraser %1&nbsp;:</translation> + <translation>Écraser %1 :</translation> </message> </context> <context> <name>QmakeProjectManager::Internal::QMakeStep</name> <message> <source>qmake build configuration:</source> - <translation>Configuration de qmake pour la compilation&nbsp;:</translation> + <translation>Configuration de qmake pour la compilation :</translation> </message> <message> <source>Debug</source> @@ -56528,15 +56528,15 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Additional arguments:</source> - <translation>Arguments supplémentaires&nbsp;:</translation> + <translation>Arguments supplémentaires :</translation> </message> <message> <source>Link QML debugging library:</source> - <translation>Lier les bibliothèques de débogage QML&nbsp;: </translation> + <translation>Lier les bibliothèques de débogage QML : </translation> </message> <message> <source>Effective qmake call:</source> - <translation>Appels qmake&nbsp;:</translation> + <translation>Appels qmake :</translation> </message> </context> <context> @@ -56574,7 +56574,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Note: Unless you chose to load a URL, all files and directories that reside in the same directory as the main HTML file are deployed. You can modify the contents of the directory any time before deploying.</source> - <translation>Note&nbsp;: à moins de choisir de charger une URL, tous les fichiers et répertoires qui résident dans le même répertoire que le fichier HTML principal sont déployés. Vous pouvez modifier le contenu du répertoire à n'importe quel moment avant le déploiement. </translation> + <translation>Note : à moins de choisir de charger une URL, tous les fichiers et répertoires qui résident dans le même répertoire que le fichier HTML principal sont déployés. Vous pouvez modifier le contenu du répertoire à n'importe quel moment avant le déploiement. </translation> </message> <message> <source>Touch optimized navigation</source> @@ -56597,7 +56597,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Application icon (80x80):</source> - <translation>Icône de l'application (80x80)&nbsp;:</translation> + <translation>Icône de l'application (80x80) :</translation> </message> <message> <source>Generate code to speed up the launching on the device.</source> @@ -56616,11 +56616,11 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Application icon (.svg):</source> - <translation type="obsolete">Icône de l'application (.svg)&nbsp;:</translation> + <translation type="obsolete">Icône de l'application (.svg) :</translation> </message> <message> <source>Target UID3:</source> - <translation type="obsolete">Cible UID3&nbsp;:</translation> + <translation type="obsolete">Cible UID3 :</translation> </message> <message> <source>Enable network access</source> @@ -56635,11 +56635,11 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Target UID3:</source> - <translation type="obsolete">Cible UID3&nbsp;:</translation> + <translation type="obsolete">Cible UID3 :</translation> </message> <message> <source>Plugin's directory name:</source> - <translation>Nom du répertoire du plug-in&nbsp;:</translation> + <translation>Nom du répertoire du plug-in :</translation> </message> <message> <source>Enable network access</source> @@ -56661,7 +56661,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Authentication type:</source> - <translation>Type d'identification&nbsp;:</translation> + <translation>Type d'identification :</translation> </message> <message> <source>Password</source> @@ -56673,7 +56673,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>&Host name:</source> - <translation>Nom de l'&hôte&nbsp;:</translation> + <translation>Nom de l'&hôte :</translation> </message> <message> <source>IP or host name of the device</source> @@ -56681,19 +56681,19 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>&SSH port:</source> - <translation>Port &SSH&nbsp;: </translation> + <translation>Port &SSH : </translation> </message> <message> <source>Free ports:</source> - <translation>Ports libres&nbsp;: </translation> + <translation>Ports libres : </translation> </message> <message> <source>You can enter lists and ranges like this: 1024,1026-1028,1030</source> - <translation>Vous pouvez entrer des listes et des intervalles comme ceci&nbsp;: 1024,1026-1028,1030</translation> + <translation>Vous pouvez entrer des listes et des intervalles comme ceci : 1024,1026-1028,1030</translation> </message> <message> <source>Timeout:</source> - <translation>Timeout&nbsp;:</translation> + <translation>Timeout :</translation> </message> <message> <source>s</source> @@ -56701,11 +56701,11 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>&Username:</source> - <translation>&Utilisateur&nbsp;:</translation> + <translation>&Utilisateur :</translation> </message> <message> <source>&Password:</source> - <translation>Mot de &passe&nbsp;:</translation> + <translation>Mot de &passe :</translation> </message> <message> <source>Show password</source> @@ -56713,7 +56713,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Private key file:</source> - <translation>Fichier de clé privée&nbsp;:</translation> + <translation>Fichier de clé privée :</translation> </message> <message> <source>Set as Default</source> @@ -56737,11 +56737,11 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Machine type:</source> - <translation>Type de machine&nbsp;:</translation> + <translation>Type de machine :</translation> </message> <message> <source>GDB server executable:</source> - <translation>Exécutable du serveur GDB&nbsp;:</translation> + <translation>Exécutable du serveur GDB :</translation> </message> <message> <source>Leave empty to look up executable in $PATH</source> @@ -56756,19 +56756,19 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>The name to identify this configuration:</source> - <translation>Le nom pour identifier cette configuration&nbsp;: </translation> + <translation>Le nom pour identifier cette configuration : </translation> </message> <message> <source>The device's host name or IP address:</source> - <translation>Le nom d'hôte du périphérique ou son adresse IP&nbsp;: </translation> + <translation>Le nom d'hôte du périphérique ou son adresse IP : </translation> </message> <message> <source>The user name to log into the device:</source> - <translation>Le nom d'utilisateur pour se connecter sur le périphérique&nbsp;: </translation> + <translation>Le nom d'utilisateur pour se connecter sur le périphérique : </translation> </message> <message> <source>The authentication type:</source> - <translation>Le type d'authentification&nbsp;: </translation> + <translation>Le type d'authentification : </translation> </message> <message> <source>Password</source> @@ -56780,11 +56780,11 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>The user's password:</source> - <translation>Le mot de passe de l'utilisateur&nbsp;: </translation> + <translation>Le mot de passe de l'utilisateur : </translation> </message> <message> <source>The file containing the user's private key:</source> - <translation>Le fichier contenant la clé privée de l'utilisateur&nbsp;: </translation> + <translation>Le fichier contenant la clé privée de l'utilisateur : </translation> </message> </context> <context> @@ -56802,7 +56802,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Device configuration:</source> - <translation type="obsolete">Configuration du périphérique&nbsp;:</translation> + <translation type="obsolete">Configuration du périphérique :</translation> </message> <message> <source><a href="irrelevant">Manage device configurations</a></source> @@ -56814,11 +56814,11 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Files to install for subproject:</source> - <translation type="obsolete">Fichiers à installer pour le sous-projet&nbsp;:</translation> + <translation type="obsolete">Fichiers à installer pour le sous-projet :</translation> </message> <message> <source>Files to deploy:</source> - <translation>Fichiers à déployer&nbsp;:</translation> + <translation>Fichiers à déployer :</translation> </message> </context> <context> @@ -56829,7 +56829,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>&Filter by process name:</source> - <translation type="obsolete">&Filtrer par nom de processus&nbsp;: </translation> + <translation type="obsolete">&Filtrer par nom de processus : </translation> </message> <message> <source>&Update List</source> @@ -56859,7 +56859,7 @@ Ces chemines sont utilisés en complément au répertoire courant pour basculer </message> <message> <source>Backspace indentation:</source> - <translation>Indentation pour retour arrière&nbsp;:</translation> + <translation>Indentation pour retour arrière :</translation> </message> <message> <source><html><head/><body> @@ -56883,10 +56883,10 @@ Specifie comment retour arrière se comporte avec l'indentation. <li>Aucune: Aucune interaction. Comportement habituel de la touche retour arrière. </li> -<li>Suit l'indentation qui précède&nbsp;: dans des espaces de début de ligne, ramène le curseur au niveau d'indentation le plus proche utilisé dans les lignes précédentes. +<li>Suit l'indentation qui précède : dans des espaces de début de ligne, ramène le curseur au niveau d'indentation le plus proche utilisé dans les lignes précédentes. </li> -<li>Désindente&nbsp;: Si le caractère après le curseur est un espace, se comporte comme une tabulation arrière. +<li>Désindente : Si le caractère après le curseur est un espace, se comporte comme une tabulation arrière. </li> </ul></body></html> </translation> @@ -56905,7 +56905,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Tab key performs auto-indent:</source> - <translation>La touche tabulation active l'identation automatique&nbsp;:</translation> + <translation>La touche tabulation active l'identation automatique :</translation> </message> <message> <source>Never</source> @@ -56965,7 +56965,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Default encoding: </source> - <translation>Encodage par défaut&nbsp;:</translation> + <translation>Encodage par défaut :</translation> </message> <message> <source><html><head/><body> @@ -56976,10 +56976,10 @@ Specifie comment retour arrière se comporte avec l'indentation. <p>Note that UTF-8 BOMs are uncommon and treated incorrectly by some editors, so it usually makes little sense to add any.</p> <p>This setting does <b>not</b> influence the use of UTF-16 and UTF-32 BOMs.</p></body></html></source> <translation><html><head/><body> -<p>Comment les éditeurs de textes devrait gérer les BOM UTF-8. Les options sont&nbsp;: </p> -<ul ><li><i>ajouter si l'encodage est UTF-8&nbsp;:</i> toujours ajouter un BOM à la sauvegarde d'un fichier en UTF-8 ; notez que ceci ne fonctionnera pas si l'encodage est <i>System</i>, puisque Qt Creator ne sait pas ce qu'il en est réellement ; </li> -<li><i>garder si déjà présent&nbsp;:</i> sauvegarder le fichier avec un BOM s'il en avait déjà un au chargement ; </li> -<li><i>toujours supprimer&nbsp;:</i> ne jamais écrire de BOM, parfois en supprimant l'existant.</li></ul> +<p>Comment les éditeurs de textes devrait gérer les BOM UTF-8. Les options sont : </p> +<ul ><li><i>ajouter si l'encodage est UTF-8 :</i> toujours ajouter un BOM à la sauvegarde d'un fichier en UTF-8 ; notez que ceci ne fonctionnera pas si l'encodage est <i>System</i>, puisque Qt Creator ne sait pas ce qu'il en est réellement ; </li> +<li><i>garder si déjà présent :</i> sauvegarder le fichier avec un BOM s'il en avait déjà un au chargement ; </li> +<li><i>toujours supprimer :</i> ne jamais écrire de BOM, parfois en supprimant l'existant.</li></ul> <p>Notez que les BOM UTF-8 ne sont pas courants et sont traités de manière incorrecte par certains éditeurs, cela n'a que rarement du sens que d'en ajouter un. </p> <p>Ce paramètre n'influence <b>pas</b> l'utilisation des BOM UTF-16 et UTF-32.</p></body></html></translation> </message> @@ -56997,7 +56997,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>UTF-8 BOM:</source> - <translation>UTF-8 BOM&nbsp;:</translation> + <translation>UTF-8 BOM :</translation> </message> <message> <source>Mouse and Keyboard</source> @@ -57017,7 +57017,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Show help tooltips:</source> - <translation>Afficher les bulles d'aide&nbsp;:</translation> + <translation>Afficher les bulles d'aide :</translation> </message> <message> <source>On Mouseover</source> @@ -57041,7 +57041,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Show help tooltips using the mouse:</source> - <translation>Afficher les info-bulles d'aide en utilisant la souris&nbsp;:</translation> + <translation>Afficher les info-bulles d'aide en utilisant la souris :</translation> </message> </context> <context> @@ -57052,7 +57052,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Current settings:</source> - <translation>Paramètres actuels&nbsp;:</translation> + <translation>Paramètres actuels :</translation> </message> <message> <source>Copy...</source> @@ -57131,7 +57131,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Display right &margin at column:</source> - <translation>Afficher une &marge à la colonne&nbsp;:</translation> + <translation>Afficher une &marge à la colonne :</translation> </message> <message> <source>&Highlight matching parentheses</source> @@ -57164,7 +57164,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Location:</source> - <translation>Emplacement&nbsp;:</translation> + <translation>Emplacement :</translation> </message> <message> <source>Use fallback location</source> @@ -57180,7 +57180,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Ignored file patterns:</source> - <translation>Motifs de fichier ignorés&nbsp;: </translation> + <translation>Motifs de fichier ignorés : </translation> </message> </context> <context> @@ -57191,7 +57191,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Group: </source> - <translation>Groupe&nbsp;:</translation> + <translation>Groupe :</translation> </message> <message> <source>Add</source> @@ -57226,7 +57226,7 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Tab policy:</source> - <translation>Politique de tabulation&nbsp;:</translation> + <translation>Politique de tabulation :</translation> </message> <message> <source>Spaces Only</source> @@ -57242,15 +57242,15 @@ Specifie comment retour arrière se comporte avec l'indentation. </message> <message> <source>Ta&b size:</source> - <translation>Taille de &tabulation&nbsp;:</translation> + <translation>Taille de &tabulation :</translation> </message> <message> <source>&Indent size:</source> - <translation>Taille de l'in&dentation&nbsp;:</translation> + <translation>Taille de l'in&dentation :</translation> </message> <message> <source>Align continuation lines:</source> - <translation>Aligner les lignes de continuation&nbsp;:</translation> + <translation>Aligner les lignes de continuation :</translation> </message> <message> <source><html><head/><body> @@ -57281,19 +57281,19 @@ Influences the indentation of continuation lines. <translation><html><head/><body> Influence l'indentation des lignes de continuation. <ul> -<li>Pas du tout&nbsp;: ne pas aligner. Les lignes ne seront indentées jusqu'à la profondeur d'indentation logique. +<li>Pas du tout : ne pas aligner. Les lignes ne seront indentées jusqu'à la profondeur d'indentation logique. <pre> (tab)int i = foo(a, b (tab)c, d); </pre> </li> -<li>Avec espaces&nbsp;: toujours utiliser des espaces pour l'alignement, sans tenir compte des autres paramètres d'indentation. +<li>Avec espaces : toujours utiliser des espaces pour l'alignement, sans tenir compte des autres paramètres d'indentation. <pre> (tab)int i = foo(a, b (tab) c, d); </pre> </li> -<li>Avec indentation régulière&nbsp;: utiliser des tabulations et/ou des espaces pour l'alignement, en fonction de la configuration. +<li>Avec indentation régulière : utiliser des tabulations et/ou des espaces pour l'alignement, en fonction de la configuration. <pre> (tab)int i = foo(a, b (tab)(tab)(tab) c, d); @@ -57392,7 +57392,7 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Branch:</source> - <translation>Branche&nbsp;:</translation> + <translation>Branche :</translation> </message> <message> <source>The development branch in the remote repository to check out.</source> @@ -57416,7 +57416,7 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Checkout path:</source> - <translation>Chemin d'import&nbsp;:</translation> + <translation>Chemin d'import :</translation> </message> <message> <source>The local directory that will contain the code after the checkout.</source> @@ -57424,15 +57424,15 @@ Influence l'indentation des lignes de continuation. </message> <message> <source>Checkout directory:</source> - <translation>Répertoire d'import&nbsp;:</translation> + <translation>Répertoire d'import :</translation> </message> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> <message> <source>Directory:</source> - <translation>Répertoire&nbsp;:</translation> + <translation>Répertoire :</translation> </message> </context> <context> @@ -57450,29 +57450,29 @@ Influence l'indentation des lignes de continuation. <name>VcsBase::Internal::CommonSettingsPage</name> <message> <source>Wrap submit message at:</source> - <translation>Limiter la largeur du message à &nbsp;:</translation> + <translation>Limiter la largeur du message à :</translation> </message> <message> <source> characters</source> <translation> caractères</translation> </message> <message> - <source>An executable which is called with the submit message in a temporary file as first argument. It should return with an exit&nbsp;!= 0 and a message on standard error to indicate failure.</source> + <source>An executable which is called with the submit message in a temporary file as first argument. It should return with an exit != 0 and a message on standard error to indicate failure.</source> <translation>Un exécutable est appelé avec le message soumis dans un fichier temporaire comme premier argument. Pour indiquer une erreur, il doit se terminer avec un code différent 0 et un message sur la sortie d'erreur standard.</translation> </message> <message> <source>Submit message &check script:</source> - <translation>Script de vérifi&cation du message&nbsp;:</translation> + <translation>Script de vérifi&cation du message :</translation> </message> <message> <source>A file listing user names and email addresses in a 4-column mailmap format: name <email> alias <email></source> - <translation>Un fichier listant les noms d'utilisateur et leur adresse email dans le format 4 colonnes de mailmap&nbsp;: + <translation>Un fichier listant les noms d'utilisateur et leur adresse email dans le format 4 colonnes de mailmap : nom <email> alias <email></translation> </message> <message> <source>User/&alias configuration file:</source> - <translation>Fichier de configuration des &alias utilisateur&nbsp;:</translation> + <translation>Fichier de configuration des &alias utilisateur :</translation> </message> <message> <source>A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor.</source> @@ -57480,11 +57480,11 @@ nom <email> alias <email></translation> </message> <message> <source>User &fields configuration file:</source> - <translation>&Fichier de configuration des champs utilisateurs&nbsp;:</translation> + <translation>&Fichier de configuration des champs utilisateurs :</translation> </message> <message> <source>&Patch command:</source> - <translation>Commande &Patch&nbsp;:</translation> + <translation>Commande &Patch :</translation> </message> <message> <source>Specifies a command that is executed to graphically prompt for a password, @@ -57494,7 +57494,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>&SSH prompt command:</source> - <translation>Invite de commande &SSH&nbsp;: </translation> + <translation>Invite de commande &SSH : </translation> </message> <message> <source>Specifies a command that is executed to graphically prompt for a password, @@ -57607,12 +57607,12 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>The 2D Painting example shows how QPainter and QGLWidget. The 2D Painting example shows how QPainter and QGLWidget work together.</source> - <translatorcomment>Erreur de copier-coller dans la source&nbsp;? Arf, la boulette, vais voir si on peut corriger ça...</translatorcomment> + <translatorcomment>Erreur de copier-coller dans la source ? Arf, la boulette, vais voir si on peut corriger ça...</translatorcomment> <translation type="obsolete">L'exemple 2D Painting montre comment utiliser QPainter et QGLWidget ensemble.</translation> </message> <message> <source>Tags:</source> - <translation>Tags&nbsp;:</translation> + <translation>Tags :</translation> </message> </context> <context> @@ -57692,7 +57692,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>duplicate property binding</source> - <translatorcomment>contexte&nbsp;? pierre: un warning a priori...</translatorcomment> + <translatorcomment>contexte ? pierre: un warning a priori...</translatorcomment> <translation type="obsolete">liaison de propriété dupliquée</translation> </message> <message> @@ -57800,8 +57800,8 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <translation type="obsolete">parenthèses non nécessaires</translation> </message> <message> - <source>== and&nbsp;!= may perform type coercion, use === or&nbsp;!== to avoid</source> - <translation type="obsolete">== et&nbsp;!= peuvent provoquer une coercition de type, utilisez === ou&nbsp;!== pour l'éviter</translation> + <source>== and != may perform type coercion, use === or !== to avoid</source> + <translation type="obsolete">== et != peuvent provoquer une coercition de type, utilisez === ou !== pour l'éviter</translation> </message> <message> <source>expression statements should be assignments, calls or delete expressions only</source> @@ -57836,8 +57836,8 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <translation type="obsolete">type de propriété invalide '%1'</translation> </message> <message> - <source>== and&nbsp;!= perform type coercion, use === or&nbsp;!== to avoid</source> - <translation type="obsolete">== et&nbsp;!= effectuent une coercition de type, utilisez === ou&nbsp;!== pour l'éviter</translation> + <source>== and != perform type coercion, use === or !== to avoid</source> + <translation type="obsolete">== et != effectuent une coercition de type, utilisez === ou !== pour l'éviter</translation> </message> <message> <source>calls of functions that start with an uppercase letter should use 'new'</source> @@ -57937,11 +57937,11 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Do you really want to delete the configuration <b>%1</b>?</source> - <translation>Êtes-vous sûr de vouloir supprimer la configuration <b>%1</b>&nbsp;?</translation> + <translation>Êtes-vous sûr de vouloir supprimer la configuration <b>%1</b> ?</translation> </message> <message> <source>New name for configuration <b>%1</b>:</source> - <translation>Nouveau nom pour la configuration <b>%1</b>&nbsp;:</translation> + <translation>Nouveau nom pour la configuration <b>%1</b> :</translation> </message> <message> <source>Rename...</source> @@ -57960,11 +57960,11 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Error getting 'stat' info about '%1': %2</source> - <translation type="obsolete">Erreur lors de la récupération de l'information 'stat' pour '%1'&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors de la récupération de l'information 'stat' pour '%1' : %2</translation> </message> <message> <source>Error listing contents of directory '%1': %2</source> - <translation type="obsolete">Erreur lors du listage du contenu du répertoire '%1'&nbsp;: %2</translation> + <translation type="obsolete">Erreur lors du listage du contenu du répertoire '%1' : %2</translation> </message> </context> <context> @@ -57982,7 +57982,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <name>ZeroConf::Internal::ZConfLib</name> <message> <source>AvahiZConfLib could not load the native library '%1': %2</source> - <translation>AvahiZConfLib n'a pas pu charger la bibliothèque native '%1'&nbsp;: %2</translation> + <translation>AvahiZConfLib n'a pas pu charger la bibliothèque native '%1' : %2</translation> </message> <message> <source>%1 cannot create a client. The daemon is probably not running.</source> @@ -58026,11 +58026,11 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Error: unexpected state %1 in cAvahiClientReply, ignoring it</source> - <translation type="obsolete">Erreur&nbsp;: état inattendu %1 dans cAvahiClientReply, état ignoré</translation> + <translation type="obsolete">Erreur : état inattendu %1 dans cAvahiClientReply, état ignoré</translation> </message> <message> <source>Error: unexpected state %1 in cAvahiBrowseReply, ignoring it</source> - <translation type="obsolete">Erreur&nbsp;: état inattendu %1 dans cAvahiBrowseReply, état ignoré</translation> + <translation type="obsolete">Erreur : état inattendu %1 dans cAvahiBrowseReply, état ignoré</translation> </message> <message> <source>%1 failed starting embedded daemon at %2</source> @@ -58046,12 +58046,12 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>%1: log of previous daemon run is: '%2'.</source> - <translation>%1&nbsp;: le journal de l'exécution précédente du démon est&nbsp;: "%2".</translation> + <translation>%1 : le journal de l'exécution précédente du démon est : "%2".</translation> </message> <message> <source>%1: log of previous daemon run is: '%2'. </source> - <translation>%1&nbsp;: le journal de l'exécution précédente du démon est&nbsp;: "%2".</translation> + <translation>%1 : le journal de l'exécution précédente du démon est : "%2".</translation> </message> <message> <source>%1 failed starting embedded daemon at %2.</source> @@ -58097,8 +58097,8 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <translation type="obsolete">MainConnection utilisant la bibliothèque %1 a échoué, l'appel à getProperty retourne l'erreur %2</translation> </message> <message> - <source>MainConnection::handleEvents called with m_status&nbsp;!= Starting, aborting</source> - <translation type="obsolete">MainConnection::handleEvents appelé avec m_status&nbsp;!= Starting, abandon</translation> + <source>MainConnection::handleEvents called with m_status != Starting, aborting</source> + <translation type="obsolete">MainConnection::handleEvents appelé avec m_status != Starting, abandon</translation> </message> <message> <source>MainConnection::handleEvents unexpected return status of handleEvent</source> @@ -58118,7 +58118,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>*WARNING* detected an obsolete version of Apple Bonjour, either disable/uninstall it or upgrade it, otherwise zeroconf will fail</source> - <translation type="obsolete">*AVERTISSEMENT*&nbsp;: une version obsolète de Apple Bonjour a été détectée, désactivez/désinstallez-la ou mettez-la à jour, sinon zeroconf échouera</translation> + <translation type="obsolete">*AVERTISSEMENT* : une version obsolète de Apple Bonjour a été détectée, désactivez/désinstallez-la ou mettez-la à jour, sinon zeroconf échouera</translation> </message> <message> <source>Zeroconf could not load a valid library, failing.</source> @@ -58193,7 +58193,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Warning: Detected an obsolete version of Apple Bonjour. Disable, uninstall, or upgrade it, or zeroconf will fail.</source> - <translation>Avertissement&nbsp;: version de Apple Bonjour obsolète détectée. Désactivez, désinstallez ou mettez la à jour sinon zeroconf échouera.</translation> + <translation>Avertissement : version de Apple Bonjour obsolète détectée. Désactivez, désinstallez ou mettez la à jour sinon zeroconf échouera.</translation> </message> </context> <context> @@ -58233,7 +58233,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <name>AutotoolsProjectManager::Internal::AutogenStepConfigWidget</name> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Autogen</source> @@ -58264,7 +58264,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <name>AutotoolsProjectManager::Internal::AutoreconfStepConfigWidget</name> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Autoreconf</source> @@ -58289,14 +58289,14 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>New configuration name:</source> - <translation>Nom de la nouvelle configuration&nbsp;:</translation> + <translation>Nom de la nouvelle configuration :</translation> </message> </context> <context> <name>AutotoolsProjectManager::Internal::AutotoolsBuildSettingsWidget</name> <message> <source>Build directory:</source> - <translation>Répertoire de compilation&nbsp;:</translation> + <translation>Répertoire de compilation :</translation> </message> <message> <source>Autotools Manager</source> @@ -58304,7 +58304,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Tool chain:</source> - <translation type="obsolete">Chaîne de compilation&nbsp;:</translation> + <translation type="obsolete">Chaîne de compilation :</translation> </message> <message> <source><Invalid tool chain></source> @@ -58315,15 +58315,15 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <name>AutotoolsProjectManager::Internal::AutotoolsManager</name> <message> <source>Failed opening project '%1': Project file does not exist</source> - <translation type="obsolete">Échec de l'ouverture du projet "%1'&nbsp;: le fichier du projet n"existe pas</translation> + <translation type="obsolete">Échec de l'ouverture du projet "%1' : le fichier du projet n"existe pas</translation> </message> <message> <source>Failed opening project '%1': Project already open</source> - <translation type="obsolete">Échec de l'ouverture du projet "%1"&nbsp;: projet déjà ouvert</translation> + <translation type="obsolete">Échec de l'ouverture du projet "%1" : projet déjà ouvert</translation> </message> <message> <source>Failed opening project '%1': Project is not a file</source> - <translation>Échec de l'ouverture du projet "%1"&nbsp;: le projet n'est pas un fichier</translation> + <translation>Échec de l'ouverture du projet "%1" : le projet n'est pas un fichier</translation> </message> </context> <context> @@ -58341,7 +58341,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Build directory:</source> - <translation>Répertoire de compilation&nbsp;:</translation> + <translation>Répertoire de compilation :</translation> </message> <message> <source>Build Location</source> @@ -58372,7 +58372,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Configuration unchanged, skipping configure step.</source> - <translatorcomment>ignorée&nbsp;?</translatorcomment> + <translatorcomment>ignorée ?</translatorcomment> <translation>Configuration inchangée, étape de configuration sautée.</translation> </message> </context> @@ -58380,7 +58380,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <name>AutotoolsProjectManager::Internal::ConfigureStepConfigWidget</name> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Configure</source> @@ -58427,7 +58427,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <name>AutotoolsProjectManager::Internal::MakeStepConfigWidget</name> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Make</source> @@ -58447,7 +58447,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Cannot open %1: %2</source> - <translation>Imposible d'ouvrir %1&nbsp;: %2</translation> + <translation>Imposible d'ouvrir %1 : %2</translation> </message> <message> <source>File Error</source> @@ -58474,15 +58474,15 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Error while saving file: %1</source> - <translation>Erreur lors de l'enregistrement du fichier&nbsp;: %1</translation> + <translation>Erreur lors de l'enregistrement du fichier : %1</translation> </message> <message> <source>Overwrite?</source> - <translation>Écraser&nbsp;?</translation> + <translation>Écraser ?</translation> </message> <message> <source>An item named '%1' already exists at this location. Do you want to overwrite it?</source> - <translation>Un élément nommé "%1' existe déjà . Voulez-vous l"écraser&nbsp;?</translation> + <translation>Un élément nommé "%1' existe déjà . Voulez-vous l"écraser ?</translation> </message> <message> <source>Save File As</source> @@ -58544,7 +58544,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Extract Function Refactoring</source> - <translatorcomment>contexte&nbsp;? [Pierre] là je cale...</translatorcomment> + <translatorcomment>contexte ? [Pierre] là je cale...</translatorcomment> <translation>Refactorisation de la fonction extraite</translation> </message> <message> @@ -58606,11 +58606,11 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>Debug port:</source> - <translation>Port du débogage&nbsp;:</translation> + <translation>Port du débogage :</translation> </message> <message> <source><a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">What are the prerequisites?</a></source> - <translation><a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">Quels sont les prérequis&nbsp;?</a></translation> + <translation><a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">Quels sont les prérequis ?</a></translation> </message> <message> <source><a href="qthelp://com.nokia.qtcreator/doc/creator-debugging-qml.html">What are the prerequisites?</a></source> @@ -58709,7 +58709,7 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e </message> <message> <source>staged + </source> - <translatorcomment>contexte&nbsp;? pierre: concept de la staging area (ou index), pas évident à traduire...</translatorcomment> + <translatorcomment>contexte ? pierre: concept de la staging area (ou index), pas évident à traduire...</translatorcomment> <translation>ajouté à l'index + </translation> </message> <message> @@ -58774,11 +58774,11 @@ si un dépôt requiert une authentification SSH (voir la documentation sur SSH e <source>Previous command is still running ('%1'). Do you want to kill it?</source> <translation>La commande précédante est toujours active ('%1'). -Voulez-vous la tuer&nbsp;?</translation> +Voulez-vous la tuer ?</translation> </message> <message> <source>Kill Previous Process?</source> - <translation>Tuer les processus précédents&nbsp;?</translation> + <translation>Tuer les processus précédents ?</translation> </message> <message> <source>Command '%1' finished.</source> @@ -58790,7 +58790,7 @@ Voulez-vous la tuer&nbsp;?</translation> </message> <message> <source>Could not start process: %1</source> - <translation>Impossible de démarrer le processus&nbsp;: %1</translation> + <translation>Impossible de démarrer le processus : %1</translation> </message> <message> <source>finished</source> @@ -58852,15 +58852,15 @@ Voulez-vous la tuer&nbsp;?</translation> <name>ProjectExplorer::Internal::WinCEToolChainConfigWidget</name> <message> <source>SDK:</source> - <translation>SDK&nbsp;:</translation> + <translation>SDK :</translation> </message> <message> <source>WinCE Version:</source> - <translation>Version de WinCE&nbsp;:</translation> + <translation>Version de WinCE :</translation> </message> <message> <source>ABI:</source> - <translation>ABI&nbsp;:</translation> + <translation>ABI :</translation> </message> </context> <context> @@ -58878,13 +58878,13 @@ Voulez-vous la tuer&nbsp;?</translation> <name>QmlJSEditor::Internal::Operation</name> <message> <source>Wrap Component in Loader</source> - <translatorcomment>wrap en "enveloppez" = bof ; Component et Loader en majuscule = correspond à des noms de modules&nbsp;? (et ne pas traduire alors&nbsp;?)</translatorcomment> + <translatorcomment>wrap en "enveloppez" = bof ; Component et Loader en majuscule = correspond à des noms de modules ? (et ne pas traduire alors ?)</translatorcomment> <translation>Envelopper le composant dans un chargeur</translation> </message> <message> <source>// TODO: Move position bindings from the component to the Loader. // Check all uses of 'parent' inside the root element of the component.</source> - <translation>// À faire&nbsp;: Déplacer les liaisons de position du composant dans le Loader. + <translation>// À faire : Déplacer les liaisons de position du composant dans le Loader. // Vérifier toutes les utilisations de "parent" à l'intérieur de l'élément racine du composant.</translation> </message> <message> @@ -58895,7 +58895,7 @@ Voulez-vous la tuer&nbsp;?</translation> <source>// TODO: Move position bindings from the component to the Loader. // Check all uses of 'parent' inside the root element of the component. </source> - <translation>// À faire&nbsp;: Déplacer les liaisons de position du composant dans le Loader. + <translation>// À faire : Déplacer les liaisons de position du composant dans le Loader. // Vérifier toutes les utilisations de 'parent' à l'intérieur de l'élément racine du composant.</translation> </message> <message> @@ -58961,12 +58961,12 @@ Voulez-vous la tuer&nbsp;?</translation> </message> <message> <source>Self Time in Percent</source> - <translatorcomment>Contexte de "self"&nbsp;?</translatorcomment> + <translatorcomment>Contexte de "self" ?</translatorcomment> <translation>Temps interne en pourcentage</translation> </message> <message> <source>Self Time</source> - <translatorcomment>Contexte de "self"&nbsp;?</translatorcomment> + <translatorcomment>Contexte de "self" ?</translatorcomment> <translation>Temps interne</translation> </message> <message> @@ -59123,15 +59123,15 @@ des références à des éléments dans d'autres fichiers, des boucles, etc </message> <message> <source><p>The project <b>%1</b> is not yet configured.</p><p>Qt Creator uses the Qt version: <b>%2</b> and the tool chain: <b>%3</b> to parse the project. You can edit these in the <b><a href="edit">options.</a></b></p></source> - <translation type="obsolete"><p>Le projet <b>%1</b> n'est pas encore configuré.</p><p>Qt Creator utilise la version de Qt&nbsp;: <b>%2</b> et la chaîne de compilation&nbsp;: <b>%3</b> pour analyser le projet. Vous pouvez modifier ces paramètres dans la <b><a href="edit">configuration</a></b></p></translation> + <translation type="obsolete"><p>Le projet <b>%1</b> n'est pas encore configuré.</p><p>Qt Creator utilise la version de Qt : <b>%2</b> et la chaîne de compilation : <b>%3</b> pour analyser le projet. Vous pouvez modifier ces paramètres dans la <b><a href="edit">configuration</a></b></p></translation> </message> <message> <source><p>The project <b>%1</b> is not yet configured.</p><p>Qt Creator uses the Qt version: <b>%2</b> and <b>no tool chain</b> to parse the project. You can edit these in the <b><a href="edit">settings</a></b></p></source> - <translation type="obsolete"><p>Le projet <b>%1</b> n'est pas encore configuré.</p><p>Qt Creator utilise la version de Qt&nbsp;: <b>%2</b> et <b>n'a aucune chaîne de compilation</b> pour analyser le projet. Vous pouvez modifier ces paramètres dans la <b><a href="edit">configuration</a></b></p></translation> + <translation type="obsolete"><p>Le projet <b>%1</b> n'est pas encore configuré.</p><p>Qt Creator utilise la version de Qt : <b>%2</b> et <b>n'a aucune chaîne de compilation</b> pour analyser le projet. Vous pouvez modifier ces paramètres dans la <b><a href="edit">configuration</a></b></p></translation> </message> <message> <source><p>The project <b>%1</b> is not yet configured.</p><p>Qt Creator uses <b>no Qt version</b> and the tool chain: <b>%2</b> to parse the project. You can edit these in the <b><a href="edit">settings</a></b></p></source> - <translation type="obsolete"><p>Le projet <b>%1</b> n'est pas encore configuré.</p><p>Qt Creator n'utilise <b>aucune version de Qt</b> et la chaîne de compilation&nbsp;: <b>%2</b> pour analyser le projet. Vous pouvez modifier ces paramètres dans la <b><a href="edit">configuration</a></b></p></translation> + <translation type="obsolete"><p>Le projet <b>%1</b> n'est pas encore configuré.</p><p>Qt Creator n'utilise <b>aucune version de Qt</b> et la chaîne de compilation : <b>%2</b> pour analyser le projet. Vous pouvez modifier ces paramètres dans la <b><a href="edit">configuration</a></b></p></translation> </message> <message> <source><p>The project <b>%1</b> is not yet configured.</p><p>Qt Creator uses <b>no Qt version</b> and <b>no tool chain</b> to parse the project. You can edit these in the <b><a href="edit">settings</a></b></p></source> @@ -59149,11 +59149,11 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Qt Version:</source> - <translation type="obsolete">Version de Qt&nbsp;:</translation> + <translation type="obsolete">Version de Qt :</translation> </message> <message> <source>Tool Chain:</source> - <translation type="obsolete">Chaîne de compilation&nbsp;:</translation> + <translation type="obsolete">Chaîne de compilation :</translation> </message> </context> <context> @@ -59168,15 +59168,15 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Copy Project to writable Location?</source> - <translation>Copier le projet à un emplacement accessible en écriture&nbsp;?</translation> + <translation>Copier le projet à un emplacement accessible en écriture ?</translation> </message> <message> <source><p>The project you are about to open is located in the write-protected location:</p><blockquote>%1</blockquote><p>Please select a writable location below and click "Copy Project and Open" to open a modifiable copy of the project or click "Keep Project and Open" to open the project in location.</p><p><b>Note:</b> You will not be able to alter or compile your project in the current location.</p></source> - <translation><p>Le projet que vous vous apprêtez à ouvrir se trouve dans un emplacement accessible en lecture seule&nbsp;:</p><blockquote>%1</blockquote><p>Veuillez sélectionner un emplacement accessible en écriture et cliquer sur "Copier le projet et l'ouvrir" pour ouvrir une copie modifiable. Cliquez sur "Conserver le projet et l'ouvrir" pour ouvrir le projet à l'emplacement courant.</p><p><b>Note&nbsp;:</b> vous ne pourrez pas modifier ou compiler votre projet à l'emplacement courant.</p></translation> + <translation><p>Le projet que vous vous apprêtez à ouvrir se trouve dans un emplacement accessible en lecture seule :</p><blockquote>%1</blockquote><p>Veuillez sélectionner un emplacement accessible en écriture et cliquer sur "Copier le projet et l'ouvrir" pour ouvrir une copie modifiable. Cliquez sur "Conserver le projet et l'ouvrir" pour ouvrir le projet à l'emplacement courant.</p><p><b>Note :</b> vous ne pourrez pas modifier ou compiler votre projet à l'emplacement courant.</p></translation> </message> <message> <source>&Location:</source> - <translation>&Emplacement&nbsp;:</translation> + <translation>&Emplacement :</translation> </message> <message> <source>&Copy Project and Open</source> @@ -59283,11 +59283,11 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Open documents:</source> - <translation>Documents ouverts&nbsp;:</translation> + <translation>Documents ouverts :</translation> </message> <message> <source>Open Documents:</source> - <translation type="obsolete">Documents ouverts&nbsp;:</translation> + <translation type="obsolete">Documents ouverts :</translation> </message> <message> <source>Open Documents @@ -59339,7 +59339,7 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un <name>Todo::Internal::OptionsPage</name> <message> <source>To-Do</source> - <translatorcomment>Quoi que l'on pourrait laisser TODO&nbsp;? [Pierre] yep, je valide TODO</translatorcomment> + <translatorcomment>Quoi que l'on pourrait laisser TODO ? [Pierre] yep, je valide TODO</translatorcomment> <translation>TODO</translation> </message> </context> @@ -59393,7 +59393,7 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Key algorithm:</source> - <translation>Algorithme de la clé&nbsp;:</translation> + <translation>Algorithme de la clé :</translation> </message> <message> <source>&RSA</source> @@ -59405,11 +59405,11 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Key &size:</source> - <translation>&Taille de la clé&nbsp;: </translation> + <translation>&Taille de la clé : </translation> </message> <message> <source>Private key file:</source> - <translation>Fichier de clé privée&nbsp;:</translation> + <translation>Fichier de clé privée :</translation> </message> <message> <source>Browse...</source> @@ -59417,7 +59417,7 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Public key file:</source> - <translation>Fichier de clé publique&nbsp;:</translation> + <translation>Fichier de clé publique :</translation> </message> <message> <source>&Generate And Save Key Pair</source> @@ -59449,7 +59449,7 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>The private key file could not be saved: %1</source> - <translation>La clé privée n'a pas pu être sauvegardée&nbsp;: %1</translation> + <translation>La clé privée n'a pas pu être sauvegardée : %1</translation> </message> <message> <source>Cannot Save Public Key File</source> @@ -59457,7 +59457,7 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>The public key file could not be saved: %1</source> - <translation>Le fichier de la clé publique n'a pas pu être sauvegardé&nbsp;: %1</translation> + <translation>Le fichier de la clé publique n'a pas pu être sauvegardé : %1</translation> </message> <message> <source>File Exists</source> @@ -59465,7 +59465,7 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>There already is a file of that name. Do you want to overwrite it?</source> - <translation>Il y a déjà un fichier de ce nom. Souhaitez-vous écrire par-dessus&nbsp;?</translation> + <translation>Il y a déjà un fichier de ce nom. Souhaitez-vous écrire par-dessus ?</translation> </message> </context> <context> @@ -59476,15 +59476,15 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>Kit:</source> - <translation>Kit&nbsp;:</translation> + <translation>Kit :</translation> </message> <message> <source>SD card size:</source> - <translation>Taille de la carte SD&nbsp;:</translation> + <translation>Taille de la carte SD :</translation> </message> <message> <source> MiB</source> @@ -59503,11 +59503,11 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Password:</source> - <translation>Mot de passe&nbsp;:</translation> + <translation>Mot de passe :</translation> </message> <message> <source>Retype password:</source> - <translation>Retaper le mot de passe&nbsp;:</translation> + <translation>Retaper le mot de passe :</translation> </message> <message> <source>Show password</source> @@ -59523,7 +59523,7 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Alias name:</source> - <translation>Nom d'alias&nbsp;:</translation> + <translation>Nom d'alias :</translation> </message> <message> <source>Aaaaaaaa; </source> @@ -59532,11 +59532,11 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>Keysize:</source> - <translation>Taille de la clé&nbsp;:</translation> + <translation>Taille de la clé :</translation> </message> <message> <source>Validity (days):</source> - <translation>Validité (en jours)&nbsp;:</translation> + <translation>Validité (en jours) :</translation> </message> <message> <source>Certificate Distinguished Names</source> @@ -59544,27 +59544,27 @@ Les modèles de code C++ et QML ont besoin d'une version de Qt et d'un </message> <message> <source>First and last name:</source> - <translation>Prénom et nom&nbsp;:</translation> + <translation>Prénom et nom :</translation> </message> <message> <source>Organizational unit (e.g. Necessitas):</source> - <translation>Unité d'organisation (par exemple, Necessitas)&nbsp;:</translation> + <translation>Unité d'organisation (par exemple, Necessitas) :</translation> </message> <message> <source>Organization (e.g. KDE):</source> - <translation>Organisation (comme KDE)&nbsp;:</translation> + <translation>Organisation (comme KDE) :</translation> </message> <message> <source>City or locality:</source> - <translation>Ville ou localité&nbsp;:</translation> + <translation>Ville ou localité :</translation> </message> <message> <source>State or province:</source> - <translation>État ou province&nbsp;:</translation> + <translation>État ou province :</translation> </message> <message> <source>Two-letter country code for this unit (e.g. RO):</source> - <translation>Code de pays sur deux lettres pour cette unité (comme RO)&nbsp;:</translation> + <translation>Code de pays sur deux lettres pour cette unité (comme RO) :</translation> </message> <message> <source>>AA; </source> @@ -59677,29 +59677,29 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source><b>Android target SDK:</b></source> - <translation><b>SDK Android cible&nbsp;:</b></translation> + <translation><b>SDK Android cible :</b></translation> </message> <message> <source><b>Package name:</b></source> - <translation type="obsolete"><b>Nom du paquet&nbsp;:</b></translation> + <translation type="obsolete"><b>Nom du paquet :</b></translation> </message> <message> <source><p align="justify">Please choose a valid package name for your application (e.g. "org.example.myapplication").</p> <p align="justify">Packages are usually defined using a hierarchical naming pattern, with levels in the hierarchy separated by periods (.) (pronounced "dot").</p> <p align="justify">In general, a package name begins with the top level domain name of the organization and then the organization's domain and then any subdomains listed in reverse order. The organization can then choose a specific name for their package. Package names should be all lowercase characters whenever possible.</p> <p align="justify">Complete conventions for disambiguating package names and rules for naming packages when the Internet domain name cannot be directly used as a package name are described in section 7.7 of the Java Language Specification.</p></source> - <translation type="obsolete"><p align="justify">Veuillez choisir un nom de paquet valide pour votre application (par exemple&nbsp;: "org.exemple.monapplication").</p> + <translation type="obsolete"><p align="justify">Veuillez choisir un nom de paquet valide pour votre application (par exemple : "org.exemple.monapplication").</p> <p align="justify">Les paquets sont généralement définis en suivant un schéma de nommage hiérarchique, où les niveaux de la hiérarchie sont séparés par des points . (dits "dot").</p> <p align="justify">En général, un nom de paquet commence avec le nom du domaine de haut niveau de l'organisation (TLD) et le nom du domaine de l'organisation, puis les sous-domaines listés dans le sens inverse. L'organisation peut choisir un nom spécifique pour son paquet. Les noms de paquets ne doivent utiliser que des minuscules, autant que possible.</p> <p align="justify">Les conventions complètes pour la désambiguïsation des noms de paquets et des règles de nommages des paquets lorsque le nom de domaine Internet ne peut être utilisé directement comme nom de paquet sont décrits dans la section 7.7 de la spécification du langage Java.</p></translation> </message> <message> <source><b>Version code:</b></source> - <translation type="obsolete"><b>Version du code&nbsp;:</b></translation> + <translation type="obsolete"><b>Version du code :</b></translation> </message> <message> <source><b>Version name:</b></source> - <translation type="obsolete"><b>Nom de version&nbsp;:</b></translation> + <translation type="obsolete"><b>Nom de version :</b></translation> </message> <message> <source>1.0.0</source> @@ -59711,15 +59711,15 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source><b>Application name:</b></source> - <translation type="obsolete"><b>Nom de l'application&nbsp;:</b></translation> + <translation type="obsolete"><b>Nom de l'application :</b></translation> </message> <message> <source><b>Run:</b></source> - <translation type="obsolete"><b>Exécution&nbsp;:</b></translation> + <translation type="obsolete"><b>Exécution :</b></translation> </message> <message> <source><b>Application icon:</b></source> - <translation type="obsolete"><b>Icône de l'application&nbsp;:</b></translation> + <translation type="obsolete"><b>Icône de l'application :</b></translation> </message> <message> <source>Select low dpi icon</source> @@ -59755,7 +59755,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Name:</source> - <translation type="obsolete">Nom&nbsp;:</translation> + <translation type="obsolete">Nom :</translation> </message> <message> <source>Libraries</source> @@ -59777,7 +59777,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl <source><center>Prebundled libraries</center> <p align="justify">Please be aware that the order is very important: If library <i>A</i> depends on library <i>B</i>, <i>B</i> <b>must</b> go before <i>A</i>.</p></source> <translation><center>Bibliothèques empaquetées</center> -<p align="justify">Soyez conscient que l'ordre est très important&nbsp;: si une bibliothèque <i>A</i> dépend de la bibliothèque <i>B</i>, <i>B</i> <b>doit</> être placée avant <i>A</i>.</p></translation> +<p align="justify">Soyez conscient que l'ordre est très important : si une bibliothèque <i>A</i> dépend de la bibliothèque <i>B</i>, <i>B</i> <b>doit</> être placée avant <i>A</i>.</p></translation> </message> <message> <source>Up</source> @@ -59793,7 +59793,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Keystore:</source> - <translation>Trousseau de clés&nbsp;:</translation> + <translation>Trousseau de clés :</translation> </message> <message> <source>Create</source> @@ -59809,7 +59809,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Certificate alias:</source> - <translation>Alias de certificat&nbsp;:</translation> + <translation>Alias de certificat :</translation> </message> <message> <source>Signing a debug package</source> @@ -59824,7 +59824,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Android SDK location:</source> - <translation>Emplacement du SDK Android&nbsp;:</translation> + <translation>Emplacement du SDK Android :</translation> </message> <message> <source>Browse</source> @@ -59832,35 +59832,35 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Android NDK location:</source> - <translation>Emplacement du NDK Android&nbsp;:</translation> + <translation>Emplacement du NDK Android :</translation> </message> <message> <source>Android NDK tool chain version:</source> - <translation type="obsolete">Version de la chaîne de compilation du NDK Android&nbsp;:</translation> + <translation type="obsolete">Version de la chaîne de compilation du NDK Android :</translation> </message> <message> <source>Ant location:</source> - <translation>Emplacement d'Ant&nbsp;:</translation> + <translation>Emplacement d'Ant :</translation> </message> <message> <source>ARM GDB location:</source> - <translation type="obsolete">Emplacement de GDB pour ARM&nbsp;:</translation> + <translation type="obsolete">Emplacement de GDB pour ARM :</translation> </message> <message> <source>ARM GDB server location:</source> - <translation type="obsolete">Emplacement du serveur GDB pour ARM&nbsp;:</translation> + <translation type="obsolete">Emplacement du serveur GDB pour ARM :</translation> </message> <message> <source>x86 GDB location:</source> - <translation type="obsolete">Emplacement de GDB pour x86&nbsp;:</translation> + <translation type="obsolete">Emplacement de GDB pour x86 :</translation> </message> <message> <source>x86 GDB server location:</source> - <translation type="obsolete">Emplacement du serveur GDB pour x86&nbsp;:</translation> + <translation type="obsolete">Emplacement du serveur GDB pour x86 :</translation> </message> <message> <source>OpenJDK location:</source> - <translation type="obsolete">Emplacement d'OpenJDK&nbsp;:</translation> + <translation type="obsolete">Emplacement d'OpenJDK :</translation> </message> <message> <source>Start</source> @@ -59872,7 +59872,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>System/data partition size:</source> - <translation>Taille de la partition système/données&nbsp;: </translation> + <translation>Taille de la partition système/données : </translation> </message> <message> <source> Mb</source> @@ -59896,7 +59896,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>JDK location:</source> - <translation>Emplacement du JDK&nbsp;:</translation> + <translation>Emplacement du JDK :</translation> </message> </context> <context> @@ -59907,7 +59907,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>&Checkout comment:</source> - <translation>Commentaire d'&importation&nbsp;:</translation> + <translation>Commentaire d'&importation :</translation> </message> <message> <source>&Reserved</source> @@ -59936,7 +59936,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>&Command:</source> - <translation>&Commande&nbsp;: </translation> + <translation>&Commande : </translation> </message> <message> <source>Diff</source> @@ -59952,7 +59952,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Arg&uments:</source> - <translation>Arg&uments&nbsp;:</translation> + <translation>Arg&uments :</translation> </message> <message> <source>Miscellaneous</source> @@ -59960,13 +59960,13 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>&History count:</source> - <translatorcomment>Pluriel&nbsp;?</translatorcomment> - <translation>Compteur d'&historique&nbsp;:</translation> + <translatorcomment>Pluriel ?</translatorcomment> + <translation>Compteur d'&historique :</translation> </message> <message> <source>&Timeout:</source> - <translatorcomment>Pluriel&nbsp;?</translatorcomment> - <translation>&Expiration&nbsp;:</translation> + <translatorcomment>Pluriel ?</translatorcomment> + <translation>&Expiration :</translation> </message> <message> <source>s</source> @@ -59978,7 +59978,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Check this if you have a trigger that renames the activity automatically. You will not be prompted for activity name</source> - <translatorcomment>ceci > ce paramètre&nbsp;?</translatorcomment> + <translatorcomment>ceci > ce paramètre ?</translatorcomment> <translation>Vérifier ceci si vous avez un déclencheur qui renomme l'activité automatiquement. Vous ne verrez pas de boîte de dialogue pour le nom de l'activité</translation> </message> <message> @@ -59996,7 +59996,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl <message> <source>&Index only VOBs:</source> <extracomment>VOB: Versioned Object Base</extracomment> - <translation>&Indexer seuleument les VOB&nbsp;:</translation> + <translation>&Indexer seuleument les VOB :</translation> </message> <message> <source>VOBs list, separated by comma. Indexer will only traverse the specified VOBs. If left blank, all active VOBs will be indexed</source> @@ -60030,7 +60030,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>There are multiple versions of '%1' which can be considered for checkout. Please select version to checkout:</source> - <translation>Plusieurs versions de "%1" peuvent être considérés pour cette importation. Veuillez sélectionner la version à importer&nbsp;:</translation> + <translation>Plusieurs versions de "%1" peuvent être considérés pour cette importation. Veuillez sélectionner la version à importer :</translation> </message> <message> <source>&Loaded Version</source> @@ -60038,12 +60038,12 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Created by:</source> - <translation>Crée par&nbsp;:</translation> + <translation>Crée par :</translation> </message> <message> <source>Created on:</source> <extracomment>Date</extracomment> - <translation>Crée le&nbsp;:</translation> + <translation>Crée le :</translation> </message> <message> <source>Version after &update</source> @@ -60051,7 +60051,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source><html><head/><body><p><b>NOTE: You will not be able to check in this file without merging the changes (not supported by the plugin)</b></p></body></html></source> - <translation><html><head/><body><p><b>NOTE&nbsp;: vous ne pouvez pas exporter ce fichier sans fusionner les changements (non supporté par le plug-in)</b></p></body></html></translation> + <translation><html><head/><body><p><b>NOTE : vous ne pouvez pas exporter ce fichier sans fusionner les changements (non supporté par le plug-in)</b></p></body></html></translation> </message> </context> <context> @@ -60062,7 +60062,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>File to remove:</source> - <translation>Fichier à supprimer&nbsp;:</translation> + <translation>Fichier à supprimer :</translation> </message> <message> <source>&Delete file permanently</source> @@ -60081,7 +60081,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Available device types:</source> - <translation>Types de périphérique disponibles&nbsp;: </translation> + <translation>Types de périphérique disponibles : </translation> </message> <message> <source>Start Wizard</source> @@ -60096,7 +60096,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>&Device:</source> - <translation>&Périphérique&nbsp;:</translation> + <translation>&Périphérique :</translation> </message> <message> <source>General</source> @@ -60104,19 +60104,19 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>&Name:</source> - <translation>&Nom&nbsp;:</translation> + <translation>&Nom :</translation> </message> <message> <source>Type:</source> - <translation>Type&nbsp;:</translation> + <translation>Type :</translation> </message> <message> <source>Auto-detected:</source> - <translation>Autodétecté&nbsp;:</translation> + <translation>Autodétecté :</translation> </message> <message> <source>Current state:</source> - <translation>État actuel&nbsp;:</translation> + <translation>État actuel :</translation> </message> <message> <source>Type Specific</source> @@ -60163,7 +60163,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Icon:</source> - <translation type="obsolete">Icône&nbsp;:</translation> + <translation type="obsolete">Icône :</translation> </message> <message> <source>Splash screens</source> @@ -60171,11 +60171,11 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Landscape:</source> - <translation type="obsolete">Paysage&nbsp;:</translation> + <translation type="obsolete">Paysage :</translation> </message> <message> <source>Portrait:</source> - <translation type="obsolete">Portrait&nbsp;:</translation> + <translation type="obsolete">Portrait :</translation> </message> <message> <source>Images</source> @@ -60206,14 +60206,14 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl <name>Qnx::Internal::BlackBerryDeployConfigurationWidget</name> <message> <source>Packages to deploy:</source> - <translation>Paquets à déployer&nbsp;:</translation> + <translation>Paquets à déployer :</translation> </message> </context> <context> <name>Qnx::Internal::BlackBerryDeviceConfigurationWidget</name> <message> <source>&Device name:</source> - <translation>&Nom du périphérique&nbsp;:</translation> + <translation>&Nom du périphérique :</translation> </message> <message> <source>IP or host name of the device</source> @@ -60221,7 +60221,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Device &password:</source> - <translation>&Mot de passe du périphérique&nbsp;:</translation> + <translation>&Mot de passe du périphérique :</translation> </message> <message> <source>Show password</source> @@ -60229,15 +60229,15 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Debug token:</source> - <translation>Jeton de débogage&nbsp;:</translation> + <translation>Jeton de débogage :</translation> </message> <message> <source>Private key file:</source> - <translation>Fichier de clé privée&nbsp;:</translation> + <translation>Fichier de clé privée :</translation> </message> <message> <source>Connection log:</source> - <translation>Log de connexion&nbsp;:</translation> + <translation>Log de connexion :</translation> </message> <message> <source>Request</source> @@ -60249,7 +60249,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Failed to upload debug token: </source> - <translation>Échec de l'envoi du jeton de débogage&nbsp;:</translation> + <translation>Échec de l'envoi du jeton de débogage :</translation> </message> <message> <source>Qt Creator</source> @@ -60301,7 +60301,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Failed to upload debug token:</source> - <translation>Échec de l'envoi du jeton de débogage&nbsp;:</translation> + <translation>Échec de l'envoi du jeton de débogage :</translation> </message> <message> <source>Operation in Progress</source> @@ -60320,19 +60320,19 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>The name to identify this configuration:</source> - <translation>Le nom pour identifier cette configuration&nbsp;: </translation> + <translation>Le nom pour identifier cette configuration : </translation> </message> <message> <source>The device's host name or IP address:</source> - <translation>Le nom d'hôte du périphérique ou son adresse IP&nbsp;: </translation> + <translation>Le nom d'hôte du périphérique ou son adresse IP : </translation> </message> <message> <source>Device password:</source> - <translation>Mot de passe du périphérique&nbsp;:</translation> + <translation>Mot de passe du périphérique :</translation> </message> <message> <source>Device type:</source> - <translation>Type de périphérique&nbsp;:</translation> + <translation>Type de périphérique :</translation> </message> <message> <source>Physical device</source> @@ -60344,7 +60344,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Debug token:</source> - <translation>Jeton de débogage&nbsp;:</translation> + <translation>Jeton de débogage :</translation> </message> <message> <source>Connection Details</source> @@ -60360,7 +60360,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Device host name or IP address:</source> - <translation>Nom d'hôte du périphérique ou adresse IP&nbsp;:</translation> + <translation>Nom d'hôte du périphérique ou adresse IP :</translation> </message> <message> <source>Connection</source> @@ -60391,11 +60391,11 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Private key file:</source> - <translation>Fichier de clé privée&nbsp;:</translation> + <translation>Fichier de clé privée :</translation> </message> <message> <source>Public key file:</source> - <translation>Fichier de clé publique&nbsp;:</translation> + <translation>Fichier de clé publique :</translation> </message> <message> <source>Generate</source> @@ -60426,18 +60426,18 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl <name>Qnx::Internal::BlackBerryRunConfigurationWidget</name> <message> <source>Device:</source> - <translation>Appareil mobile&nbsp;:</translation> + <translation>Appareil mobile :</translation> </message> <message> <source>Package:</source> - <translation>Paquet&nbsp;: </translation> + <translation>Paquet : </translation> </message> </context> <context> <name>Qnx::Internal::QnxBaseQtConfigWidget</name> <message> <source>SDK:</source> - <translation>SDK&nbsp;:</translation> + <translation>SDK :</translation> </message> </context> <context> @@ -60448,11 +60448,11 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Remote path to check for free space:</source> - <translation>Chemin distant pour vérifier l'espace disponible&nbsp;:</translation> + <translation>Chemin distant pour vérifier l'espace disponible :</translation> </message> <message> <source>Required disk space:</source> - <translation>Espace disque nécessaire&nbsp;:</translation> + <translation>Espace disque nécessaire :</translation> </message> </context> <context> @@ -60471,7 +60471,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>errorLabel</source> - <translatorcomment>... bah, je ne sais pas >> vraiment à traduire&nbsp;? </translatorcomment> + <translatorcomment>... bah, je ne sais pas >> vraiment à traduire ? </translatorcomment> <translation>errorLabel</translation> </message> <message> @@ -60508,7 +60508,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Protocol version mismatch: Expected %1, got %2</source> - <translation>Conflit de versions de protocole&nbsp;: %1 attendue, %2 detectée</translation> + <translation>Conflit de versions de protocole : %1 attendue, %2 detectée</translation> </message> <message> <source>Unknown error.</source> @@ -60524,11 +60524,11 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Error creating directory '%1': %2</source> - <translation>Erreur lors de la création du répertoire "%1"&nbsp;: %2</translation> + <translation>Erreur lors de la création du répertoire "%1" : %2</translation> </message> <message> <source>Could not open local file '%1': %2</source> - <translation>Impossible d'ouvrir le fichier local "%1"&nbsp;: %2</translation> + <translation>Impossible d'ouvrir le fichier local "%1" : %2</translation> </message> <message> <source>Remote directory could not be opened for reading.</source> @@ -60568,7 +60568,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Cannot append to remote file: Server does not support the file size attribute.</source> - <translation>Impossible d'ajouter à la fin du fichier distant&nbsp;: le serveur ne supporte pas l'attribut taille du fichier.</translation> + <translation>Impossible d'ajouter à la fin du fichier distant : le serveur ne supporte pas l'attribut taille du fichier.</translation> </message> <message> <source>SFTP channel closed unexpectedly.</source> @@ -60576,11 +60576,11 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Server could not start session: %1</source> - <translation>Le serveur n'a pas pu démarrer la session&nbsp;: %1</translation> + <translation>Le serveur n'a pas pu démarrer la session : %1</translation> </message> <message> <source>Error reading local file: %1</source> - <translation>Erreur lors de la lecture du fichier local&nbsp;: %1</translation> + <translation>Erreur lors de la lecture du fichier local : %1</translation> </message> </context> <context> @@ -60595,11 +60595,11 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Error getting 'stat' info about '%1': %2</source> - <translation>Erreur lors de la récupération de l'information "stat" pour "%1"&nbsp;: %2</translation> + <translation>Erreur lors de la récupération de l'information "stat" pour "%1" : %2</translation> </message> <message> <source>Error listing contents of directory '%1': %2</source> - <translation>Erreur lors du listage du contenu du répertoire "%1"&nbsp;: %2</translation> + <translation>Erreur lors du listage du contenu du répertoire "%1" : %2</translation> </message> </context> <context> @@ -60613,11 +60613,11 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl <name>QSsh::Internal::SshConnectionPrivate</name> <message> <source>SSH Protocol error: %1</source> - <translation>Erreur dans le protocole SSH&nbsp;: %1</translation> + <translation>Erreur dans le protocole SSH : %1</translation> </message> <message> <source>Botan library exception: %1</source> - <translation>Exception dans la bibliothèque Botan&nbsp;: %1</translation> + <translation>Exception dans la bibliothèque Botan : %1</translation> </message> <message numerus="yes"> <source>Server identification string is %n characters long, but the maximum allowed length is 255.</source> @@ -60668,7 +60668,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Server closed connection: %1</source> - <translation>Le serveur a fermé la connexion&nbsp;: %1</translation> + <translation>Le serveur a fermé la connexion : %1</translation> </message> <message> <source>Connection closed unexpectedly.</source> @@ -60684,7 +60684,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Private key file error: %1</source> - <translation>Erreur du fichier de clé privée&nbsp;: %1</translation> + <translation>Erreur du fichier de clé privée : %1</translation> </message> </context> <context> @@ -60777,11 +60777,11 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl <name>Android::Internal::AndroidConfigurations</name> <message> <source>Could not run: %1</source> - <translation>Impossible de démarrer&nbsp;: %1</translation> + <translation>Impossible de démarrer : %1</translation> </message> <message> <source>No devices found in output of: %1</source> - <translation>Aucun périphérique n'a été trouvé dans la sortie de&nbsp;: %1</translation> + <translation>Aucun périphérique n'a été trouvé dans la sortie de : %1</translation> </message> <message> <source>Error Creating AVD</source> @@ -60883,11 +60883,11 @@ Veuillez installer un SDK supérieur à la version %1.</translation> </message> <message> <source>Please wait, searching for a suitable device for target:%1.</source> - <translation>Veuillez patienter, recherche d'un périphérique approprié pour la cible&nbsp;: %1.</translation> + <translation>Veuillez patienter, recherche d'un périphérique approprié pour la cible : %1.</translation> </message> <message> <source>Cannot deploy: no devices or emulators found for your package.</source> - <translation>Impossible de déployer&nbsp;: aucun périphérique ou émulateur trouvé pour votre paquet.</translation> + <translation>Impossible de déployer : aucun périphérique ou émulateur trouvé pour votre paquet.</translation> </message> <message> <source>No Android toolchain selected.</source> @@ -60903,28 +60903,28 @@ Veuillez installer un SDK supérieur à la version %1.</translation> </message> <message> <source>Package deploy: Running command '%1 %2'.</source> - <translation>Déployement de paquet&nbsp;: exécution de la commande "%1 %2".</translation> + <translation>Déployement de paquet : exécution de la commande "%1 %2".</translation> </message> <message> <source>Packaging error: Could not start command '%1 %2'. Reason: %3</source> <translatorcomment>?</translatorcomment> - <translation>Erreur de paquetage&nbsp;: impossible de lancer la commande "%1 %2". Raison&nbsp;: %3</translation> + <translation>Erreur de paquetage : impossible de lancer la commande "%1 %2". Raison : %3</translation> </message> <message> <source>Packaging Error: Command '%1 %2' failed.</source> - <translation>Erreur de paquetage&nbsp;: la commande "%1 %2" a échoué.</translation> + <translation>Erreur de paquetage : la commande "%1 %2" a échoué.</translation> </message> <message> <source>Reason: %1</source> - <translation>Raison&nbsp;: %1</translation> + <translation>Raison : %1</translation> </message> <message> <source> Reason: %1</source> - <translation>Raison&nbsp;: %1</translation> + <translation>Raison : %1</translation> </message> <message> <source>Exit code: %1</source> - <translation>Code de sortie&nbsp;: %1</translation> + <translation>Code de sortie : %1</translation> </message> <message> <source>Clean old Qt libraries</source> @@ -61033,7 +61033,7 @@ Veuillez installer au moins un SDK. </translation> </message> <message> <source>Error creating Android templates</source> - <translatorcomment>template&nbsp;?</translatorcomment> + <translatorcomment>template ?</translatorcomment> <translation>Erreur lors de la création des modèles Android</translation> </message> <message> @@ -61060,15 +61060,15 @@ Veuillez installer au moins un SDK. </translation> </message> <message> <source>Cannot create Android package: current build configuration is not Qt 4.</source> - <translation>Impossible de créer le paquet Android&nbsp;: la configuration de compilation actuelle n'est pas Qt 4.</translation> + <translation>Impossible de créer le paquet Android : la configuration de compilation actuelle n'est pas Qt 4.</translation> </message> <message> <source>Cannot create Android package: No ANDROID_TARGET_ARCH set in make spec.</source> - <translation>Impossible de créer un paquet Android&nbsp;: ANDROID_TARGET_ARCH n'est pas défini dans make spec.</translation> + <translation>Impossible de créer un paquet Android : ANDROID_TARGET_ARCH n'est pas défini dans make spec.</translation> </message> <message> <source>Warning: Signing a debug package.</source> - <translation>Avertissement&nbsp;: authentification d'un paquet Debug.</translation> + <translation>Avertissement : authentification d'un paquet Debug.</translation> </message> <message> <source>Cannot find ELF information</source> @@ -61122,7 +61122,7 @@ Veuillez vous assurer que votre application est compilée et sélectionnée dans </message> <message> <source>Package deploy: Running command '%1 %2'.</source> - <translation>Déploiement du paquet&nbsp;: exécution de la commande "%1 %2".</translation> + <translation>Déploiement du paquet : exécution de la commande "%1 %2".</translation> </message> <message> <source>Packaging failed.</source> @@ -61130,23 +61130,23 @@ Veuillez vous assurer que votre application est compilée et sélectionnée dans </message> <message> <source>Packaging error: Could not start command '%1 %2'. Reason: %3</source> - <translation>Erreur de paquetage&nbsp;: impossible de lancer la commande "%1 %2". Raison&nbsp;: %3</translation> + <translation>Erreur de paquetage : impossible de lancer la commande "%1 %2". Raison : %3</translation> </message> <message> <source>Packaging Error: Command '%1 %2' failed.</source> - <translation>Erreur de paquetage&nbsp;: la commande "%1 %2" a échoué.</translation> + <translation>Erreur de paquetage : la commande "%1 %2" a échoué.</translation> </message> <message> <source>Reason: %1</source> - <translation>Raison&nbsp;: %1</translation> + <translation>Raison : %1</translation> </message> <message> <source> Reason: %1</source> - <translation>Raison&nbsp;: %1</translation> + <translation>Raison : %1</translation> </message> <message> <source>Exit code: %1</source> - <translation>Code de sortie&nbsp;: %1</translation> + <translation>Code de sortie : %1</translation> </message> <message> <source>Keystore</source> @@ -61154,7 +61154,7 @@ Veuillez vous assurer que votre application est compilée et sélectionnée dans </message> <message> <source>Keystore password:</source> - <translation>Mot de passe du trousseau de clés&nbsp;:</translation> + <translation>Mot de passe du trousseau de clés :</translation> </message> <message> <source>Certificate</source> @@ -61162,7 +61162,7 @@ Veuillez vous assurer que votre application est compilée et sélectionnée dans </message> <message> <source>Certificate password (%1):</source> - <translation>Mot de passe du certificat (%1)&nbsp;:</translation> + <translation>Mot de passe du certificat (%1) :</translation> </message> </context> <context> @@ -61275,14 +61275,14 @@ Veuillez choisir un nom de paquet valide pour votre application (par exemple &qu <source> '%1' died.</source> - <translatorcomment>Mort&nbsp;? >> peut-être trop cru, mais plus cohérent avec la suite.</translatorcomment> + <translatorcomment>Mort ? >> peut-être trop cru, mais plus cohérent avec la suite.</translatorcomment> <translation> "%1" est mort.</translation> </message> <message> <source>Failed to forward C++ debugging ports. Reason: %1.</source> - <translation>Échec du transfert des ports de débogage C++. Raison&nbsp;: %1.</translation> + <translation>Échec du transfert des ports de débogage C++. Raison : %1.</translation> </message> <message> <source>Failed to forward C++ debugging ports.</source> @@ -61290,7 +61290,7 @@ Veuillez choisir un nom de paquet valide pour votre application (par exemple &qu </message> <message> <source>Failed to forward QML debugging ports. Reason: %1.</source> - <translation>Échec du transfert des ports de débogage QML. Raison&nbsp;: %1.</translation> + <translation>Échec du transfert des ports de débogage QML. Raison : %1.</translation> </message> <message> <source>Failed to forward QML debugging ports.</source> @@ -61356,7 +61356,7 @@ Veuillez choisir un nom de paquet valide pour votre application (par exemple &qu </message> <message> <source>"%1" does not seem to be an Android SDK top folder.</source> - <translatorcomment>dossier parent ou racine&nbsp;?</translatorcomment> + <translatorcomment>dossier parent ou racine ?</translatorcomment> <translation>"%1" ne semble pas être la racine du SDK Android.</translation> </message> <message> @@ -61426,7 +61426,7 @@ Veuillez choisir un nom de paquet valide pour votre application (par exemple &qu <name>Android::Internal::AndroidToolChainConfigWidget</name> <message> <source>NDK Root:</source> - <translation>Racine du NDK&nbsp;:</translation> + <translation>Racine du NDK :</translation> </message> </context> <context> @@ -61444,7 +61444,7 @@ Veuillez choisir un nom de paquet valide pour votre application (par exemple &qu <name>ClearCase::Internal::ActivitySelector</name> <message> <source>Select &activity:</source> - <translation>Sélectionner une &activité&nbsp;:</translation> + <translation>Sélectionner une &activité :</translation> </message> <message> <source>Add</source> @@ -61673,25 +61673,25 @@ Veuillez choisir un nom de paquet valide pour votre application (par exemple &qu </message> <message> <source>Do you want to check in the files?</source> - <translation>Voulez-vous importer les fichiers&nbsp;?</translation> + <translation>Voulez-vous importer les fichiers ?</translation> </message> <message> <source>The comment check failed. Do you want to check in the files?</source> - <translation>La vérification des commentaires a échoué. Voulez-vous importer les fichiers&nbsp;? </translation> + <translation>La vérification des commentaires a échoué. Voulez-vous importer les fichiers ? </translation> </message> <message> <source>Do you want to undo the check out of '%1'?</source> - <translation>Voulez-vous défaire l'export de "%1"&nbsp;?</translation> + <translation>Voulez-vous défaire l'export de "%1" ?</translation> </message> <message> <source>Undo Hijack File</source> <translatorcomment>ils ont vraiment des concepts bizarres dans Clearcase, mais en general je trouve ce jargon specifique à un outil particulier assez intraduisible... -Oui&nbsp;:)</translatorcomment> +Oui :)</translatorcomment> <translation>Annuler hijack du fichier</translation> </message> <message> <source>Do you want to undo hijack of '%1'?</source> - <translation>Voulez vous annuler le hijack de "%1"&nbsp;?</translation> + <translation>Voulez vous annuler le hijack de "%1" ?</translation> </message> <message> <source>External diff is required to compare multiple files.</source> @@ -61731,11 +61731,11 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Set current activity failed: %1</source> - <translation>La définition de l'activité actuelle a échoué&nbsp;: %1 </translation> + <translation>La définition de l'activité actuelle a échoué : %1 </translation> </message> <message> <source>Enter &comment:</source> - <translation>Entrer un &commentaire&nbsp;:</translation> + <translation>Entrer un &commentaire :</translation> </message> <message> <source>ClearCase Add File %1</source> @@ -61747,7 +61747,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>This operation is irreversible. Are you sure?</source> - <translation>Cette opération est irréversible. Voulez vous continuer&nbsp;?</translation> + <translation>Cette opération est irréversible. Voulez vous continuer ?</translation> </message> <message> <source>ClearCase Remove File %1</source> @@ -61800,7 +61800,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>In order to use External diff, 'diff' command needs to be accessible.</source> - <translatorcomment>Disponible&nbsp;?</translatorcomment> + <translatorcomment>Disponible ?</translatorcomment> <translation>Pour utiliser un diff externe, la commande "diff" doit être accessible.</translation> </message> <message> @@ -61816,7 +61816,7 @@ Oui&nbsp;:)</translatorcomment> <name>CMakeProjectManager::Internal::ChooseCMakePage</name> <message> <source>cmake Executable:</source> - <translation type="obsolete">Exécutable CMake&nbsp;:</translation> + <translation type="obsolete">Exécutable CMake :</translation> </message> <message> <source>Choose Cmake Executable</source> @@ -61844,7 +61844,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>CMake Executable:</source> - <translation>Exécutable CMake&nbsp;:</translation> + <translation>Exécutable CMake :</translation> </message> <message> <source>Choose CMake Executable</source> @@ -61917,7 +61917,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Apply Function Signature Changes</source> - <translatorcomment>Pluriel&nbsp;?</translatorcomment> + <translatorcomment>Pluriel ?</translatorcomment> <translation>Appliquer les changements de signature de fonction</translation> </message> </context> @@ -62031,7 +62031,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Are you sure you want to remove all breakpoints from all files in the current session?</source> - <translation>Êtes vous sur de vouloir retirer tous les points d'arrêt de tous les fichiers de la sesssion courante&nbsp;?</translation> + <translation>Êtes vous sur de vouloir retirer tous les points d'arrêt de tous les fichiers de la sesssion courante ?</translation> </message> <message> <source>Add Breakpoint</source> @@ -62050,7 +62050,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Server port:</source> - <translation>Port du serveur&nbsp;:</translation> + <translation>Port du serveur :</translation> </message> <message> <source>Override server address</source> @@ -62070,7 +62070,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>&Server start script:</source> - <translation>&Script de démarrage du serveur&nbsp;:</translation> + <translation>&Script de démarrage du serveur :</translation> </message> <message> <source>Select Location of Debugging Information</source> @@ -62082,35 +62082,35 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>&Kit:</source> - <translation>&Kit&nbsp;:</translation> + <translation>&Kit :</translation> </message> <message> <source>Local &executable:</source> - <translation>&Exécutable local&nbsp;: </translation> + <translation>&Exécutable local : </translation> </message> <message> <source>Command line &arguments:</source> - <translation>&Arguments de la ligne de commande&nbsp;:</translation> + <translation>&Arguments de la ligne de commande :</translation> </message> <message> <source>&Working directory:</source> - <translation>&Répertoire de travail&nbsp;: </translation> + <translation>&Répertoire de travail : </translation> </message> <message> <source>Run in &terminal:</source> - <translation>Lancer en &terminal&nbsp;: </translation> + <translation>Lancer en &terminal : </translation> </message> <message> <source>Break at "&main":</source> - <translation>Arrêt à "&main"&nbsp;: </translation> + <translation>Arrêt à "&main" : </translation> </message> <message> <source>Debug &information:</source> - <translation>&Information de débogage&nbsp;:</translation> + <translation>&Information de débogage :</translation> </message> <message> <source>&Recent:</source> - <translation>&Récent&nbsp;:</translation> + <translation>&Récent :</translation> </message> </context> <context> @@ -62137,7 +62137,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Debugger:</source> - <translation>Débogueur&nbsp;:</translation> + <translation>Débogueur :</translation> </message> <message> <source>Debugger for "%1"</source> @@ -62148,11 +62148,11 @@ Oui&nbsp;:)</translatorcomment> <name>Debugger::Internal::DebuggerKitConfigDialog</name> <message> <source>&Engine:</source> - <translation>&Moteur&nbsp;:</translation> + <translation>&Moteur :</translation> </message> <message> <source>&Binary:</source> - <translation>&Binaire&nbsp;:</translation> + <translation>&Binaire :</translation> </message> <message> <source>64-bit version</source> @@ -62196,7 +62196,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>%1 <None></source> - <translatorcomment>Balise à traduire&nbsp;? Yep (c'est ce qui est fait dans qtcreator_de.ts en tout cas)</translatorcomment> + <translatorcomment>Balise à traduire ? Yep (c'est ce qui est fait dans qtcreator_de.ts en tout cas)</translatorcomment> <translation>%1 <None></translation> </message> <message> @@ -62255,7 +62255,7 @@ Oui&nbsp;:)</translatorcomment> <message> <source>Starting executable failed: </source> - <translation>Échec du lancement de l'exécutable&nbsp;:</translation> + <translation>Échec du lancement de l'exécutable :</translation> </message> </context> <context> @@ -62296,7 +62296,7 @@ Oui&nbsp;:)</translatorcomment> <name>Debugger::Internal::GdbCoreEngine</name> <message> <source>Error Loading Core File</source> - <translatorcomment>Core&nbsp;? coeur&nbsp;? Les anciennes chaînes utilisent core</translatorcomment> + <translatorcomment>Core ? coeur ? Les anciennes chaînes utilisent core</translatorcomment> <translation>Erreur lors du chargement du fichier core</translation> </message> <message> @@ -62333,26 +62333,26 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Attach to core "%1" failed:</source> - <translation>Échec de liaison au core "%1"&nbsp;:</translation> + <translation>Échec de liaison au core "%1" :</translation> </message> <message> <source>Attach to core "%1" failed: </source> - <translation>Échec de liaison au core "%1"&nbsp;:</translation> + <translation>Échec de liaison au core "%1" :</translation> </message> </context> <context> <name>Debugger::Internal::GdbLocalPlainEngine</name> <message> <source>Cannot set up communication with child process: %1</source> - <translation>Impossible de mettre en place la communication avec le processus enfant&nbsp;: %1</translation> + <translation>Impossible de mettre en place la communication avec le processus enfant : %1</translation> </message> </context> <context> <name>Debugger::Internal::GdbRemoteServerEngine</name> <message> <source>The upload process failed to start. Shell missing?</source> - <translation>Le processus d'upload n'a pas pu démarrer. Shell manquant&nbsp;?</translation> + <translation>Le processus d'upload n'a pas pu démarrer. Shell manquant ?</translation> </message> <message> <source>The upload process crashed some time after starting successfully.</source> @@ -62384,12 +62384,12 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Reading debug information failed:</source> - <translation>La lecture des informations de débogage a échoué&nbsp;:</translation> + <translation>La lecture des informations de débogage a échoué :</translation> </message> <message> <source>Reading debug information failed: </source> - <translation>La lecture des informations de débogage a échoué&nbsp;: </translation> + <translation>La lecture des informations de débogage a échoué : </translation> </message> <message> <source>Interrupting not possible</source> @@ -62404,7 +62404,7 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Could not retrieve list of free ports:</source> - <translation>Impossible de récupérer la liste des ports disponibles&nbsp;: </translation> + <translation>Impossible de récupérer la liste des ports disponibles : </translation> </message> <message> <source>Process aborted</source> @@ -62412,11 +62412,11 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Running command: %1</source> - <translation>Exécute la commande&nbsp;: %1</translation> + <translation>Exécute la commande : %1</translation> </message> <message> <source>Connection error: %1</source> - <translation>Erreur de connexion&nbsp;: %1</translation> + <translation>Erreur de connexion : %1</translation> </message> <message> <source>Starting gdbserver...</source> @@ -62444,11 +62444,11 @@ Oui&nbsp;:)</translatorcomment> </message> <message> <source>Remote: "%1:%2"</source> - <translation>Distant&nbsp;: "%1:%2"</translation> + <translation>Distant : "%1:%2"</translation> </message> <message> <source>Process gdbserver finished. Status: %1</source> - <translation>Processus gbdserver terminé. Statut&nbsp;: %1</translation> + <translation>Processus gbdserver terminé. Statut : %1</translation> </message> </context> <context> @@ -62620,7 +62620,7 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi <message> <source>Error: (%1) %2</source> <comment>%1=error code, %2=error message</comment> - <translation>Erreur&nbsp;: (%1) %2</translation> + <translation>Erreur : (%1) %2</translation> </message> <message> <source>Disconnected.</source> @@ -62661,11 +62661,11 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi <name>Debugger::Internal::QmlInspectorAgent</name> <message> <source>Success: </source> - <translation>Réussite&nbsp;:</translation> + <translation>Réussite :</translation> </message> <message> <source>Success:</source> - <translation>Réussite&nbsp;:</translation> + <translation>Réussite :</translation> </message> <message> <source>Properties</source> @@ -62788,7 +62788,7 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi </message> <message> <source>Function:</source> - <translation>Fonction&nbsp;:</translation> + <translation>Fonction :</translation> </message> <message> <source>Disassemble Function</source> @@ -62921,7 +62921,7 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi </message> <message> <source>Change Display for Object Named "%1":</source> - <translation>Changer l'affichage de l'objet nommé "%1"&nbsp;: </translation> + <translation>Changer l'affichage de l'objet nommé "%1" : </translation> </message> <message> <source>Use Format for Type (Currently %1)</source> @@ -62937,7 +62937,7 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi </message> <message> <source>Change Display for Type "%1":</source> - <translation>Changer l'affichage du type "%1"&nbsp;: </translation> + <translation>Changer l'affichage du type "%1" : </translation> </message> <message> <source>Automatic</source> @@ -63073,7 +63073,7 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi </message> <message> <source>Expression:</source> - <translation>Expression&nbsp;:</translation> + <translation>Expression :</translation> </message> <message> <source>Locals & Expressions</source> @@ -63084,11 +63084,11 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi <name>Gerrit::Internal::GerritDialog</name> <message> <source>Apply in: </source> - <translation>Appliquer dans&nbsp;:</translation> + <translation>Appliquer dans :</translation> </message> <message> <source>Apply in:</source> - <translation>Appliquer dans&nbsp;:</translation> + <translation>Appliquer dans :</translation> </message> <message> <source>Gerrit %1@%2</source> @@ -63100,11 +63100,11 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi </message> <message> <source>&Query:</source> - <translation>&Requête&nbsp;:</translation> + <translation>&Requête :</translation> </message> <message> <source>Change #, SHA-1, tr:id, owner:email or reviewer:email</source> - <translatorcomment>Vraiment traduire les %1:%2&nbsp;? Ça semble être des champs du truc machin bidule en ligne. Pierre: pas partisan de traduire, l'interface de gerrit est uniquement en anglais AFAICT.</translatorcomment> + <translatorcomment>Vraiment traduire les %1:%2 ? Ça semble être des champs du truc machin bidule en ligne. Pierre: pas partisan de traduire, l'interface de gerrit est uniquement en anglais AFAICT.</translatorcomment> <translation>Changer #, SHA-1, tr:id,owner:email ou reviewer:email </translation> </message> <message> @@ -63192,11 +63192,11 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi </message> <message> <source>Parse error: '%1' -> %2</source> - <translation>Erreur d'analyse&nbsp;: "%1" -> %2</translation> + <translation>Erreur d'analyse : "%1" -> %2</translation> </message> <message> <source>Parse error: '%1'</source> - <translation>Erreur d'analyse&nbsp;: "%1"</translation> + <translation>Erreur d'analyse : "%1"</translation> </message> <message> <source>Parse error in line '%1'</source> @@ -63211,7 +63211,7 @@ Le pas à pas dans le module ou la définition de points d'arrêt par fichi </message> <message> <source>Error running %1: %2</source> - <translation>Erreur lors de l'exécution de %1&nbsp;: %2</translation> + <translation>Erreur lors de l'exécution de %1 : %2</translation> </message> <message> <source>%1 crashed.</source> @@ -63231,7 +63231,7 @@ Most likely this is caused by problems with SSH authentication. Would you like to terminate it?</source> <translation>Le processus gerrit n'a pas répondu en %1s. Souvent, cela se produit à cause de problèmes d'authentification SSH. -Souhaitez-vous le terminer&nbsp;?</translation> +Souhaitez-vous le terminer ?</translation> </message> <message> <source>Terminate</source> @@ -63261,20 +63261,20 @@ Souhaitez-vous le terminer&nbsp;?</translation> </message> <message> <source>&Host:</source> - <translation>&Hôte&nbsp;: </translation> + <translation>&Hôte : </translation> </message> <message> <source>&User:</source> - <translation>&Utilisateur&nbsp;:</translation> + <translation>&Utilisateur :</translation> </message> <message> <source>&ssh:</source> - <translatorcomment>Espace avant le&nbsp;: (protocole&nbsp;?)&nbsp;?</translatorcomment> - <translation>&ssh&nbsp;:</translation> + <translatorcomment>Espace avant le : (protocole ?) ?</translatorcomment> + <translation>&ssh :</translation> </message> <message> <source>&Repository:</source> - <translation>&Dépôt&nbsp;:</translation> + <translation>&Dépôt :</translation> </message> <message> <source>Default repository where patches will be applied.</source> @@ -63282,7 +63282,7 @@ Souhaitez-vous le terminer&nbsp;?</translation> </message> <message> <source>Pr&ompt:</source> - <translation>In&vite&nbsp;:</translation> + <translation>In&vite :</translation> </message> <message> <source>If checked, user will always be @@ -63291,11 +63291,11 @@ asked to confirm the repository path.</source> </message> <message> <source>&Port:</source> - <translation>&Port&nbsp;:</translation> + <translation>&Port :</translation> </message> <message> <source>P&rotocol:</source> - <translation>P&rotocole&nbsp;:</translation> + <translation>P&rotocole :</translation> </message> <message> <source>Determines the protocol used to form a URL in case @@ -63310,7 +63310,7 @@ dans le fichier "gerrit.config".</translation> <name>Gerrit::Internal::FetchContext</name> <message> <source>Gerrit Fetch</source> - <translatorcomment>Traduire fetch&nbsp;?</translatorcomment> + <translatorcomment>Traduire fetch ?</translatorcomment> <translation>Gerrit fetch</translation> </message> <message> @@ -63323,7 +63323,7 @@ dans le fichier "gerrit.config".</translation> </message> <message> <source>Error running %1: %2</source> - <translation>Erreur lors de l'exécution de %1&nbsp;: %2</translation> + <translation>Erreur lors de l'exécution de %1 : %2</translation> </message> <message> <source>Error writing to temporary file.</source> @@ -63377,7 +63377,7 @@ dans le fichier "gerrit.config".</translation> and project %2 were not verified among remotes in %3. Select different folder?</source> - <translation>L'hôte %1 et le projet %2 n'ont pas été vérifiés auprès des dépôt distant dans %3. Sélectionner un autre dossier&nbsp;?</translation> + <translation>L'hôte %1 et le projet %2 n'ont pas été vérifiés auprès des dépôt distant dans %3. Sélectionner un autre dossier ?</translation> </message> <message> <source>Enter Local Repository for '%1' (%2)</source> @@ -63431,7 +63431,7 @@ were not verified among remotes in %3. Select different folder?</source> </message> <message> <source>Reset to:</source> - <translation type="obsolete">Réinitaliser à &nbsp;:</translation> + <translation type="obsolete">Réinitaliser à :</translation> </message> <message> <source>Undo Changes to %1</source> @@ -63454,11 +63454,11 @@ were not verified among remotes in %3. Select different folder?</source> </message> <message> <source>Refusing to update changelog file: Already contains version '%1'.</source> - <translation>Refus de mise à jour du journal des changements&nbsp;: il contient déjà la version "%1".</translation> + <translation>Refus de mise à jour du journal des changements : il contient déjà la version "%1".</translation> </message> <message> <source>Cannot update changelog: Invalid format (no maintainer entry found).</source> - <translation>Refus de mise à jour du journal des changements&nbsp;: format invalide (aucune entrée de mainteneur trouvée).</translation> + <translation>Refus de mise à jour du journal des changements : format invalide (aucune entrée de mainteneur trouvée).</translation> </message> <message> <source>Invalid icon data in Debian control file.</source> @@ -63478,15 +63478,15 @@ were not verified among remotes in %3. Select different folder?</source> </message> <message> <source>Unable to create Debian templates: No Qt version set.</source> - <translation>Impossible de créer des modèles Debian&nbsp;: pas de version de Qt définie.</translation> + <translation>Impossible de créer des modèles Debian : pas de version de Qt définie.</translation> </message> <message> <source>Unable to create Debian templates: dh_make failed (%1).</source> - <translation>Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1).</translation> + <translation>Impossible de créer des modèles Debian : échec de dh_make (%1).</translation> </message> <message> <source>Unable to create debian templates: dh_make failed (%1).</source> - <translation>Impossible de créer des modèles Debian&nbsp;: échec de dh_make (%1).</translation> + <translation>Impossible de créer des modèles Debian : échec de dh_make (%1).</translation> </message> <message> <source>Unable to move new debian directory to '%1'.</source> @@ -63528,11 +63528,11 @@ were not verified among remotes in %3. Select different folder?</source> </message> <message> <source>Cannot deploy: Qemu was not running. It has now been started up for you, but it will take a bit of time until it is ready. Please try again then.</source> - <translation>Impossible de déployer&nbsp;: Qemu n'était pas lancé. Il a maintenant été démarré, mais il prendra un peu de temps avant d'être prêt. Veuillez réessayer à ce moment. </translation> + <translation>Impossible de déployer : Qemu n'était pas lancé. Il a maintenant été démarré, mais il prendra un peu de temps avant d'être prêt. Veuillez réessayer à ce moment. </translation> </message> <message> <source>Cannot deploy: You want to deploy to Qemu, but it is not enabled for this Qt version.</source> - <translation>Impossible de déployer&nbsp;: vous voulez déployer sur Qemu, mais il n'est pas activé pour cette version de Qt. </translation> + <translation>Impossible de déployer : vous voulez déployer sur Qemu, mais il n'est pas activé pour cette version de Qt. </translation> </message> </context> <context> @@ -63552,9 +63552,9 @@ were not verified among remotes in %3. Select different folder?</source> <source><html>Qt Creator has set up the following files to enable packaging: %1 Do you want to add them to the project?</html></source> - <translation><html>Qt Creator a configuré les fichiers suivants pour permettre l'empaquetage&nbsp;: + <translation><html>Qt Creator a configuré les fichiers suivants pour permettre l'empaquetage : %1 -Voulez-vous les ajouter au projet&nbsp;?</html></translation> +Voulez-vous les ajouter au projet ?</html></translation> </message> </context> <context> @@ -63598,7 +63598,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <name>ProjectExplorer::DeviceApplicationRunner</name> <message> <source>Cannot run: Device is not able to create processes.</source> - <translation>Impossible d'exécuter&nbsp;: le périphérique n'est pas capable de créer le processus.</translation> + <translation>Impossible d'exécuter : le périphérique n'est pas capable de créer le processus.</translation> </message> <message> <source>User requested stop. Shutting down...</source> @@ -63606,7 +63606,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Application failed to start: %1</source> - <translation>Impossible de démarrer l'application&nbsp;: %1</translation> + <translation>Impossible de démarrer l'application : %1</translation> </message> <message> <source>Application finished with exit code %1.</source> @@ -63618,7 +63618,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Cannot run: No device.</source> - <translation>Impossible d'exécuter&nbsp;: aucun périphérique.</translation> + <translation>Impossible d'exécuter : aucun périphérique.</translation> </message> <message> <source>Connecting to device...</source> @@ -63626,7 +63626,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>SSH connection failed: %1</source> - <translation>La connexion SSH a échoué&nbsp;: %1</translation> + <translation>La connexion SSH a échoué : %1</translation> </message> <message> <source>Application did not finish in time, aborting.</source> @@ -63634,7 +63634,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>Remote application crashed: %1</source> - <translation>L'application distante a planté&nbsp;: %1 </translation> + <translation>L'application distante a planté : %1 </translation> </message> <message> <source>Remote application finished with exit code %1.</source> @@ -63656,7 +63656,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <name>ProjectExplorer::DeviceProcessesDialog</name> <message> <source>Kit:</source> - <translation>Kit&nbsp;:</translation> + <translation>Kit :</translation> </message> <message> <source>List of Processes</source> @@ -63676,7 +63676,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> </message> <message> <source>&Filter:</source> - <translation>&Filtre&nbsp;:</translation> + <translation>&Filtre :</translation> </message> <message> <source>&Attach to Process</source> @@ -63712,15 +63712,15 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <name>ProjectExplorer::DeviceUsedPortsGatherer</name> <message> <source>Connection error: %1</source> - <translation>Erreur de connexion&nbsp;: %1</translation> + <translation>Erreur de connexion : %1</translation> </message> <message> <source>Could not start remote process: %1</source> - <translation>Impossible de démarrer le processus distant&nbsp;: %1</translation> + <translation>Impossible de démarrer le processus distant : %1</translation> </message> <message> <source>Remote process crashed: %1</source> - <translation>Le processus distant a crashé&nbsp;: %1</translation> + <translation>Le processus distant a crashé : %1</translation> </message> <message> <source>Remote process failed; exit code was %1.</source> @@ -63729,7 +63729,7 @@ Voulez-vous les ajouter au projet&nbsp;?</html></translation> <message> <source> Remote error output was: %1</source> - <translation>La sortie du processus distant était&nbsp;: %1</translation> + <translation>La sortie du processus distant était : %1</translation> </message> </context> <context> @@ -63743,26 +63743,26 @@ Remote error output was: %1</source> <name>ProjectExplorer::Internal::LocalProcessList</name> <message> <source>Cannot terminate process %1: %2</source> - <translation>Impossible de terminer le processus %1&nbsp;: %2</translation> + <translation>Impossible de terminer le processus %1 : %2</translation> </message> <message> <source>Cannot open process %1: %2</source> - <translation>Impossible d'ouvrir le processus %1&nbsp;: %2</translation> + <translation>Impossible d'ouvrir le processus %1 : %2</translation> </message> </context> <context> <name>ProjectExplorer::SshDeviceProcessList</name> <message> <source>Connection failure: %1</source> - <translation>Échec de la connexion&nbsp;: %1</translation> + <translation>Échec de la connexion : %1</translation> </message> <message> <source>Error: Process listing command failed to start: %1</source> - <translation>Erreur&nbsp;: le processus listant les commandes n'a pas pu démarrer&nbsp;: %1</translation> + <translation>Erreur : le processus listant les commandes n'a pas pu démarrer : %1</translation> </message> <message> <source>Error: Process listing command crashed: %1</source> - <translation>Erreur&nbsp;: le processus listant les commandes a crashé&nbsp;: %1</translation> + <translation>Erreur : le processus listant les commandes a crashé : %1</translation> </message> <message> <source>Process listing command failed with exit code %1.</source> @@ -63770,15 +63770,15 @@ Remote error output was: %1</source> </message> <message> <source>Error: Kill process failed: %1</source> - <translation>Erreur&nbsp;: le processus kill a échoué&nbsp;: %1</translation> + <translation>Erreur : le processus kill a échoué : %1</translation> </message> <message> <source>Error: Kill process failed to start: %1</source> - <translation>Erreur&nbsp;: le processus kill n'a pas pu démarrer&nbsp;: %1</translation> + <translation>Erreur : le processus kill n'a pas pu démarrer : %1</translation> </message> <message> <source>Error: Kill process crashed: %1</source> - <translation>Erreur&nbsp;: le processus kill a crashé&nbsp;: %1</translation> + <translation>Erreur : le processus kill a crashé : %1</translation> </message> <message> <source>Kill process failed with exit code %1.</source> @@ -63787,7 +63787,7 @@ Remote error output was: %1</source> <message> <source> Remote stderr was: %1</source> - <translation>Le stderr distant était&nbsp;: %1</translation> + <translation>Le stderr distant était : %1</translation> </message> </context> <context> @@ -63802,11 +63802,11 @@ Remote stderr was: %1</source> </message> <message> <source>Error:</source> - <translation>Erreur&nbsp;: </translation> + <translation>Erreur : </translation> </message> <message> <source>Warning:</source> - <translation>Avertissement&nbsp;: </translation> + <translation>Avertissement : </translation> </message> </context> <context> @@ -63878,7 +63878,7 @@ Remote stderr was: %1</source> <message> <source>Sysroot:</source> <translatorcomment>Traduit plus haut</translatorcomment> - <translation>Racine du système&nbsp;:</translation> + <translation>Racine du système :</translation> </message> </context> <context> @@ -63893,7 +63893,7 @@ Remote stderr was: %1</source> </message> <message> <source>Compiler:</source> - <translation>Compilateur&nbsp;:</translation> + <translation>Compilateur :</translation> </message> <message> <source><No compiler available></source> @@ -63908,7 +63908,7 @@ Remote stderr was: %1</source> </message> <message> <source>Device type:</source> - <translation>Type de périphérique&nbsp;:</translation> + <translation>Type de périphérique :</translation> </message> </context> <context> @@ -63927,7 +63927,7 @@ Remote stderr was: %1</source> </message> <message> <source>Device:</source> - <translation>Appareil mobile&nbsp;:</translation> + <translation>Appareil mobile :</translation> </message> </context> <context> @@ -63941,7 +63941,7 @@ Remote stderr was: %1</source> <name>ProjectExplorer::Internal::KitManagerConfigWidget</name> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>Kit name and icon.</source> @@ -64049,7 +64049,7 @@ pour donner un indice à Qt Creator à propos d'une URI probable.</translat <source>Could not connect to the in-process QML profiler. Do you want to retry?</source> <translation>Impossible de connecter au profileur QML du processus. -Souhaitez-vous réessayer&nbsp;?</translation> +Souhaitez-vous réessayer ?</translation> </message> </context> <context> @@ -64132,7 +64132,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> </message> <message> <source>Error while parsing %1</source> - <translation type="obsolete">Erreur lors de l'analyse de&nbsp;: %1</translation> + <translation type="obsolete">Erreur lors de l'analyse de : %1</translation> </message> <message> <source>Invalid version of QML Trace file.</source> @@ -64216,7 +64216,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> <name>Qnx::Internal::BlackBerryAbstractDeployStep</name> <message> <source>Starting: "%1" %2</source> - <translation>Débute&nbsp;: "%1" %2</translation> + <translation>Débute : "%1" %2</translation> </message> </context> <context> @@ -64227,7 +64227,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> </message> <message> <source>Cannot show debug output. Error: %1</source> - <translation>Impossible d'afficher la fenêtre de débogage. Erreur&nbsp;: %1</translation> + <translation>Impossible d'afficher la fenêtre de débogage. Erreur : %1</translation> </message> </context> <context> @@ -64293,15 +64293,15 @@ Souhaitez-vous réessayer&nbsp;?</translation> </message> <message> <source>CSK password:</source> - <translation>Mot de passe CSK&nbsp;:</translation> + <translation>Mot de passe CSK :</translation> </message> <message> <source>Keystore password:</source> - <translation>Mot de passe du trousseau de clés&nbsp;:</translation> + <translation>Mot de passe du trousseau de clés :</translation> </message> <message> <source>Note: This will store the passwords in a world-readable file.</source> - <translation>Note&nbsp;: les mots de passe sont stockés dans un fichier lisible par tout le monde.</translation> + <translation>Note : les mots de passe sont stockés dans un fichier lisible par tout le monde.</translation> </message> <message> <source>Save passwords</source> @@ -64337,7 +64337,7 @@ Souhaitez-vous réessayer&nbsp;?</translation> <source>You need to set up a bar descriptor file to enable packaging. Do you want Qt Creator to generate it for your project?</source> <translation>Vous devez configurer un fichier de description bar pour activer le paquetage. -Voulez-vous que Qt Creator le génère pour votre projet&nbsp;?</translation> +Voulez-vous que Qt Creator le génère pour votre projet ?</translation> </message> <message> <source>Don't ask again for this project</source> @@ -64449,15 +64449,15 @@ Voulez-vous que Qt Creator le génère pour votre projet&nbsp;?</translation </message> <message> <source>Failed to create directory: '%1'.</source> - <translation type="obsolete">Impossible de créer le dossier&nbsp;: "%1".</translation> + <translation type="obsolete">Impossible de créer le dossier : "%1".</translation> </message> <message> <source>Private key file already exists: '%1'</source> - <translation type="obsolete">Le fichier de clé privée existe déjà &nbsp;: "%1"</translation> + <translation type="obsolete">Le fichier de clé privée existe déjà : "%1"</translation> </message> <message> <source>Public key file already exists: '%1'</source> - <translation type="obsolete">Le fichier de clé publique existe déjà &nbsp;: "%1"</translation> + <translation type="obsolete">Le fichier de clé publique existe déjà : "%1"</translation> </message> </context> <context> @@ -64492,7 +64492,7 @@ Voulez-vous que Qt Creator le génère pour votre projet&nbsp;?</translation </message> <message> <source>BlackBerry Native SDK:</source> - <translation>SDK BlackBerry natif&nbsp;: </translation> + <translation>SDK BlackBerry natif : </translation> </message> </context> <context> @@ -64552,11 +64552,11 @@ Voulez-vous que Qt Creator le génère pour votre projet&nbsp;?</translation </message> <message> <source>Initial setup failed: %1</source> - <translation>Échec lors de la configuration initiale&nbsp;: %1</translation> + <translation>Échec lors de la configuration initiale : %1</translation> </message> <message> <source>Warning: "slog2info" is not found on the device, debug output not available!</source> - <translation>Avertissement&nbsp;: "slog2info" n'a pas été trouvé sur le périphérique, le sortie de débogage n'est pas disponible&nbsp;!</translation> + <translation>Avertissement : "slog2info" n'a pas été trouvé sur le périphérique, le sortie de débogage n'est pas disponible !</translation> </message> </context> <context> @@ -64607,15 +64607,15 @@ Voulez-vous que Qt Creator le génère pour votre projet&nbsp;?</translation </message> <message> <source>QNX Software Development Platform:</source> - <translatorcomment>ou alors on traduit tout&nbsp;?</translatorcomment> - <translation>SDK QNX&nbsp;:</translation> + <translatorcomment>ou alors on traduit tout ?</translatorcomment> + <translation>SDK QNX :</translation> </message> </context> <context> <name>Qnx::Internal::QnxRunConfiguration</name> <message> <source>Path to Qt libraries on device:</source> - <translation>Chemin sur le périphérique vers les bibliothèques Qt&nbsp;:</translation> + <translation>Chemin sur le périphérique vers les bibliothèques Qt :</translation> </message> </context> <context> @@ -64644,7 +64644,7 @@ Voulez-vous que Qt Creator le génère pour votre projet&nbsp;?</translation </message> <message> <source>Qt mkspec:</source> - <translation>Qt mkspec&nbsp;:</translation> + <translation>Qt mkspec :</translation> </message> </context> <context> @@ -64671,12 +64671,12 @@ Voulez-vous que Qt Creator le génère pour votre projet&nbsp;?</translation <message> <source><b>Error:</b> </source> <comment>Severity is Task::Error</comment> - <translation><b>Erreur&nbsp;:</b> </translation> + <translation><b>Erreur :</b> </translation> </message> <message> <source><b>Warning:</b> </source> <comment>Severity is Task::Warning</comment> - <translation><b>Alerte&nbsp;:</b> </translation> + <translation><b>Alerte :</b> </translation> </message> </context> <context> @@ -64694,19 +64694,19 @@ Voulez-vous que Qt Creator le génère pour votre projet&nbsp;?</translation <name>QtSupport::Internal::CustomExecutableConfigurationWidget</name> <message> <source>Command:</source> - <translation type="obsolete">Commande&nbsp;:</translation> + <translation type="obsolete">Commande :</translation> </message> <message> <source>Executable:</source> - <translation>Exécutable&nbsp;:</translation> + <translation>Exécutable :</translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Run in &terminal</source> @@ -64718,7 +64718,7 @@ Voulez-vous que Qt Creator le génère pour votre projet&nbsp;?</translation </message> <message> <source>Base environment for this run configuration:</source> - <translation type="obsolete">Environnement de base pour cette configuration d'exécution&nbsp;: </translation> + <translation type="obsolete">Environnement de base pour cette configuration d'exécution : </translation> </message> <message> <source>Clean Environment</source> @@ -64798,7 +64798,7 @@ n'a pas pu être trouvé dans le dossier.</translation> </message> <message> <source>Qt version:</source> - <translation>Version de Qt&nbsp;:</translation> + <translation>Version de Qt :</translation> </message> <message> <source>%1 (invalid)</source> @@ -64843,7 +64843,7 @@ n'a pas pu être trouvé dans le dossier.</translation> </message> <message> <source>Unexpected output from remote process: '%1'.</source> - <translation>Sortie imprévue du processus distant&nbsp;: "%1".</translation> + <translation>Sortie imprévue du processus distant : "%1".</translation> </message> <message numerus="yes"> <source>The remote file system has only %n megabytes of free space, but %1 megabytes are required.</source> @@ -64854,7 +64854,7 @@ n'a pas pu être trouvé dans le dossier.</translation> </message> <message numerus="yes"> <source>The remote file system has %n megabytes of free space, going ahead.</source> - <translatorcomment>going ahead&nbsp;?</translatorcomment> + <translatorcomment>going ahead ?</translatorcomment> <translation> <numerusform>Le système de fichier distant possède %n mégaoctet d'espace libre, le processus continue. </numerusform> <numerusform>Le système de fichier distant possède %n mégaoctets d'espace libre, le processus continue.</numerusform> @@ -64862,7 +64862,7 @@ n'a pas pu être trouvé dans le dossier.</translation> </message> <message> <source>Cannot check for free disk space: '%1' is not an absolute path.</source> - <translation>Impossible de vérifier l'espace libre du disque&nbsp;: "%1" n'est pas un chemin absolu.</translation> + <translation>Impossible de vérifier l'espace libre du disque : "%1" n'est pas un chemin absolu.</translation> </message> </context> <context> @@ -64896,7 +64896,7 @@ n'a pas pu être trouvé dans le dossier.</translation> </message> <message> <source>Initial setup failed: %1</source> - <translation>Échec lors de la configuration initiale&nbsp;: %1</translation> + <translation>Échec lors de la configuration initiale : %1</translation> </message> <message> <source>Not enough free ports on device for debugging.</source> @@ -64962,7 +64962,7 @@ n'a pas pu être trouvé dans le dossier.</translation> </message> <message> <source>XML error on line %1, col %2: %3</source> - <translation>Erreur XML à la ligne %1, colonne %2&nbsp;: %3</translation> + <translation>Erreur XML à la ligne %1, colonne %2 : %3</translation> </message> <message> <source>The <RCC> root element is missing.</source> @@ -64970,7 +64970,7 @@ n'a pas pu être trouvé dans le dossier.</translation> </message> <message> <source>Cannot write file. Disk full?</source> - <translation>Impossible d'écrire le fichier. Disque plein&nbsp;?</translation> + <translation>Impossible d'écrire le fichier. Disque plein ?</translation> </message> </context> <context> @@ -65003,7 +65003,7 @@ n'a pas pu être trouvé dans le dossier.</translation> </message> <message> <source>The following files have no write permissions. Do you want to change the permissions?</source> - <translation>Les fichiers suivants n'ont pas de permission d'écriture. Souhaitez-vous changer les permissions&nbsp;?</translation> + <translation>Les fichiers suivants n'ont pas de permission d'écriture. Souhaitez-vous changer les permissions ?</translation> </message> <message> <source>Make Writable</source> @@ -65023,7 +65023,7 @@ n'a pas pu être trouvé dans le dossier.</translation> </message> <message> <source>Select all, if possible: </source> - <translation>Sélectionner tout, si possible&nbsp;: </translation> + <translation>Sélectionner tout, si possible : </translation> </message> <message> <source>Mixed</source> @@ -65107,7 +65107,7 @@ Voir les détails pour une liste complète des fichiers.</translation> <source>The following files are not checked out yet. Do you want to check them out now?</source> <translation>Les fichiers suivants ne sont pas encore importés. -Souhaitez-vous les importer maintenant&nbsp;?</translation> +Souhaitez-vous les importer maintenant ?</translation> </message> </context> <context> @@ -65118,7 +65118,7 @@ Souhaitez-vous les importer maintenant&nbsp;?</translation> </message> <message> <source><html><head/><body><p>The debugger is not configured to use the public Microsoft Symbol Server.<br/>This is recommended for retrieval of the symbols of the operating system libraries.</p><p><span style=" font-style:italic;">Note:</span> It is recommended, that if you use the Microsoft Symbol Server, to also use a local symbol cache.<br/>A fast internet connection is required for this to work smoothly,<br/>and a delay might occur when connecting for the first time and caching the symbols.</p><p>What would you like to set up?</p></body></html></source> - <translation><html><head/><body><p>Le débogueur n'est pas configuré pour utiliser le serveur de symboles Microsoft publique.<br/>Cela est recommandé pour la récupération des symboles des bibliothèques du système d'exploitation.</p><p><span style=" font-style:italic;">Note&nbsp;:</span> Il est recommandé, si vous utilisez le serveur de symboles Microsoft, d'utiliser en complément un cache de symboles en local.<br/>Une connexion rapide à Internet est requise pour que cela fonctionne sans ralentissements<br/>et un délai peut apparaître lors de la première connexion et lors de la mise en cache des symboles.</p><p>Que souhaitez-vous configurer&nbsp;?</p></body></html></translation> + <translation><html><head/><body><p>Le débogueur n'est pas configuré pour utiliser le serveur de symboles Microsoft publique.<br/>Cela est recommandé pour la récupération des symboles des bibliothèques du système d'exploitation.</p><p><span style=" font-style:italic;">Note :</span> Il est recommandé, si vous utilisez le serveur de symboles Microsoft, d'utiliser en complément un cache de symboles en local.<br/>Une connexion rapide à Internet est requise pour que cela fonctionne sans ralentissements<br/>et un délai peut apparaître lors de la première connexion et lors de la mise en cache des symboles.</p><p>Que souhaitez-vous configurer ?</p></body></html></translation> </message> <message> <source>Use Local Symbol Cache</source> @@ -65137,7 +65137,7 @@ Souhaitez-vous les importer maintenant&nbsp;?</translation> <name>Git::Internal::BranchCheckoutDialog</name> <message> <source>Local Changes Found. Choose Action:</source> - <translation>Changements locaux trouvés. Choisissez une action&nbsp;:</translation> + <translation>Changements locaux trouvés. Choisissez une action :</translation> </message> <message> <source>RadioButton</source> @@ -65180,23 +65180,23 @@ Souhaitez-vous les importer maintenant&nbsp;?</translation> </message> <message> <source><b>Local repository:</b></source> - <translation><b>Dépôt local&nbsp;:</b></translation> + <translation><b>Dépôt local :</b></translation> </message> <message> <source>Destination:</source> - <translation>Destination&nbsp;:</translation> + <translation>Destination :</translation> </message> <message> <source>R&emote:</source> - <translation>D&istant&nbsp;:</translation> + <translation>D&istant :</translation> </message> <message> <source>&Branch:</source> - <translation>&Branche&nbsp;:</translation> + <translation>&Branche :</translation> </message> <message> <source>&Topic:</source> - <translation>&Sujet&nbsp;:</translation> + <translation>&Sujet :</translation> </message> <message> <source>&Draft</source> @@ -65208,7 +65208,7 @@ Souhaitez-vous les importer maintenant&nbsp;?</translation> </message> <message> <source>&Push up to commit:</source> - <translation>&Pousser pour commit&nbsp;:</translation> + <translation>&Pousser pour commit :</translation> </message> <message> <source>Pushes the selected commit and all dependent commits.</source> @@ -65216,7 +65216,7 @@ Souhaitez-vous les importer maintenant&nbsp;?</translation> </message> <message> <source>&Reviewers:</source> - <translation>&Relecteurs&nbsp;:</translation> + <translation>&Relecteurs :</translation> </message> <message> <source>Comma-separated list of reviewers. @@ -65228,11 +65228,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source><b>Local repository:</b> %1</source> - <translation><b>Dépôt local&nbsp;:</b> %1</translation> + <translation><b>Dépôt local :</b> %1</translation> </message> <message> <source>Number of commits between HEAD and %1: %2</source> - <translation>Nombre de commits entre HEAD et %1&nbsp;: %2</translation> + <translation>Nombre de commits entre HEAD et %1 : %2</translation> </message> <message> <source>... Include older branches ...</source> @@ -65247,11 +65247,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>User name:</source> - <translation>Nom d'utilisateur&nbsp;:</translation> + <translation>Nom d'utilisateur :</translation> </message> <message> <source>Password:</source> - <translation>Mot de passe&nbsp;:</translation> + <translation>Mot de passe :</translation> </message> </context> <context> @@ -65262,7 +65262,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Machine type:</source> - <translation>Type de machine&nbsp;:</translation> + <translation>Type de machine :</translation> </message> <message> <source>TextLabel</source> @@ -65270,7 +65270,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Free ports:</source> - <translation>Ports libres&nbsp;:</translation> + <translation>Ports libres :</translation> </message> <message> <source>Physical Device</source> @@ -65285,7 +65285,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <name>QbsProjectManager::Internal::QbsBuildStepConfigWidget</name> <message> <source>Build variant:</source> - <translation>Variante de compilation&nbsp;:</translation> + <translation>Variante de compilation :</translation> </message> <message> <source>Debug</source> @@ -65301,11 +65301,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Enable QML debugging:</source> - <translation>Activer le débogage QML&nbsp;:</translation> + <translation>Activer le débogage QML :</translation> </message> <message> <source>Properties:</source> - <translation>Propriétés&nbsp;:</translation> + <translation>Propriétés :</translation> </message> <message> <source>Dry run</source> @@ -65317,7 +65317,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source><b>Qbs:</b> %1</source> - <translation><b>Qbs&nbsp;:</b> %1</translation> + <translation><b>Qbs :</b> %1</translation> </message> <message> <source>Might make your application vulnerable. Only use in a safe environment.</source> @@ -65325,15 +65325,15 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Parallel Jobs:</source> - <translation>Tâches parallèles&nbsp;:</translation> + <translation>Tâches parallèles :</translation> </message> <message> <source>Flags:</source> - <translation>Flags&nbsp;:</translation> + <translation>Flags :</translation> </message> <message> <source>Equivalent command line:</source> - <translation>Ligne de commande équivalente&nbsp;:</translation> + <translation>Ligne de commande équivalente :</translation> </message> </context> <context> @@ -65352,22 +65352,22 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source><b>Qbs:</b> %1</source> - <translation><b>Qbs&nbsp;:</b> %1</translation> + <translation><b>Qbs :</b> %1</translation> </message> <message> <source>Flags:</source> - <translation>Flags&nbsp;:</translation> + <translation>Flags :</translation> </message> <message> <source>Equivalent command line:</source> - <translation>Ligne de commande équivalente&nbsp;:</translation> + <translation>Ligne de commande équivalente :</translation> </message> </context> <context> <name>QbsProjectManager::Internal::QbsInstallStepConfigWidget</name> <message> <source>Install root:</source> - <translation>Racine de l'installation&nbsp;:</translation> + <translation>Racine de l'installation :</translation> </message> <message> <source>Remove first</source> @@ -65387,15 +65387,15 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source><b>Qbs:</b> %1</source> - <translation><b>Qbs&nbsp;:</b> %1</translation> + <translation><b>Qbs :</b> %1</translation> </message> <message> <source>Flags:</source> - <translation>Flags&nbsp;:</translation> + <translation>Flags :</translation> </message> <message> <source>Equivalent command line:</source> - <translation>Ligne de commande équivalente&nbsp;:</translation> + <translation>Ligne de commande équivalente :</translation> </message> </context> <context> @@ -65803,11 +65803,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Author:</source> - <translation>Auteur&nbsp;:</translation> + <translation>Auteur :</translation> </message> <message> <source>Author ID:</source> - <translation>Identifiant de l'auteur&nbsp;:</translation> + <translation>Identifiant de l'auteur :</translation> </message> <message> <source>Set from debug token...</source> @@ -65819,7 +65819,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Debug token:</source> - <translation>Jeton de débogage&nbsp;:</translation> + <translation>Jeton de débogage :</translation> </message> <message> <source>Error Reading Debug Token</source> @@ -65838,15 +65838,15 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>Description:</source> - <translation>Description&nbsp;:</translation> + <translation>Description :</translation> </message> <message> <source>Icon:</source> - <translation>Icône&nbsp;:</translation> + <translation>Icône :</translation> </message> <message> <source>Clear</source> @@ -65854,7 +65854,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Splash screens:</source> - <translation>Écrans d'accueil&nbsp;:</translation> + <translation>Écrans d'accueil :</translation> </message> <message> <source>Add...</source> @@ -65900,11 +65900,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Orientation:</source> - <translation>Orientation&nbsp;:</translation> + <translation>Orientation :</translation> </message> <message> <source>Chrome:</source> - <translation>Chrome&nbsp;:</translation> + <translation>Chrome :</translation> </message> <message> <source>Transparent main window</source> @@ -65912,7 +65912,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Application Arguments:</source> - <translation>Arguments de l'application&nbsp;:</translation> + <translation>Arguments de l'application :</translation> </message> <message> <source>Default</source> @@ -65947,15 +65947,15 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Package ID:</source> - <translation>Identifiant de paquet&nbsp;:</translation> + <translation>Identifiant de paquet :</translation> </message> <message> <source>Package version:</source> - <translation>Version du paquet&nbsp;:</translation> + <translation>Version du paquet :</translation> </message> <message> <source>Package build ID:</source> - <translation>Identifiante de création du paquet&nbsp;:</translation> + <translation>Identifiante de création du paquet :</translation> </message> </context> <context> @@ -65981,19 +65981,19 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> <message> <source>Author:</source> - <translation>Auteur&nbsp;:</translation> + <translation>Auteur :</translation> </message> <message> <source>Password:</source> - <translation>Mot de passe&nbsp;:</translation> + <translation>Mot de passe :</translation> </message> <message> <source>Confirm password:</source> - <translation>Confirmer le mot de passe&nbsp;:</translation> + <translation>Confirmer le mot de passe :</translation> </message> <message> <source>Show password</source> @@ -66021,11 +66021,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Are you sure?</source> - <translation>Êtes-vous sûr&nbsp;?</translation> + <translation>Êtes-vous sûr ?</translation> </message> <message> <source>The file '%1' will be overwritten. Do you want to proceed?</source> - <translation>Le fichier '%1' va être écrasé. Souhaitez-vous continuer&nbsp;?</translation> + <translation>Le fichier '%1' va être écrasé. Souhaitez-vous continuer ?</translation> </message> <message> <source>The blackberry-keytool process is already running.</source> @@ -66068,23 +66068,23 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Debug token path:</source> - <translation>Chemin du jeton de débogage&nbsp;:</translation> + <translation>Chemin du jeton de débogage :</translation> </message> <message> <source>Keystore:</source> - <translation>Trousseau de clés&nbsp;:</translation> + <translation>Trousseau de clés :</translation> </message> <message> <source>Keystore password:</source> - <translation>Mot de passe du trousseau de clés&nbsp;:</translation> + <translation>Mot de passe du trousseau de clés :</translation> </message> <message> <source>CSK password:</source> - <translation>Mot de passe CSK&nbsp;:</translation> + <translation>Mot de passe CSK :</translation> </message> <message> <source>Device PIN:</source> - <translation>Code PIN du périphérique&nbsp;:</translation> + <translation>Code PIN du périphérique :</translation> </message> <message> <source>Show password</source> @@ -66108,19 +66108,19 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Are you sure?</source> - <translation>Êtes-vous sûr&nbsp;?</translation> + <translation>Êtes-vous sûr ?</translation> </message> <message> <source>The file '%1' will be overwritten. Do you want to proceed?</source> - <translation>Le fichier '%1' va être écrasé. Souhaitez-vous continuer&nbsp;?</translation> + <translation>Le fichier '%1' va être écrasé. Souhaitez-vous continuer ?</translation> </message> <message> <source>Failed to request debug token: </source> - <translation>Échec de la requête du jeton de débogage&nbsp;:</translation> + <translation>Échec de la requête du jeton de débogage :</translation> </message> <message> <source>Failed to request debug token:</source> - <translation>Échec de la requête du jeton de débogage&nbsp;:</translation> + <translation>Échec de la requête du jeton de débogage :</translation> </message> <message> <source>Wrong CSK password.</source> @@ -66179,11 +66179,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> <message> <source>Password:</source> - <translation>Mot de passe&nbsp;:</translation> + <translation>Mot de passe :</translation> </message> <message> <source>PKCS 12 Archives (*.p12)</source> @@ -66218,7 +66218,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Registered: Yes</source> - <translation>Inscrit&nbsp;: Oui</translation> + <translation>Inscrit : Oui</translation> </message> <message> <source>Register</source> @@ -66258,7 +66258,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Do you really want to unregister your key? This action cannot be undone.</source> - <translation>Souhaitez-vous réellement désinscrire votre clé&nbsp;? Cette action ne peut être annulée.</translation> + <translation>Souhaitez-vous réellement désinscrire votre clé ? Cette action ne peut être annulée.</translation> </message> <message> <source>Error storing certificate.</source> @@ -66274,11 +66274,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Are you sure you want to delete this certificate?</source> - <translation>Êtes-vous sûr de vouloir supprimer ce certificat&nbsp;?</translation> + <translation>Êtes-vous sûr de vouloir supprimer ce certificat ?</translation> </message> <message> <source>Registered: No</source> - <translation>Inscrit&nbsp;: Non</translation> + <translation>Inscrit : Non</translation> </message> <message> <source>STATUS</source> @@ -66286,7 +66286,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> <message> <source>PATH</source> @@ -66294,7 +66294,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Author:</source> - <translation>Auteur&nbsp;:</translation> + <translation>Auteur :</translation> </message> <message> <source>LABEL</source> @@ -66322,7 +66322,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Invalid certificate password. Try again?</source> - <translation>Le mot de passe du certificat est invalide. Essayer de nouveau&nbsp;?</translation> + <translation>Le mot de passe du certificat est invalide. Essayer de nouveau ?</translation> </message> <message> <source>Error loading certificate.</source> @@ -66330,7 +66330,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>This action cannot be undone. Would you like to continue?</source> - <translation>Cette action ne peut pas être annulée. Voulez-vous continuer&nbsp;?</translation> + <translation>Cette action ne peut pas être annulée. Voulez-vous continuer ?</translation> </message> <message> <source>Loading...</source> @@ -66357,7 +66357,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Get started and configure your environment:</source> - <translation>Démarrer et configurer votre environnement&nbsp;:</translation> + <translation>Démarrer et configurer votre environnement :</translation> </message> <message> <source>environment setup wizard</source> @@ -66402,8 +66402,8 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <message> <source>Are you sure you want to remove: %1?</source> - <translation>Êtes-vous sûr de vouloir supprimer&nbsp;: -%1&nbsp;?</translation> + <translation>Êtes-vous sûr de vouloir supprimer : +%1 ?</translation> </message> <message> <source>Confirmation</source> @@ -66411,11 +66411,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Are you sure you want to uninstall %1?</source> - <translation>Êtes-vous sûr de vouloir desinstaller %1&nbsp;?</translation> + <translation>Êtes-vous sûr de vouloir desinstaller %1 ?</translation> </message> <message> <source>Are you sure you want to remove the current BlackBerry configuration?</source> - <translation>Êtes-vous sûr de vouloir supprimer la configuration actuelle de BlackBerry&nbsp;?</translation> + <translation>Êtes-vous sûr de vouloir supprimer la configuration actuelle de BlackBerry ?</translation> </message> <message> <source>Add</source> @@ -66435,23 +66435,23 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source><html><head/><body><p><span style=" font-weight:600;">NDK Base Name:</span></p></body></html></source> - <translation><html><head/><body><p><span style=" font-weight:600;">Nom de base du NDK&nbsp;:</span></p></body></html></translation> + <translation><html><head/><body><p><span style=" font-weight:600;">Nom de base du NDK :</span></p></body></html></translation> </message> <message> <source><html><head/><body><p><span style=" font-weight:600;">NDK Path:</span></p></body></html></source> - <translation><html><head/><body><p><span style=" font-weight:600;">Chemin du NDK&nbsp;:</span></p></body></html></translation> + <translation><html><head/><body><p><span style=" font-weight:600;">Chemin du NDK :</span></p></body></html></translation> </message> <message> <source><html><head/><body><p><span style=" font-weight:600;">Version:</span></p></body></html></source> - <translation><html><head/><body><p><span style=" font-weight:600;">Version&nbsp;:</span></p></body></html></translation> + <translation><html><head/><body><p><span style=" font-weight:600;">Version :</span></p></body></html></translation> </message> <message> <source><html><head/><body><p><span style=" font-weight:600;">Host:</span></p></body></html></source> - <translation><html><head/><body><p><span style=" font-weight:600;">Hôte&nbsp;:</span></p></body></html></translation> + <translation><html><head/><body><p><span style=" font-weight:600;">Hôte :</span></p></body></html></translation> </message> <message> <source><html><head/><body><p><span style=" font-weight:600;">Target:</span></p></body></html></source> - <translation><html><head/><body><p><span style=" font-weight:600;">Chemin&nbsp;:</span></p></body></html></translation> + <translation><html><head/><body><p><span style=" font-weight:600;">Chemin :</span></p></body></html></translation> </message> </context> <context> @@ -66466,31 +66466,31 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>PBDT CSJ file:</source> - <translation>Fichier PBDT CSJ&nbsp;:</translation> + <translation>Fichier PBDT CSJ :</translation> </message> <message> <source>RDK CSJ file:</source> - <translation>Fichier RDK CSJ&nbsp;:</translation> + <translation>Fichier RDK CSJ :</translation> </message> <message> <source>CSJ PIN:</source> - <translation>Code PIN CSJ&nbsp;:</translation> + <translation>Code PIN CSJ :</translation> </message> <message> <source>CSK password:</source> - <translation>Mot de passe CSK&nbsp;:</translation> + <translation>Mot de passe CSK :</translation> </message> <message> <source>Confirm CSK password:</source> - <translation>Confirmer le mot de passe CSK&nbsp;:</translation> + <translation>Confirmer le mot de passe CSK :</translation> </message> <message> <source>Keystore password:</source> - <translation>Mot de passe du trousseau de clés&nbsp;:</translation> + <translation>Mot de passe du trousseau de clés :</translation> </message> <message> <source>Confirm password:</source> - <translation>Corfimer mot de passe&nbsp;:</translation> + <translation>Corfimer mot de passe :</translation> </message> <message> <source>Generate developer certificate automatically</source> @@ -66541,7 +66541,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Device name:</source> - <translation>Nom du périphérique&nbsp;:</translation> + <translation>Nom du périphérique :</translation> </message> <message> <source>IP or host name of the device</source> @@ -66549,11 +66549,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Device IP address:</source> - <translation>Adresse IP du périphérique&nbsp;:</translation> + <translation>Adresse IP du périphérique :</translation> </message> <message> <source>Device password:</source> - <translation>Mot de passe du périphérique&nbsp;:</translation> + <translation>Mot de passe du périphérique :</translation> </message> <message> <source>The password you use to unlock your device</source> @@ -66603,15 +66603,15 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>PBDT CSJ file:</source> - <translation>Fichier PBDT CSJ&nbsp;:</translation> + <translation>Fichier PBDT CSJ :</translation> </message> <message> <source>RDK CSJ file:</source> - <translation>Fichier RDK CSJ&nbsp;:</translation> + <translation>Fichier RDK CSJ :</translation> </message> <message> <source>CSJ PIN:</source> - <translation>Code PIN CSJ&nbsp;:</translation> + <translation>Code PIN CSJ :</translation> </message> <message> <source>The PIN you provided on the key request website</source> @@ -66619,7 +66619,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Password:</source> - <translation>Mot de passe&nbsp;:</translation> + <translation>Mot de passe :</translation> </message> <message> <source>The password that will be used to access your keys and CSK files</source> @@ -66627,7 +66627,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Confirm password:</source> - <translation>Confirmer le mot de passe&nbsp;:</translation> + <translation>Confirmer le mot de passe :</translation> </message> <message> <source>Status</source> @@ -66651,7 +66651,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>This wizard will be closed and you will be taken to the BlackBerry key request web page. Do you want to continue?</source> - <translation>L'assistant sera fermé et vous serez amené sur le site de requête de clé BlackBerry. Souhaitez-vous continuer&nbsp;?</translation> + <translation>L'assistant sera fermé et vous serez amené sur le site de requête de clé BlackBerry. Souhaitez-vous continuer ?</translation> </message> <message> <source>Browse CSJ File</source> @@ -66682,11 +66682,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>CSK password:</source> - <translation>Mot de passe CSK&nbsp;:</translation> + <translation>Mot de passe CSK :</translation> </message> <message> <source>Keystore password:</source> - <translation>Mot de passe du trousseau de clés&nbsp;:</translation> + <translation>Mot de passe du trousseau de clés :</translation> </message> </context> <context> @@ -66765,7 +66765,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <name>QmlJS::QrcParser</name> <message> <source>XML error on line %1, col %2: %3</source> - <translation>Erreur XML sur la ligne %1, colonne %2&nbsp;: %3</translation> + <translation>Erreur XML sur la ligne %1, colonne %2 : %3</translation> </message> <message> <source>The <RCC> root element is missing.</source> @@ -66953,8 +66953,8 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <translation>Parenthèses non nécessaires.</translation> </message> <message> - <source>== and&nbsp;!= may perform type coercion, use === or&nbsp;!== to avoid it.</source> - <translation>== et&nbsp;!= peuvent provoquer une coercition de type, utilisez === ou&nbsp;!== pour l'éviter.</translation> + <source>== and != may perform type coercion, use === or !== to avoid it.</source> + <translation>== et != peuvent provoquer une coercition de type, utilisez === ou !== pour l'éviter.</translation> </message> <message> <source>Expression statements should be assignments, calls or delete expressions only.</source> @@ -66989,8 +66989,8 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <translation>Type de propriété invalide "%1".</translation> </message> <message> - <source>== and&nbsp;!= perform type coercion, use === or&nbsp;!== to avoid it.</source> - <translation>== et&nbsp;!= provoquent une coercition de type, utilisez === ou&nbsp;!== pour l'éviter.</translation> + <source>== and != perform type coercion, use === or !== to avoid it.</source> + <translation>== et != provoquent une coercition de type, utilisez === ou !== pour l'éviter.</translation> </message> <message> <source>Calls of functions that start with an uppercase letter should use 'new'.</source> @@ -67123,7 +67123,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>&Binary:</source> - <translation>&Binaire&nbsp;:</translation> + <translation>&Binaire :</translation> </message> <message> <source>GDB Server for "%1"</source> @@ -67156,7 +67156,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source><p align="justify">Please choose a valid package name for your application (e.g. "org.example.myapplication").</p><p align="justify">Packages are usually defined using a hierarchical naming pattern, with levels in the hierarchy separated by periods (.) (pronounced "dot").</p><p align="justify">In general, a package name begins with the top level domain name of the organization and then the organization's domain and then any subdomains listed in reverse order. The organization can then choose a specific name for their package. Package names should be all lowercase characters whenever possible.</p><p align="justify">Complete conventions for disambiguating package names and rules for naming packages when the Internet domain name cannot be directly used as a package name are described in section 7.7 of the Java Language Specification.</p></source> - <translation><p align="justify">Veuillez choisir un nom de paquet valide pour votre application (par exemple&nbsp;: "org.exemple.monapplication").</p><p align="justify">Les paquets sont habituellement définis en utilisant un modèle hiérarchique de nommage, avec des niveaux dans la hiérarchie séparés par des points (.) (prononcé "dot").</p><p align="justify">En général, un nom de paquet commance avec le nom du domaine de premier niveau de l'organisation puis le domaine de l'organisation et ensuite les sous-domaines listés dans l'ordre inverse. L'oganisation peut alors choisir un nom spécifique pour leurs paquets. Les noms de paquets doivent être tout en minuscule autant que possible.</p><p align="justify">La convention complète pour les noms de paquets et les règles pour les nommer lorsque le nom de domaine internet ne peut être utilisé directement comme nom de paquet sont décrites dans la section 7.7 de la spécification du langage Java.</p></translation> + <translation><p align="justify">Veuillez choisir un nom de paquet valide pour votre application (par exemple : "org.exemple.monapplication").</p><p align="justify">Les paquets sont habituellement définis en utilisant un modèle hiérarchique de nommage, avec des niveaux dans la hiérarchie séparés par des points (.) (prononcé "dot").</p><p align="justify">En général, un nom de paquet commance avec le nom du domaine de premier niveau de l'organisation puis le domaine de l'organisation et ensuite les sous-domaines listés dans l'ordre inverse. L'oganisation peut alors choisir un nom spécifique pour leurs paquets. Les noms de paquets doivent être tout en minuscule autant que possible.</p><p align="justify">La convention complète pour les noms de paquets et les règles pour les nommer lorsque le nom de domaine internet ne peut être utilisé directement comme nom de paquet sont décrites dans la section 7.7 de la spécification du langage Java.</p></translation> </message> <message> <source><p align="justify">Please choose a valid package name for your application (for example, "org.example.myapplication").</p><p align="justify">Packages are usually defined using a hierarchical naming pattern, with levels in the hierarchy separated by periods (.) (pronounced "dot").</p><p align="justify">In general, a package name begins with the top level domain name of the organization and then the organization's domain and then any subdomains listed in reverse order. The organization can then choose a specific name for their package. Package names should be all lowercase characters whenever possible.</p><p align="justify">Complete conventions for disambiguating package names and rules for naming packages when the Internet domain name cannot be directly used as a package name are described in section 7.7 of the Java Language Specification.</p></source> @@ -67164,7 +67164,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Package name:</source> - <translation>Nom du paquet&nbsp;:</translation> + <translation>Nom du paquet :</translation> </message> <message> <source>The package name is not valid.</source> @@ -67172,11 +67172,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Version code:</source> - <translation>Version du code&nbsp;:</translation> + <translation>Version du code :</translation> </message> <message> <source>Version name:</source> - <translation>Nom de version&nbsp;:</translation> + <translation>Nom de version :</translation> </message> <message> <source>Sets the minimum required version on which this application can be run.</source> @@ -67188,7 +67188,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Minimum required SDK:</source> - <translation>Version du SDK Minimale requise&nbsp;:</translation> + <translation>Version du SDK Minimale requise :</translation> </message> <message> <source>Sets the target SDK. Set this to the highest tested version.This disables compatibility behavior of the system for your application.</source> @@ -67196,7 +67196,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Target SDK:</source> - <translation>SDK cible&nbsp;:</translation> + <translation>SDK cible :</translation> </message> <message> <source>Application</source> @@ -67204,11 +67204,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Application name:</source> - <translation>Nom de l'application&nbsp;:</translation> + <translation>Nom de l'application :</translation> </message> <message> <source>Run:</source> - <translation>Exécution&nbsp;:</translation> + <translation>Exécution :</translation> </message> <message> <source>Select low DPI icon.</source> @@ -67232,15 +67232,15 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>API %1: %2</source> - <translation>API %1&nbsp;: %2</translation> + <translation>API %1 : %2</translation> </message> <message> <source>Could not parse file: '%1'.</source> - <translation>Impossible d'analyser le fichier&nbsp;: "%1".</translation> + <translation>Impossible d'analyser le fichier : "%1".</translation> </message> <message> <source>%2: Could not parse file: '%1'.</source> - <translation>%2&nbsp;: impossible d'analyser le fichier&nbsp;: "%1".</translation> + <translation>%2 : impossible d'analyser le fichier : "%1".</translation> </message> <message> <source>Select low dpi icon</source> @@ -67256,7 +67256,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Application icon:</source> - <translation>Icône de l'application&nbsp;:</translation> + <translation>Icône de l'application :</translation> </message> <message> <source>Permissions</source> @@ -67280,11 +67280,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Could not parse file: '%1'</source> - <translation>Impossible d'analyser le fichier&nbsp;: "%1"</translation> + <translation>Impossible d'analyser le fichier : "%1"</translation> </message> <message> <source>%2: Could not parse file: '%1'</source> - <translation>%2&nbsp;: impossible d'analyser le fichier&nbsp;: "%1"</translation> + <translation>%2 : impossible d'analyser le fichier : "%1"</translation> </message> <message> <source>Goto error</source> @@ -67325,28 +67325,28 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <translation>Mémoire à 0x%1</translation> </message> <message> - <source>Decimal&nbsp;unsigned&nbsp;value:</source> - <translation>Valeur&nbsp;décimale&nbsp;non&nbsp;signée&nbsp;:</translation> + <source>Decimal unsigned value:</source> + <translation>Valeur décimale non signée :</translation> </message> <message> - <source>Decimal&nbsp;signed&nbsp;value:</source> - <translation>Valeur&nbsp;décimale&nbsp;signée&nbsp;:</translation> + <source>Decimal signed value:</source> + <translation>Valeur décimale signée :</translation> </message> <message> - <source>Previous&nbsp;decimal&nbsp;unsigned&nbsp;value:</source> - <translation>Valeur&nbsp;précédente&nbsp;décimale&nbsp;non&nbsp;signée&nbsp;:</translation> + <source>Previous decimal unsigned value:</source> + <translation>Valeur précédente décimale non signée :</translation> </message> <message> - <source>Previous&nbsp;decimal&nbsp;signed&nbsp;value:</source> - <translation>Valeur&nbsp;précédente&nbsp;décimale&nbsp;signée&nbsp;:</translation> + <source>Previous decimal signed value:</source> + <translation>Valeur précédente décimale signée :</translation> </message> <message> - <source>%1-bit&nbsp;Integer&nbsp;Type</source> - <translation>Type&nbsp;d'entier&nbsp;sur&nbsp;%1&nbsp;bits</translation> + <source>%1-bit Integer Type</source> + <translation>Type d'entier sur %1 bits</translation> </message> <message> <source>Little Endian</source> - <translatorcomment>remettre endian&nbsp;?</translatorcomment> + <translatorcomment>remettre endian ?</translatorcomment> <translation>Petit boutiste</translation> </message> <message> @@ -67354,36 +67354,36 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <translation>Grand boutiste</translation> </message> <message> - <source>Binary&nbsp;value:</source> - <translation>Valeur&nbsp;binaire&nbsp;:</translation> + <source>Binary value:</source> + <translation>Valeur binaire :</translation> </message> <message> - <source>Octal&nbsp;value:</source> - <translation>Valeur&nbsp;octale&nbsp;:</translation> + <source>Octal value:</source> + <translation>Valeur octale :</translation> </message> <message> - <source>Previous&nbsp;binary&nbsp;value:</source> - <translation>Valeur&nbsp;binaire&nbsp;précédente&nbsp;:</translation> + <source>Previous binary value:</source> + <translation>Valeur binaire précédente :</translation> </message> <message> - <source>Previous&nbsp;octal&nbsp;value:</source> - <translation>Valeur&nbsp;octale&nbsp;précédente&nbsp;:</translation> + <source>Previous octal value:</source> + <translation>Valeur octale précédente :</translation> </message> <message> - <source><i>double</i>&nbsp;value:</source> - <translation>Valeur&nbsp;<i>double</i>&nbsp;:</translation> + <source><i>double</i> value:</source> + <translation>Valeur <i>double</i> :</translation> </message> <message> - <source>Previous <i>double</i>&nbsp;value:</source> - <translation>Valeur&nbsp;<i>double</i>&nbsp;précédente&nbsp;:</translation> + <source>Previous <i>double</i> value:</source> + <translation>Valeur <i>double</i> précédente :</translation> </message> <message> - <source><i>float</i>&nbsp;value:</source> - <translation>Valeur&nbsp;<i>float</i>&nbsp;:</translation> + <source><i>float</i> value:</source> + <translation>Valeur <i>float</i> :</translation> </message> <message> - <source>Previous <i>float</i>&nbsp;value:</source> - <translation>Valeur&nbsp;<i>float</i>&nbsp;précédente&nbsp;:</translation> + <source>Previous <i>float</i> value:</source> + <translation>Valeur <i>float</i> précédente :</translation> </message> <message> <source>Copying Failed</source> @@ -67430,7 +67430,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Note text:</source> - <translation>Note&nbsp;:</translation> + <translation>Note :</translation> </message> </context> <context> @@ -67505,19 +67505,19 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <name>Core::VariableManager</name> <message> <source>%1: Full path including file name.</source> - <translation>%1&nbsp;: chemin complet incluant le nom du fichier.</translation> + <translation>%1 : chemin complet incluant le nom du fichier.</translation> </message> <message> <source>%1: Full path excluding file name.</source> - <translation>%1&nbsp;: chemin complet sans le nom du fichier.</translation> + <translation>%1 : chemin complet sans le nom du fichier.</translation> </message> <message> <source>%1: File name without path.</source> - <translation>%1&nbsp;: nom du fichier sans le chemin.</translation> + <translation>%1 : nom du fichier sans le chemin.</translation> </message> <message> <source>%1: File base name without path and suffix.</source> - <translation>%1&nbsp;: nom du fichier sans le chemin, ni le suffixe.</translation> + <translation>%1 : nom du fichier sans le chemin, ni le suffixe.</translation> </message> </context> <context> @@ -67665,7 +67665,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>&Functions to insert:</source> - <translation>&Fonctions à insérer&nbsp;:</translation> + <translation>&Fonctions à insérer :</translation> </message> <message> <source>&Hide already implemented functions of current class</source> @@ -67673,7 +67673,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>&Insertion options:</source> - <translation>Options d'&insertion&nbsp;:</translation> + <translation>Options d'&insertion :</translation> </message> <message> <source>Insert only declarations</source> @@ -67815,7 +67815,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Maximum stack depth:</source> - <translation>Profondeur maximale de la pile&nbsp;:</translation> + <translation>Profondeur maximale de la pile :</translation> </message> <message> <source><unlimited></source> @@ -67823,7 +67823,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Maximum string length:</source> - <translation>Longueur maximum de la chaîne de caractères&nbsp;:</translation> + <translation>Longueur maximum de la chaîne de caractères :</translation> </message> </context> <context> @@ -67844,11 +67844,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <name>ImageViewer</name> <message> <source>Color at %1,%2: red: %3 green: %4 blue: %5 alpha: %6</source> - <translation>Couleur à la position %1,%2&nbsp;: rouge&nbsp;: %3 vert&nbsp;: %4 bleu&nbsp;: %5 alpha&nbsp;: %6</translation> + <translation>Couleur à la position %1,%2 : rouge : %3 vert : %4 bleu : %5 alpha : %6</translation> </message> <message> <source>Size: %1x%2, %3 byte, format: %4, depth: %5</source> - <translation>Taille&nbsp;: %1x%2, %3 octet, format&nbsp;: %4, profondeur&nbsp;: %5</translation> + <translation>Taille : %1x%2, %3 octet, format : %4, profondeur : %5</translation> </message> <message> <source><Click to display color></source> @@ -67868,11 +67868,11 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <message> <source>Unable to start lldb '%1': %2</source> <translatorcomment>LLDB au lieu de lldb, comme sur le site http://lldb.llvm.org/</translatorcomment> - <translation>Impossible de démarrer LLDB "%1"&nbsp;: %2</translation> + <translation>Impossible de démarrer LLDB "%1" : %2</translation> </message> <message> <source>Unable to start LLDB "%1": %2</source> - <translation>Impossible de démarrer LLDB "%1"&nbsp;: %2</translation> + <translation>Impossible de démarrer LLDB "%1" : %2</translation> </message> <message> <source>Adapter start failed.</source> @@ -67959,7 +67959,7 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra </message> <message> <source>Context Lines:</source> - <translation>Lignes contextuelles&nbsp;:</translation> + <translation>Lignes contextuelles :</translation> </message> <message> <source>Synchronize Horizontal Scroll Bars</source> @@ -68068,15 +68068,15 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <name>Git::Internal::LogChangeDialog</name> <message> <source>Reset to:</source> - <translation>Réinitaliser à &nbsp;:</translation> + <translation>Réinitaliser à :</translation> </message> <message> <source>Select change:</source> - <translation>Sélectionner la modification&nbsp;:</translation> + <translation>Sélectionner la modification :</translation> </message> <message> <source>Reset type:</source> - <translation>Réinitialiser le type&nbsp;:</translation> + <translation>Réinitialiser le type :</translation> </message> <message> <source>Mixed</source> @@ -68142,8 +68142,8 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra Local: %3 Remote: %4</source> <translation>%1 conflit de fusion pour "%2" -Local&nbsp;: %3 -Distant&nbsp;: %4</translation> +Local : %3 +Distant : %4</translation> </message> <message> <source>&Local</source> @@ -68171,7 +68171,7 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Continue merging other unresolved paths?</source> - <translation>Continuer la fusion pour les autres chemins non résolus&nbsp;?</translation> + <translation>Continuer la fusion pour les autres chemins non résolus ?</translation> </message> <message> <source>Merge tool process finished successully.</source> @@ -68227,35 +68227,35 @@ Distant&nbsp;: %4</translation> </message> <message> <source>&Compiler path:</source> - <translation>Chemin du &compilateur&nbsp;:</translation> + <translation>Chemin du &compilateur :</translation> </message> <message> <source>&Make path:</source> - <translation>Chemin de &make&nbsp;:</translation> + <translation>Chemin de &make :</translation> </message> <message> <source>&ABI:</source> - <translation>&ABI&nbsp;:</translation> + <translation>&ABI :</translation> </message> <message> <source>&Predefined macros:</source> - <translation>Macros &prédéfinies&nbsp;:</translation> + <translation>Macros &prédéfinies :</translation> </message> <message> <source>&Header paths:</source> - <translation>Chemins des &en-têtes&nbsp;:</translation> + <translation>Chemins des &en-têtes :</translation> </message> <message> <source>C++11 &flags:</source> - <translation>&Flags C++11&nbsp;:</translation> + <translation>&Flags C++11 :</translation> </message> <message> <source>&Qt mkspecs:</source> - <translation>mkspecs de &Qt&nbsp;:</translation> + <translation>mkspecs de &Qt :</translation> </message> <message> <source>&Error parser:</source> - <translation>&Erreur d'analyse syntaxique&nbsp;:</translation> + <translation>&Erreur d'analyse syntaxique :</translation> </message> </context> <context> @@ -68270,7 +68270,7 @@ Distant&nbsp;: %4</translation> </message> <message> <source>There is no device set up for this kit. Do you want to add a device?</source> - <translation>Il n'y a pas de périphérique configuré pour ce kit. Souhaitez-vous ajouter un périphérique&nbsp;?</translation> + <translation>Il n'y a pas de périphérique configuré pour ce kit. Souhaitez-vous ajouter un périphérique ?</translation> </message> <message> <source>Check for a configured device</source> @@ -68288,7 +68288,7 @@ Distant&nbsp;: %4</translation> <name>ProjectExplorer::EnvironmentAspectWidget</name> <message> <source>Base environment for this run configuration:</source> - <translation>Environnement de base pour cette configuration d'exécution&nbsp;:</translation> + <translation>Environnement de base pour cette configuration d'exécution :</translation> </message> </context> <context> @@ -68404,7 +68404,7 @@ Distant&nbsp;: %4</translation> </message> <message> <source>New configuration name:</source> - <translation>Nom de la nouvelle configuration&nbsp;:</translation> + <translation>Nom de la nouvelle configuration :</translation> </message> <message> <source>%1 Debug</source> @@ -68435,7 +68435,7 @@ Distant&nbsp;: %4</translation> <name>QbsProjectManager::Internal::QbsBuildConfigurationWidget</name> <message> <source>Build directory:</source> - <translation>Répertoire de compilation&nbsp;:</translation> + <translation>Répertoire de compilation :</translation> </message> </context> <context> @@ -68505,7 +68505,7 @@ Distant&nbsp;: %4</translation> <name>QbsProjectManager::QbsManager</name> <message> <source>Failed opening project '%1': Project is not a file</source> - <translation>Échec de l'ouverture du projet "%1"&nbsp;: le projet n'est pas un fichier</translation> + <translation>Échec de l'ouverture du projet "%1" : le projet n'est pas un fichier</translation> </message> </context> <context> @@ -68573,11 +68573,11 @@ Distant&nbsp;: %4</translation> <name>QbsProjectManager::Internal::QbsRunConfigurationWidget</name> <message> <source>Executable:</source> - <translation>Exécutable&nbsp;:</translation> + <translation>Exécutable :</translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Select Working Directory</source> @@ -68589,7 +68589,7 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Run in terminal</source> @@ -68620,15 +68620,15 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Select Parent: %1</source> - <translation>Sélectionner parent&nbsp;: %1</translation> + <translation>Sélectionner parent : %1</translation> </message> <message> <source>Select: %1</source> - <translation>Sélectionner&nbsp;: %1</translation> + <translation>Sélectionner : %1</translation> </message> <message> <source>Deselect: </source> - <translation>Déselectionner&nbsp;:</translation> + <translation>Déselectionner :</translation> </message> <message> <source>Cut</source> @@ -68756,7 +68756,7 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Select parent: %1</source> - <translation>Sélectionner le parent&nbsp;: %1</translation> + <translation>Sélectionner le parent : %1</translation> </message> </context> <context> @@ -68779,31 +68779,31 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Added imports:</source> - <translation>Imports ajoutés&nbsp;:</translation> + <translation>Imports ajoutés :</translation> </message> <message> <source>Removed imports:</source> - <translation>Imports retirés&nbsp;:</translation> + <translation>Imports retirés :</translation> </message> <message> <source>Imports changed:</source> - <translation>Imports modifiés&nbsp;:</translation> + <translation>Imports modifiés :</translation> </message> <message> <source>Node created:</source> - <translation>NÅ“ud créé&nbsp;:</translation> + <translation>NÅ“ud créé :</translation> </message> <message> <source>Node removed:</source> - <translation>NÅ“ud supprimé&nbsp;:</translation> + <translation>NÅ“ud supprimé :</translation> </message> <message> <source>New parent property:</source> - <translation>Nouvelle propriété du parent&nbsp;:</translation> + <translation>Nouvelle propriété du parent :</translation> </message> <message> <source>Old parent property:</source> - <translation>Ancienne propriété du parent&nbsp;:</translation> + <translation>Ancienne propriété du parent :</translation> </message> <message> <source>PropertyChangeFlag</source> @@ -68812,47 +68812,47 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Node reparanted:</source> - <translation>NÅ“ud reparenté&nbsp;:</translation> + <translation>NÅ“ud reparenté :</translation> </message> <message> <source>New Id:</source> - <translation>Nouvel identifiant&nbsp;:</translation> + <translation>Nouvel identifiant :</translation> </message> <message> <source>Old Id:</source> - <translation>Ancien identifiant&nbsp;:</translation> + <translation>Ancien identifiant :</translation> </message> <message> <source>New Id: </source> - <translation>Nouvel identifiant&nbsp;:</translation> + <translation>Nouvel identifiant :</translation> </message> <message> <source>Old Id: </source> - <translation>Ancien identifiant&nbsp;:</translation> + <translation>Ancien identifiant :</translation> </message> <message> <source>Node id changed:</source> - <translation>Identifiant du nÅ“ud modifié&nbsp;:</translation> + <translation>Identifiant du nÅ“ud modifié :</translation> </message> <message> <source>VariantProperties changed:</source> - <translation>VariantProperties modifiée&nbsp;:</translation> + <translation>VariantProperties modifiée :</translation> </message> <message> <source>BindingProperties changed:</source> - <translation>BindingProperties modifiée&nbsp;:</translation> + <translation>BindingProperties modifiée :</translation> </message> <message> <source>SignalHandlerProperties changed:</source> - <translation>SignalHandlerProperties modifiée&nbsp;:</translation> + <translation>SignalHandlerProperties modifiée :</translation> </message> <message> <source>Properties removed:</source> - <translation>Propriétés supprimées&nbsp;:</translation> + <translation>Propriétés supprimées :</translation> </message> <message> <source>Auxiliary Data Changed:</source> - <translation>Donnée auxiliaire modifiée&nbsp;:</translation> + <translation>Donnée auxiliaire modifiée :</translation> </message> <message> <source>Begin rewriter transaction</source> @@ -68876,11 +68876,11 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Custom Notification:</source> - <translation>Notification personnalisée&nbsp;:</translation> + <translation>Notification personnalisée :</translation> </message> <message> <source>Node Source Changed:</source> - <translation>NÅ“ud source modifié&nbsp;:</translation> + <translation>NÅ“ud source modifié :</translation> </message> </context> <context> @@ -69335,7 +69335,7 @@ Distant&nbsp;: %4</translation> </message> <message> <source><html><head/><body><p>Allows this app to use the Push Service with the BlackBerry Internet Service. This access allows the app to receive and request push messages. To use the Push Service with the BlackBerry Internet Service, you must register with BlackBerry. When you register, you receive a confirmation email message that contains information that your application needs to receive and request push messages. For more information about registering, visit https://developer.blackberry.com/services/push/. If you're using the Push Service with the BlackBerry Enterprise Server or the BlackBerry Device Service, you don't need to register with BlackBerry.</p></body></html></source> - <translatorcomment>email&nbsp;!!!!!!!</translatorcomment> + <translatorcomment>email !!!!!!!</translatorcomment> <translation><html><head/><body><p>Permet à cette application d'utiliser le service Push avec le service Internet BlackBerry. Cet accès permet à l'application de recevoir et envoyer des messages push. Pour utiliser le service Push avec le service Internet BlackBerry, vous devez être enregistré auprès de BlackBerry. Lors de votre inscription, vous recevrez un courriel de confirmation qui contient les informations que votre application à besoin pour recevoir et envoyer des messages push. Pour plus d'information sur l'enregistrement, allez sur la page https://developer.blackberry.com/services/push/. Si vous utilisez le service Push avec BlackBerry Enterprise Server ou BlackBerry Device Service, vous n'avez pas besoin de vous inscrire auprès de BlackBerry.</p></body></html></translation> </message> <message> @@ -69411,7 +69411,7 @@ Distant&nbsp;: %4</translation> <name>Qnx::Internal::BlackBerryConfiguration</name> <message> <source>The following errors occurred while setting up BB10 Configuration:</source> - <translation>Les erreurs suivantes sont apparues pendant la configuration de BB10&nbsp;:</translation> + <translation>Les erreurs suivantes sont apparues pendant la configuration de BB10 :</translation> </message> <message> <source>Qt %1 for %2</source> @@ -69427,7 +69427,7 @@ Distant&nbsp;: %4</translation> </message> <message> <source>The following errors occurred while activating target: %1</source> - <translation>Les erreurs suivantes sont apparues pendant l'activation de la cible&nbsp;: %1</translation> + <translation>Les erreurs suivantes sont apparues pendant l'activation de la cible : %1</translation> </message> <message> <source>- No Qt version found.</source> @@ -69525,7 +69525,7 @@ Distant&nbsp;: %4</translation> <name>Qnx::Internal::BlackBerryDeviceConnection</name> <message> <source>Error connecting to device: java could not be found in the environment.</source> - <translation>Erreur lors de la connexion au périphérique&nbsp;: Java n'a pas pu être trouvé dans l'environnement.</translation> + <translation>Erreur lors de la connexion au périphérique : Java n'a pas pu être trouvé dans l'environnement.</translation> </message> </context> <context> @@ -69597,11 +69597,11 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Failed to request debug token: </source> - <translation>Échec de la requête du jeton de débogage&nbsp;:</translation> + <translation>Échec de la requête du jeton de débogage :</translation> </message> <message> <source>Failed to request debug token:</source> - <translation>Échec de la requête du jeton de débogage&nbsp;:</translation> + <translation>Échec de la requête du jeton de débogage :</translation> </message> <message> <source>Wrong CSK password.</source> @@ -69641,11 +69641,11 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Failed to upload debug token:</source> - <translation>Échec de l'envoi du jeton de débogage&nbsp;:</translation> + <translation>Échec de l'envoi du jeton de débogage :</translation> </message> <message> <source>Failed to upload debug token: </source> - <translation>Échec de l'envoi du jeton de débogage&nbsp;:</translation> + <translation>Échec de l'envoi du jeton de débogage :</translation> </message> <message> <source>No route to host.</source> @@ -69673,15 +69673,15 @@ Distant&nbsp;: %4</translation> </message> <message> <source>Failed to create directory: '%1'.</source> - <translation>Échec dans la création du répertoire&nbsp;: "%1".</translation> + <translation>Échec dans la création du répertoire : "%1".</translation> </message> <message> <source>Private key file already exists: '%1'</source> - <translation>Le fichier de clés privées existe déjà &nbsp;: "%1"</translation> + <translation>Le fichier de clés privées existe déjà : "%1"</translation> </message> <message> <source>Public key file already exists: '%1'</source> - <translation>Le fichier de clés publiques existe déjà &nbsp;: "%1"</translation> + <translation>Le fichier de clés publiques existe déjà : "%1"</translation> </message> </context> <context> @@ -69729,7 +69729,7 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un </message> <message> <source>Initial setup failed: %1</source> - <translation>Échec de la configuration initialiale&nbsp;: %1</translation> + <translation>Échec de la configuration initialiale : %1</translation> </message> </context> <context> @@ -69761,7 +69761,7 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un <message> <source>SSH connection error: %1 </source> - <translation>Erreur de connexion SSH&nbsp;: %1</translation> + <translation>Erreur de connexion SSH : %1</translation> </message> <message> <source>%1 found.</source> @@ -69777,7 +69777,7 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un </message> <message> <source>SSH connection error: %1</source> - <translation>Erreur de connexion SSH&nbsp;: %1</translation> + <translation>Erreur de connexion SSH : %1</translation> </message> <message> <source>Checking for %1...</source> @@ -69821,7 +69821,7 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un <name>QtSupport::QtVersionFactory</name> <message> <source>No factory found for qmake: '%1'</source> - <translation>Aucune fabrique trouvée pour qmake&nbsp;: "%1"</translation> + <translation>Aucune fabrique trouvée pour qmake : "%1"</translation> </message> </context> <context> @@ -69849,7 +69849,7 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un </message> <message> <source>Initial setup failed: %1</source> - <translation>Échec lors de la configuration initiale&nbsp;: %1</translation> + <translation>Échec lors de la configuration initiale : %1</translation> </message> </context> <context> @@ -69890,7 +69890,7 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un </message> <message> <source>Fetching environment failed: %1</source> - <translation>Échec lors de la récupération de l'environnement&nbsp;: %1</translation> + <translation>Échec lors de la récupération de l'environnement : %1</translation> </message> </context> <context> @@ -69923,15 +69923,15 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un </message> <message> <source>Target API:</source> - <translation>API cible&nbsp;:</translation> + <translation>API cible :</translation> </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>SD card size:</source> - <translation>Taille de la carte SD&nbsp;:</translation> + <translation>Taille de la carte SD :</translation> </message> <message> <source> MiB</source> @@ -69939,7 +69939,7 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un </message> <message> <source>ABI:</source> - <translation>ABI&nbsp;:</translation> + <translation>ABI :</translation> </message> </context> <context> @@ -69954,7 +69954,7 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un </message> <message> <source>Keystore:</source> - <translation>Trousseau de clés&nbsp;:</translation> + <translation>Trousseau de clés :</translation> </message> <message> <source>Create</source> @@ -69970,7 +69970,7 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un </message> <message> <source>Certificate alias:</source> - <translation>Alias de certificat&nbsp;:</translation> + <translation>Alias de certificat :</translation> </message> <message> <source>Advanced Actions</source> @@ -70006,11 +70006,11 @@ Cet assistant vous guidera à travers les étapes essentielles pour déployez un </message> <message> <source>Android target SDK:</source> - <translation>SDK Android cible&nbsp;:</translation> + <translation>SDK Android cible :</translation> </message> <message> <source>Input file for androiddeployqt:</source> - <translation>Fichier d'entrée pour androiddeployqt&nbsp;:</translation> + <translation>Fichier d'entrée pour androiddeployqt :</translation> </message> <message> <source>Qt no longer uses the folder "android" in the project's source directory.</source> @@ -70091,7 +70091,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>ABI:</source> - <translation>ABI&nbsp;:</translation> + <translation>ABI :</translation> </message> <message> <source>Compatible devices</source> @@ -70103,11 +70103,11 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>ABI is incompatible, device supports ABIs: %1.</source> - <translation>L'ABI est incompatible, le périphérique supporte les ABI&nbsp;: %1.</translation> + <translation>L'ABI est incompatible, le périphérique supporte les ABI : %1.</translation> </message> <message> <source>API Level of device is: %1.</source> - <translation>Le niveau de l'API pour le périphérique est&nbsp;: %1.</translation> + <translation>Le niveau de l'API pour le périphérique est : %1.</translation> </message> <message> <source>Incompatible devices</source> @@ -70122,15 +70122,15 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>GDB host:</source> - <translation>Hôte GDB&nbsp;:</translation> + <translation>Hôte GDB :</translation> </message> <message> <source>GDB port:</source> - <translation>Port GDB&nbsp;:</translation> + <translation>Port GDB :</translation> </message> <message> <source>GDB commands:</source> - <translation>Commandes GDB&nbsp;:</translation> + <translation>Commandes GDB :</translation> </message> </context> <context> @@ -70141,7 +70141,7 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>localhost</source> @@ -70149,15 +70149,15 @@ Le fichier APL ne sera pas utilisable sur d'autres périphériques.</transl </message> <message> <source>GDB port:</source> - <translation>Port GDB&nbsp;:</translation> + <translation>Port GDB :</translation> </message> <message> <source>GDB host:</source> - <translation>Hôte GDB&nbsp;:</translation> + <translation>Hôte GDB :</translation> </message> <message> <source>GDB commands:</source> - <translation>Commandes GDB&nbsp;:</translation> + <translation>Commandes GDB :</translation> </message> <message> <source>load @@ -70189,11 +70189,11 @@ réinitialisation du moniteur</translation> </message> <message> <source>Project:</source> - <translation>Projet&nbsp;:</translation> + <translation>Projet :</translation> </message> <message> <source>Additional C++ Preprocessor Directives for %1:</source> - <translation>Directives supplémentaires pour le préprocesseur C++ pour %1&nbsp;:</translation> + <translation>Directives supplémentaires pour le préprocesseur C++ pour %1 :</translation> </message> </context> <context> @@ -70239,7 +70239,7 @@ réinitialisation du moniteur</translation> <name>Ios::Internal::IosBuildStep</name> <message> <source>Base arguments:</source> - <translation>Arguments de base&nbsp;:</translation> + <translation>Arguments de base :</translation> </message> <message> <source>Reset Defaults</source> @@ -70247,7 +70247,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Extra arguments:</source> - <translation>Arguments supplémentaires&nbsp;:</translation> + <translation>Arguments supplémentaires :</translation> </message> <message> <source>xcodebuild</source> @@ -70277,11 +70277,11 @@ réinitialisation du moniteur</translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Executable:</source> - <translation>Exécutable&nbsp;:</translation> + <translation>Exécutable :</translation> </message> </context> <context> @@ -70303,7 +70303,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>&Error message capture pattern:</source> - <translation>&Motif de capture des messages d'erreur&nbsp;:</translation> + <translation>&Motif de capture des messages d'erreur :</translation> </message> <message> <source>#error (.*):(\d+): (.*)$</source> @@ -70315,15 +70315,15 @@ réinitialisation du moniteur</translation> </message> <message> <source>&File name:</source> - <translation>Nom de &fichier&nbsp;:</translation> + <translation>Nom de &fichier :</translation> </message> <message> <source>&Line number:</source> - <translation>Numéro de &ligne&nbsp;:</translation> + <translation>Numéro de &ligne :</translation> </message> <message> <source>&Message:</source> - <translation>&Message&nbsp;:</translation> + <translation>&Message :</translation> </message> <message> <source>Test</source> @@ -70331,7 +70331,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>E&rror message:</source> - <translation>&Message d'erreur&nbsp;:</translation> + <translation>&Message d'erreur :</translation> </message> <message> <source>#error /home/user/src/test.c:891: Unknown identifier `test`</source> @@ -70339,7 +70339,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>File name:</source> - <translation>Nom du fichier&nbsp;:</translation> + <translation>Nom du fichier :</translation> </message> <message> <source>TextLabel</source> @@ -70347,15 +70347,15 @@ réinitialisation du moniteur</translation> </message> <message> <source>Line number:</source> - <translation>Numéro de ligne&nbsp;:</translation> + <translation>Numéro de ligne :</translation> </message> <message> <source>Message:</source> - <translation>Message&nbsp;:</translation> + <translation>Message :</translation> </message> <message> <source>Not applicable:</source> - <translation>Non applicable&nbsp;:</translation> + <translation>Non applicable :</translation> </message> <message> <source>Pattern is empty.</source> @@ -70393,7 +70393,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Add tab:</source> - <translation>Ajouter un onglet&nbsp;:</translation> + <translation>Ajouter un onglet :</translation> </message> </context> <context> @@ -70408,7 +70408,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Location:</source> - <translation>Emplacement&nbsp;:</translation> + <translation>Emplacement :</translation> </message> <message> <source>Generate</source> @@ -70420,15 +70420,15 @@ réinitialisation du moniteur</translation> </message> <message> <source>Type:</source> - <translation>Type&nbsp;:</translation> + <translation>Type :</translation> </message> <message> <source>Host name or IP address:</source> - <translation>Nom de l'hôte ou adresse IP&nbsp;:</translation> + <translation>Nom de l'hôte ou adresse IP :</translation> </message> <message> <source>Configuration name:</source> - <translation>Nom de la configuration&nbsp;:</translation> + <translation>Nom de la configuration :</translation> </message> <message> <source>Configuration</source> @@ -70459,11 +70459,11 @@ réinitialisation du moniteur</translation> </message> <message> <source>Failed generating SSH key needed for securing connection to a device. Error:</source> - <translation>Échec de la génération de la clé SSH, nécessaire pour la sécurité de la connexion à un périphérique. Erreur&nbsp;:</translation> + <translation>Échec de la génération de la clé SSH, nécessaire pour la sécurité de la connexion à un périphérique. Erreur :</translation> </message> <message> <source>Failed saving SSH key needed for securing connection to a device. Error:</source> - <translation>Échec de l'enregistrement de la clé SSH, nécessaire pour la sécurité de la connexion à un périphérique. Erreur&nbsp;:</translation> + <translation>Échec de l'enregistrement de la clé SSH, nécessaire pour la sécurité de la connexion à un périphérique. Erreur :</translation> </message> <message> <source>Device information retrieved successfully.</source> @@ -70478,7 +70478,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Select Native SDK path:</source> - <translation>Sélectionner le chemin du SDK natif&nbsp;:</translation> + <translation>Sélectionner le chemin du SDK natif :</translation> </message> <message> <source>Native SDK</source> @@ -70509,11 +70509,11 @@ réinitialisation du moniteur</translation> </message> <message> <source>Uninstalling target:</source> - <translation>Cible de la désinstallation&nbsp;:</translation> + <translation>Cible de la désinstallation :</translation> </message> <message> <source>Installing target:</source> - <translation>Cible de l'installation&nbsp;:</translation> + <translation>Cible de l'installation :</translation> </message> </context> <context> @@ -70524,7 +70524,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Please select target:</source> - <translation>Veuillez sélectionner une cible&nbsp;:</translation> + <translation>Veuillez sélectionner une cible :</translation> </message> <message> <source>Target</source> @@ -70547,15 +70547,15 @@ réinitialisation du moniteur</translation> </message> <message> <source>Author:</source> - <translation>Auteur&nbsp;:</translation> + <translation>Auteur :</translation> </message> <message> <source>Password:</source> - <translation>Mot de passe&nbsp;:</translation> + <translation>Mot de passe :</translation> </message> <message> <source>Confirm password:</source> - <translation>Confirmer le mot de passe&nbsp;:</translation> + <translation>Confirmer le mot de passe :</translation> </message> <message> <source>Show password</source> @@ -70582,7 +70582,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Project path:</source> - <translation>Chemin du projet&nbsp;:</translation> + <translation>Chemin du projet :</translation> </message> </context> <context> @@ -70601,7 +70601,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Run update check daily at:</source> - <translation>Lancer la recheche quotidienne de mise à jour à &nbsp;:</translation> + <translation>Lancer la recheche quotidienne de mise à jour à :</translation> </message> </context> <context> @@ -70878,7 +70878,7 @@ réinitialisation du moniteur</translation> <name>SideBar</name> <message> <source>New to Qt?</source> - <translation>Nouveau sur Qt&nbsp;?</translation> + <translation>Nouveau sur Qt ?</translation> </message> <message> <source>Learn how to develop your own applications and explore Qt Creator.</source> @@ -70925,7 +70925,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Warning: Signing a debug package.</source> - <translation>Avertissement&nbsp;: authentification d'un paquet Debug.</translation> + <translation>Avertissement : authentification d'un paquet Debug.</translation> </message> <message> <source>Pulling files necessary for debugging.</source> @@ -70933,23 +70933,23 @@ réinitialisation du moniteur</translation> </message> <message> <source>Package deploy: Running command '%1 %2'.</source> - <translation>Déployement de paquet&nbsp;: exécution de la commande "%1 %2".</translation> + <translation>Déployement de paquet : exécution de la commande "%1 %2".</translation> </message> <message> <source>Packaging error: Could not start command '%1 %2'. Reason: %3</source> - <translation>Erreur de paquetage&nbsp;: impossible de lancer la commande "%1 %2". Raison&nbsp;: %3</translation> + <translation>Erreur de paquetage : impossible de lancer la commande "%1 %2". Raison : %3</translation> </message> <message> <source>Packaging Error: Command '%1 %2' failed.</source> - <translation>Erreur de paquetage&nbsp;: la commande "%1 %2" a échoué.</translation> + <translation>Erreur de paquetage : la commande "%1 %2" a échoué.</translation> </message> <message> <source>Reason: %1</source> - <translation>Raison&nbsp;: %1</translation> + <translation>Raison : %1</translation> </message> <message> <source>Exit code: %1</source> - <translation>Code de sortie&nbsp;: %1</translation> + <translation>Code de sortie : %1</translation> </message> <message> <source>Error</source> @@ -70969,7 +70969,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Keystore password:</source> - <translation>Mot de passe du trousseau de clés&nbsp;:</translation> + <translation>Mot de passe du trousseau de clés :</translation> </message> <message> <source>Certificate</source> @@ -70977,7 +70977,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Certificate password (%1):</source> - <translation>Mot de passe du certificat (%1)&nbsp;:</translation> + <translation>Mot de passe du certificat (%1) :</translation> </message> </context> <context> @@ -71015,43 +71015,43 @@ réinitialisation du moniteur</translation> <name>Android::Internal::AndroidErrorMessage</name> <message> <source>Android: SDK installation error 0x%1</source> - <translation>Android&nbsp;: erreur d'installation du SDK 0x%1</translation> + <translation>Android : erreur d'installation du SDK 0x%1</translation> </message> <message> <source>Android: NDK installation error 0x%1</source> - <translation>Android&nbsp;: erreur d'installation du NDK 0x%1</translation> + <translation>Android : erreur d'installation du NDK 0x%1</translation> </message> <message> <source>Android: Java installation error 0x%1</source> - <translation>Android&nbsp;: erreur d'installation de Java 0x%1</translation> + <translation>Android : erreur d'installation de Java 0x%1</translation> </message> <message> <source>Android: ant installation error 0x%1</source> - <translation>Android&nbsp;: erreur d'installation de ant 0x%1</translation> + <translation>Android : erreur d'installation de ant 0x%1</translation> </message> <message> <source>Android: adb installation error 0x%1</source> - <translation>Android&nbsp;: erreur d'installation de adb 0x%1</translation> + <translation>Android : erreur d'installation de adb 0x%1</translation> </message> <message> <source>Android: Device connection error 0x%1</source> - <translation>Android&nbsp;: erreur de connexion du périphérique 0x%1</translation> + <translation>Android : erreur de connexion du périphérique 0x%1</translation> </message> <message> <source>Android: Device permission error 0x%1</source> - <translation>Android&nbsp;: erreur de permission du périphérique 0x%1</translation> + <translation>Android : erreur de permission du périphérique 0x%1</translation> </message> <message> <source>Android: Device authorization error 0x%1</source> - <translation>Android&nbsp;: Erreur d'autorisation du périphérique 0x%1</translation> + <translation>Android : Erreur d'autorisation du périphérique 0x%1</translation> </message> <message> <source>Android: Device API level not supported: error 0x%1</source> - <translation>Android&nbsp;: le niveau d'API du périphérique n'est pas supporté&nbsp;: erreur 0x%1</translation> + <translation>Android : le niveau d'API du périphérique n'est pas supporté : erreur 0x%1</translation> </message> <message> <source>Android: Unknown error 0x%1</source> - <translation>Android&nbsp;: errreur inconnue 0x%1</translation> + <translation>Android : errreur inconnue 0x%1</translation> </message> </context> <context> @@ -71095,7 +71095,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>.pro file:</source> - <translation>Fichier .pro&nbsp;:</translation> + <translation>Fichier .pro :</translation> </message> <message> <source>Select a .pro File</source> @@ -71106,7 +71106,7 @@ réinitialisation du moniteur</translation> <name>Android::Internal::ChooseDirectoryPage</name> <message> <source>Android package source directory:</source> - <translation>Répertoire des sources du paquet Android&nbsp;:</translation> + <translation>Répertoire des sources du paquet Android :</translation> </message> <message> <source>Select the Android package source directory. The files in the Android package source directory are copied to the build directory's Android directory and the default files are overwritten.</source> @@ -71129,7 +71129,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Overwrite existing AndroidManifest.xml?</source> - <translation>Remplacer le fichier existant AndroidManifest.xml&nbsp;?</translation> + <translation>Remplacer le fichier existant AndroidManifest.xml ?</translation> </message> <message> <source>File Removal Error</source> @@ -71192,7 +71192,7 @@ réinitialisation du moniteur</translation> <name>BareMetal::Internal::BareMetalGdbCommandsDeployStepWidget</name> <message> <source>GDB commands:</source> - <translation>Commandes GDB&nbsp;:</translation> + <translation>Commandes GDB :</translation> </message> </context> <context> @@ -71225,11 +71225,11 @@ réinitialisation du moniteur</translation> <name>BareMetal::BareMetalRunConfigurationWidget</name> <message> <source>Executable:</source> - <translation>Exécutable&nbsp;:</translation> + <translation>Exécutable :</translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source><default></source> @@ -71237,7 +71237,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Unknown</source> @@ -71248,7 +71248,7 @@ réinitialisation du moniteur</translation> <name>BareMetal::Internal::BareMetalRunControlFactory</name> <message> <source>Cannot debug: Kit has no device.</source> - <translation>Impossible de déboguer&nbsp;: le kit n'a pas de périphérique.</translation> + <translation>Impossible de déboguer : le kit n'a pas de périphérique.</translation> </message> </context> <context> @@ -71394,15 +71394,15 @@ réinitialisation du moniteur</translation> <name>Debugger::Internal::DebuggerItemConfigWidget</name> <message> <source>Name:</source> - <translation>Nom&nbsp;:</translation> + <translation>Nom :</translation> </message> <message> <source>Path:</source> - <translation>Chemin&nbsp;:</translation> + <translation>Chemin :</translation> </message> <message> <source>ABIs:</source> - <translation>ABI&nbsp;:</translation> + <translation>ABI :</translation> </message> <message> <source>64-bit version</source> @@ -71449,11 +71449,11 @@ réinitialisation du moniteur</translation> <name>Debugger::Internal::GdbPlainEngine</name> <message> <source>Starting executable failed:</source> - <translation>Échec du lancement de l'exécutable&nbsp;:</translation> + <translation>Échec du lancement de l'exécutable :</translation> </message> <message> <source>Cannot set up communication with child process: %1</source> - <translation>Impossible de mettre en place la communication avec le processus enfant&nbsp;: %1</translation> + <translation>Impossible de mettre en place la communication avec le processus enfant : %1</translation> </message> </context> <context> @@ -71544,7 +71544,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Error: no device available, deploy failed.</source> - <translation>Erreur&nbsp;: aucun périphérique n'est disponible, le déploiement a échoué.</translation> + <translation>Erreur : aucun périphérique n'est disponible, le déploiement a échoué.</translation> </message> <message> <source>Deployment failed. No iOS device found.</source> @@ -71621,7 +71621,7 @@ réinitialisation du moniteur</translation> </message> <message> <source>Do you want to see how to set it up for development?</source> - <translation>Voulez-vous voir comment l'activer pour le développement&nbsp;?</translation> + <translation>Voulez-vous voir comment l'activer pour le développement ?</translation> </message> </context> <context> @@ -71746,11 +71746,11 @@ réinitialisation du moniteur</translation> <name>ProjectExplorer::DesktopProcessSignalOperation</name> <message> <source>Cannot kill process with pid %1: %2</source> - <translation>Impossible de tuer le processus avec le pid %1&nbsp;: %2</translation> + <translation>Impossible de tuer le processus avec le pid %1 : %2</translation> </message> <message> <source>Cannot interrupt process with pid %1: %2</source> - <translation>Impossible d'interrompre le processus avec le pid %1&nbsp;: %2</translation> + <translation>Impossible d'interrompre le processus avec le pid %1 : %2</translation> </message> <message> <source>Cannot open process.</source> @@ -71762,11 +71762,11 @@ réinitialisation du moniteur</translation> </message> <message> <source>Cannot open process: %1</source> - <translation>Impossible d'ouvrir le processus&nbsp;: %1</translation> + <translation>Impossible d'ouvrir le processus : %1</translation> </message> <message> <source>DebugBreakProcess failed:</source> - <translation>DebugBreakProcessus a échoué&nbsp;:</translation> + <translation>DebugBreakProcessus a échoué :</translation> </message> <message> <source>%1 does not exist. If you built Qt Creator yourself, check out http://qt.gitorious.org/qt-creator/binary-artifacts.</source> @@ -71785,7 +71785,7 @@ réinitialisation du moniteur</translation> <name>ProjectExplorer::SshDeviceProcess</name> <message> <source>Failed to kill remote process: %1</source> - <translation>Impossible de tuer le processus distant&nbsp;: %1</translation> + <translation>Impossible de tuer le processus distant : %1</translation> </message> <message> <source>Timeout waiting for remote process to finish.</source> @@ -71869,7 +71869,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <message> <source>Qt Creator can use the following kits for project <b>%1</b>:</source> <comment>%1: Project name</comment> - <translation>Qt Creator peut utiliser les kits suivant pour le projet <b>%1</>&nbsp;:</translation> + <translation>Qt Creator peut utiliser les kits suivant pour le projet <b>%1</> :</translation> </message> </context> <context> @@ -71881,12 +71881,12 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <message> <source><b>Error:</b> </source> <comment>Severity is Task::Error</comment> - <translation><b>Erreur&nbsp;:</b> </translation> + <translation><b>Erreur :</b> </translation> </message> <message> <source><b>Warning:</b> </source> <comment>Severity is Task::Warning</comment> - <translation><b>Avertissement&nbsp;:</b> </translation> + <translation><b>Avertissement :</b> </translation> </message> </context> <context> @@ -71956,11 +71956,11 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <name>QmakeProjectManager::Internal::DesktopQmakeRunConfigurationWidget</name> <message> <source>Executable:</source> - <translation>Exécutable&nbsp;:</translation> + <translation>Exécutable :</translation> </message> <message> <source>Arguments:</source> - <translation>Arguments&nbsp;:</translation> + <translation>Arguments :</translation> </message> <message> <source>Select Working Directory</source> @@ -71972,7 +71972,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu </message> <message> <source>Working directory:</source> - <translation>Répertoire de travail&nbsp;:</translation> + <translation>Répertoire de travail :</translation> </message> <message> <source>Run in terminal</source> @@ -72018,7 +72018,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu </message> <message> <source>Qt Quick component set:</source> - <translation>Ensemble de composants Qt Quick&nbsp;:</translation> + <translation>Ensemble de composants Qt Quick :</translation> </message> </context> <context> @@ -72107,7 +72107,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <source>Could not connect to the in-process QML debugger: %1</source> <extracomment>%1 is detailed error message</extracomment> - <translation>Impossible de se connecter au processus de débogage QML&nbsp;: + <translation>Impossible de se connecter au processus de débogage QML : %1</translation> </message> <message> @@ -72240,7 +72240,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <name>QmlProfiler::Internal::QmlProfilerFileReader</name> <message> <source>Error while parsing trace data file: %1</source> - <translation>Erreur pendant l'analyse le fichier de données de traçage&nbsp;: %1</translation> + <translation>Erreur pendant l'analyse le fichier de données de traçage : %1</translation> </message> </context> <context> @@ -72293,7 +72293,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <name>QmlProjectManager::QmlProjectFileFormat</name> <message> <source>Invalid root element: %1</source> - <translation>L'élément racine est invalide&nbsp;: %1</translation> + <translation>L'élément racine est invalide : %1</translation> </message> </context> <context> @@ -72304,7 +72304,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu </message> <message> <source>Qt Quick component set:</source> - <translation>Ensemble de composants Qt Quick&nbsp;:</translation> + <translation>Ensemble de composants Qt Quick :</translation> </message> </context> <context> @@ -72330,7 +72330,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu </message> <message> <source>Are you sure you want to cancel?</source> - <translation>Êtes-vous sûr de vouloir annuler&nbsp;?</translation> + <translation>Êtes-vous sûr de vouloir annuler ?</translation> </message> </context> <context> @@ -72357,7 +72357,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <message> <source>An error has occurred while adding target from: %1</source> - <translation>Une erreur est apparue lors de l'ajout d'une cible depuis&nbsp;: + <translation>Une erreur est apparue lors de l'ajout d'une cible depuis : %1</translation> </message> <message> @@ -72371,25 +72371,25 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <message> <source>Finished uninstalling target: %1</source> - <translation>L'installation de la cible ne s'est pas terminée&nbsp;: + <translation>L'installation de la cible ne s'est pas terminée : %1</translation> </message> <message> <source>Finished installing target: %1</source> - <translation>L'installation de la cible s'est terminée&nbsp;: + <translation>L'installation de la cible s'est terminée : %1</translation> </message> <message> <source>An error has occurred while uninstalling target: %1</source> - <translation>Une erreur est apparue lors de la désinstallation d'une cible&nbsp;: + <translation>Une erreur est apparue lors de la désinstallation d'une cible : %1</translation> </message> <message> <source>An error has occurred while installing target: %1</source> - <translation>Une erreur est apparue lors de l'installation d'une cible&nbsp;: + <translation>Une erreur est apparue lors de l'installation d'une cible : %1</translation> </message> </context> @@ -72397,7 +72397,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <name>Qnx::Internal::BlackBerryLogProcessRunner</name> <message> <source>Cannot show debug output. Error: %1</source> - <translation>Impossible d'afficher la fenêtre de débogage. Erreur&nbsp;: %1</translation> + <translation>Impossible d'afficher la fenêtre de débogage. Erreur : %1</translation> </message> </context> <context> @@ -72419,23 +72419,23 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <name>BarDescriptorConverter</name> <message> <source>Setting asset path: %1 to %2 type: %3 entry point: %4</source> - <translation>Définir le chemin de l'asset&nbsp;: %1 à %2, type&nbsp;: %3, point d'entré&nbsp;: %4</translation> + <translation>Définir le chemin de l'asset : %1 à %2, type : %3, point d'entré : %4</translation> </message> <message> <source>Removing asset path: %1</source> - <translation>Supprimer le chemin de l'asset&nbsp;: %1</translation> + <translation>Supprimer le chemin de l'asset : %1</translation> </message> <message> <source>Replacing asset source path: %1 -> %2</source> - <translation>Remplacer le chemin source de l'asset&nbsp;: %1 -> %2</translation> + <translation>Remplacer le chemin source de l'asset : %1 -> %2</translation> </message> <message> <source>Cannot find image asset definition: <%1></source> - <translation>Impossible de trouver la définition de l'image de l'asset&nbsp;: <%1></translation> + <translation>Impossible de trouver la définition de l'image de l'asset : <%1></translation> </message> <message> <source>Error parsing XML file '%1': %2</source> - <translation>Erreur d'analyse du fichier XML "%1"&nbsp;: %2</translation> + <translation>Erreur d'analyse du fichier XML "%1" : %2</translation> </message> </context> <context> @@ -72473,35 +72473,35 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu </message> <message> <source>Error generating file '%1': %2</source> - <translation>Erreur lors de la génération du fichier "%1"&nbsp;: %2</translation> + <translation>Erreur lors de la génération du fichier "%1" : %2</translation> </message> </context> <context> <name>FileConverter</name> <message> <source>===== Converting file: %1</source> - <translation>===== Fichier de conversion&nbsp;: %1</translation> + <translation>===== Fichier de conversion : %1</translation> </message> </context> <context> <name>ImportLogConverter</name> <message> <source>Generated by cascades importer ver: %1, %2</source> - <translation>Généré par l'importateur Cascades&nbsp;: %1, %2</translation> + <translation>Généré par l'importateur Cascades : %1, %2</translation> </message> </context> <context> <name>ProjectFileConverter</name> <message> <source>File '%1' not listed in '%2' file, should it be?</source> - <translation>Le fichier "%1" n'est pas listé dans le fichier "%2", devrait-il y être&nbsp;?</translation> + <translation>Le fichier "%1" n'est pas listé dans le fichier "%2", devrait-il y être ?</translation> </message> </context> <context> <name>Qnx::Internal::QnxRunControl</name> <message> <source>Warning: "slog2info" is not found on the device, debug output not available!</source> - <translation>Avertissement&nbsp;: "slog2info" n'a pas été trouvé dans le périphérique, la sortie de débogage n'est pas disponible&nbsp;!</translation> + <translation>Avertissement : "slog2info" n'a pas été trouvé dans le périphérique, la sortie de débogage n'est pas disponible !</translation> </message> </context> <context> @@ -72515,23 +72515,23 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <name>Qnx::Internal::QnxToolChainConfigWidget</name> <message> <source>&Compiler path:</source> - <translation>Chemin du &compilateur&nbsp;:</translation> + <translation>Chemin du &compilateur :</translation> </message> <message> <source>NDK/SDP path:</source> <extracomment>SDP refers to 'Software Development Platform'.</extracomment> - <translation>Chemin du NDK/SDP&nbsp;:</translation> + <translation>Chemin du NDK/SDP :</translation> </message> <message> <source>&ABI:</source> - <translation>&ABI&nbsp;:</translation> + <translation>&ABI :</translation> </message> </context> <context> <name>Qnx::Internal::Slog2InfoRunner</name> <message> <source>Cannot show slog2info output. Error: %1</source> - <translation>Impossible d'afficher la sortie de slog2info. Erreur&nbsp;: %1</translation> + <translation>Impossible d'afficher la sortie de slog2info. Erreur : %1</translation> </message> </context> <context> @@ -72545,7 +72545,7 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu <name>RemoteLinux::RemoteLinuxSignalOperation</name> <message> <source>Exit code is %1. stderr:</source> - <translation>Le code de sortie %1. stderr&nbsp;:</translation> + <translation>Le code de sortie %1. stderr :</translation> </message> </context> <context> @@ -72615,26 +72615,26 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu </message> <message> <source>Run %1 in %2 Mode?</source> - <translation>Lancer %1 en mode %2&nbsp;?</translation> + <translation>Lancer %1 en mode %2 ?</translation> </message> <message> <source><html><head/><body><p>You are trying to run the tool "%1" on an application in %2 mode. The tool is designed to be used in %3 mode.</p><p>Debug and Release mode run-time characteristics differ significantly, analytical findings for one mode may or may not be relevant for the other.</p><p>Do you want to continue and run the tool in %2 mode?</p></body></html></source> - <translation><html><head/><body><p>Vous essayez d'exécuter l'outil "%1" sur une application en mode %2. L'outil a été conçu pour être utilisé dans le mode %3.</p><p>Les modes Debug et Release ont des caratéristiques d'exécution très différentes, les résultats de l'analyse dans un mode peuvent être ou ne pas être pertinentes pour un autre mode.</p><p>Souhaitez-vous continuer et exécuter l'outil dans le mode %2&nbsp;?</p></body></html></translation> + <translation><html><head/><body><p>Vous essayez d'exécuter l'outil "%1" sur une application en mode %2. L'outil a été conçu pour être utilisé dans le mode %3.</p><p>Les modes Debug et Release ont des caratéristiques d'exécution très différentes, les résultats de l'analyse dans un mode peuvent être ou ne pas être pertinentes pour un autre mode.</p><p>Souhaitez-vous continuer et exécuter l'outil dans le mode %2 ?</p></body></html></translation> </message> </context> <context> <name>Valgrind::Internal::ValgrindRunControl</name> <message> <source>Valgrind options: %1</source> - <translation>Options de Valgrind&nbsp;: %1</translation> + <translation>Options de Valgrind : %1</translation> </message> <message> <source>Working directory: %1</source> - <translation>Répertoire de travail&nbsp;: %1</translation> + <translation>Répertoire de travail : %1</translation> </message> <message> <source>Command line arguments: %1</source> - <translation>Arguments de la commande&nbsp;: %1</translation> + <translation>Arguments de la commande : %1</translation> </message> <message> <source>Analyzing finished.</source> @@ -72642,11 +72642,11 @@ Veuillez fermer toutes les instances de votre application en cours d'exécu </message> <message> <source>Error: "%1" could not be started: %2</source> - <translation>Erreur&nbsp;: "%1" ne peux pas démarrer&nbsp;: %2</translation> + <translation>Erreur : "%1" ne peux pas démarrer : %2</translation> </message> <message> <source>Error: no Valgrind executable set.</source> - <translation>Erreur&nbsp;: aucun exécutable Valgring est défini.</translation> + <translation>Erreur : aucun exécutable Valgring est défini.</translation> </message> <message> <source>Process terminated.</source> -- GitLab From 2a4a41da4e57adb87d17d728b25bc7982f1c5bdd Mon Sep 17 00:00:00 2001 From: Guillaume Belz <guillaume.belz@gmail.com> Date: Mon, 16 Dec 2013 11:32:17 +0100 Subject: [PATCH 05/42] French translation fixes Change-Id: Iedc2c70e5744b196c62ea20e2769179a9a2e33f4 Reviewed-by: Guillaume Belz <guillaume.belz@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> --- share/qtcreator/translations/qtcreator_fr.ts | 55 +++++++++++--------- 1 file changed, 30 insertions(+), 25 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_fr.ts b/share/qtcreator/translations/qtcreator_fr.ts index 31ff968e443..4ee1585adfd 100644 --- a/share/qtcreator/translations/qtcreator_fr.ts +++ b/share/qtcreator/translations/qtcreator_fr.ts @@ -6321,10 +6321,6 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.</ <source>Stopped at breakpoint %1 in thread %2</source> <translation type="obsolete">Arrêté au point d'arrêt %1 dans le thread %2. {1 ?} {2?}</translation> </message> - <message> - <source><p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table></source> - <translation type="obsolete"><p>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal : </td><td>%1</td></tr><tr><td>Signification du signal : </td><td>%2</td></tr></table></translation> - </message> <message> <source>Stopped: %1 by signal %2</source> <translation type="obsolete">Arrêté : %1 par le signal %2</translation> @@ -13731,21 +13727,25 @@ francis : voila une nouvelle suggestion :)</translatorcomment> <source>Resolving dependencies failed because state != Read</source> <translation>La résolution des dépendances a échoué car l'état courant est différent de "Lecture"</translation> </message> - <message> - <source>Could not resolve dependency '%1(%2)'</source> - <translation>Impossible de résoudre la dépendance "%1(%2)"</translation> - </message> <message> <source>Loading the library failed because state != Resolved</source> <translation>Le chargement de la bibliothèque a échoué car l'état courant est différent de "Résolu"</translation> </message> <message> - <source>Plugin is not valid (does not derive from IPlugin)</source> - <translation>L'extension n'est pas valide (elle n'est pas une sous-classe de IPlugin)</translation> + <source>Initializing the plugin failed because state != Loaded</source> + <translation>L'initialisation de l'extension a échoué car l'état courant est différent de "Chargé"</translation> </message> <message> - <source>Initializing the plugin failed because state != Loaded</source> - <translation>L'initialisation de l'extension a échoué car l'état courant est différent de "chargé"</translation> + <source>Cannot perform extensionsInitialized because state != Initialized</source> + <translation>Impossible d'exécuter extensionsInitialized car l'état est différent de "Initialisé"</translation> + </message> + <message> + <source>Could not resolve dependency '%1(%2)'</source> + <translation>Impossible de résoudre la dépendance "%1(%2)"</translation> + </message> + <message> + <source>Plugin is not valid (does not derive from IPlugin)</source> + <translation>L'extension n'est pas valide (elle n'est pas une sous-classe de IPlugin)</translation> </message> <message> <source>Internal error: have no plugin instance to initialize</source> @@ -13755,10 +13755,6 @@ francis : voila une nouvelle suggestion :)</translatorcomment> <source>Plugin initialization failed: %1</source> <translation>L'initialisation de l'extension a échoué: %1</translation> </message> - <message> - <source>Cannot perform extensionsInitialized because state != Initialized</source> - <translation>Impossible d'exécuter extensionsInitialized car l'état est différent de "Initialisé"</translation> - </message> <message> <source>Internal error: have no plugin instance to perform extensionsInitialized</source> <translation>Erreur interne: aucune instance de l'extention sur laquelle exécuter extensionsInitialized</translation> @@ -35758,6 +35754,10 @@ Cette fonctionnalité n'est disponible que pour GDB.</translation> <comment>meaning</comment> <translation><Inconnu></translation> </message> + <message> + <source><p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table></source> + <translation><p>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal : </td><td>%1</td></tr><tr><td>Signification du signal : </td><td>%2</td></tr></table></translation> + </message> <message> <source>This does not seem to be a "Debug" build. Setting breakpoints by file name and line number may fail.</source> @@ -35814,10 +35814,6 @@ Mettre des points d'arrêt par nom de fichier et numéro de ligne pourrait <comment>meaning</comment> <translation> <Inconnu> </translation> </message> - <message> - <source><p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table></source> - <translation><p>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal : </td><td>%1</td></tr><tr><td>Signification du signal : </td><td>%2</td></tr></table></translation> - </message> <message> <source>Signal received</source> <translation>Signal reçu</translation> @@ -43946,6 +43942,10 @@ QML component instance objects and properties directly.</source> <source>Indexing</source> <translation>Indexation</translation> </message> + <message> + <source>Qml import scan</source> + <translation>Analyse de l'import Qml</translation> + </message> </context> <context> <name>QmlJSTools::Internal::PluginDumper</name> @@ -66956,6 +66956,10 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <source>== and != may perform type coercion, use === or !== to avoid it.</source> <translation>== et != peuvent provoquer une coercition de type, utilisez === ou !== pour l'éviter.</translation> </message> + <message> + <source>== and != perform type coercion, use === or !== to avoid it.</source> + <translation>== et != provoquent une coercition de type, utilisez === ou !== pour l'éviter.</translation> + </message> <message> <source>Expression statements should be assignments, calls or delete expressions only.</source> <translation>Les définitions d'expression devraient être des expression d'assignation, d'appel ou de suppression uniquement.</translation> @@ -66988,10 +66992,6 @@ Les noms partiels peuvent êtres utilisé s'ils ne sont pas ambigües.</tra <source>Invalid property type '%1'.</source> <translation>Type de propriété invalide "%1".</translation> </message> - <message> - <source>== and != perform type coercion, use === or !== to avoid it.</source> - <translation>== et != provoquent une coercition de type, utilisez === ou !== pour l'éviter.</translation> - </message> <message> <source>Calls of functions that start with an uppercase letter should use 'new'.</source> <translation>Les appels de fonctions qui commence par une lettre majuscule devrait utiliser "new".</translation> @@ -70886,7 +70886,8 @@ réinitialisation du moniteur</translation> </message> <message> <source>Get Started Now</source> - <translation>Commencez dès maintenant</translation> + <translatorcomment>attention à la longueur du texte, doit reste petit</translatorcomment> + <translation type="unfinished">Démarrer</translation> </message> <message> <source>Online Community</source> @@ -71699,6 +71700,10 @@ réinitialisation du moniteur</translation> <source>Subprocess Error %1</source> <translation>Erreur du sous-processus %1</translation> </message> + <message> + <source>iOS tool Error %1</source> + <translation>Erreur de l'outil iOS %1</translation> + </message> </context> <context> <name>Macros::Internal::MacroManager</name> -- GitLab From 5bcc7240f11a479c842a75d0fa8159b145bc418f Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@digia.com> Date: Thu, 19 Dec 2013 13:01:27 +0100 Subject: [PATCH 06/42] Squish: Replace failing wait statements in tst_cli_output_console Change-Id: I862812802722f66b6c100458b5aaea7c7165b248 Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- .../tst_cli_output_console/test.py | 30 +++++++------------ 1 file changed, 11 insertions(+), 19 deletions(-) diff --git a/tests/system/suite_debugger/tst_cli_output_console/test.py b/tests/system/suite_debugger/tst_cli_output_console/test.py index ee5302ad33d..422e87d1284 100644 --- a/tests/system/suite_debugger/tst_cli_output_console/test.py +++ b/tests/system/suite_debugger/tst_cli_output_console/test.py @@ -31,23 +31,16 @@ source("../../shared/qtcreator.py") project = "untitled" -def __handlerunControlFinished__(object, runControlP): - global runControlFinished - runControlFinished = True - def main(): if platform.system() == "Darwin" and JIRA.isBugStillOpen(6853, JIRA.Bug.CREATOR): test.xverify(False, "This test is unstable on Mac, see QTCREATORBUG-6853.") return - global runControlFinished outputQDebug = "Output from qDebug()." outputStdOut = "Output from std::cout." outputStdErr = "Output from std::cerr." startApplication("qtcreator" + SettingsPath) if not startedWithoutPluginError(): return - installLazySignalHandler("{type='ProjectExplorer::Internal::ProjectExplorerPlugin' unnamed='1'}", - "runControlFinished(ProjectExplorer::RunControl*)", "__handlerunControlFinished__") checkedTargets = createProject_Qt_Console(tempDir(), project) mainEditor = waitForObject(":Qt Creator_CppEditor::Internal::CPPEditorWidget") @@ -73,16 +66,15 @@ def main(): test.log("Testing build configuration: " + config) test.log("Running application") - progressBarWait(15000) setRunInTerminal(len(checkedTargets), kit, False) - runControlFinished = False clickButton(waitForObject(":*Qt Creator.Run_Core::Internal::FancyToolButton")) - waitFor("runControlFinished==True", 20000) - if not runControlFinished: - test.warning("Waiting for runControlFinished timed out") - ensureChecked(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton") + outputButton = waitForObject(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton") + waitFor("outputButton.checked", 20000) # Not ensureChecked(), avoid race condition + outputWindow = waitForObject(":Qt Creator_Core::OutputWindow") + waitFor("'exited with code' in str(outputWindow.plainText) or \ + 'The program has unexpectedly finished' in str(outputWindow.plainText)", 20000) try: - appOutput = str(waitForObject("{type='Core::OutputWindow' unnamed='1' visible='1'}").plainText) + appOutput = str(waitForObject(":Qt Creator_Core::OutputWindow").plainText) verifyOutput(appOutput, outputStdOut, "std::cout", "Application Output") verifyOutput(appOutput, outputStdErr, "std::cerr", "Application Output") verifyOutput(appOutput, outputQDebug, "qDebug()", "Application Output") @@ -93,13 +85,12 @@ def main(): test.log("Debugging application") isMsvc = isMsvcConfig(len(checkedTargets), kit) - runControlFinished = False invokeMenuItem("Debug", "Start Debugging", "Start Debugging") JIRA.performWorkaroundForBug(6853, JIRA.Bug.CREATOR, config) handleDebuggerWarnings(config, isMsvc) - waitFor("runControlFinished==True", 20000) - if not runControlFinished: - test.warning("Waiting for runControlFinished timed out") + ensureChecked(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton") + outputWindow = waitForObject(":Qt Creator_Core::OutputWindow") + waitFor("'Debugging has finished' in str(outputWindow.plainText)", 20000) try: debuggerLog = takeDebuggerLog() if not isMsvc: @@ -118,7 +109,7 @@ def main(): switchViewTo(ViewConstants.EDIT) ensureChecked(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton") try: - appOutput = str(waitForObject("{type='Core::OutputWindow' unnamed='1' visible='1'}").plainText) + appOutput = str(waitForObject(":Qt Creator_Core::OutputWindow").plainText) if not isMsvc: verifyOutput(appOutput, outputStdOut, "std::cout", "Application Output") verifyOutput(appOutput, outputStdErr, "std::cerr", "Application Output") @@ -127,5 +118,6 @@ def main(): except: test.fatal("Could not find Application Output Window", "Did the application run at all?") + progressBarWait(10000, False) # wait for "Build" progressbar to disappear invokeMenuItem("File", "Exit") -- GitLab From 1734e368b654cd71db5539ebebc12d7a3af32020 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@digia.com> Date: Thu, 19 Dec 2013 13:14:04 +0100 Subject: [PATCH 07/42] Squish: Improve waiting in tst_simple_analyze Change-Id: I430e9190beab25f51b187c007c0d7624810c2509 Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- tests/system/suite_debugger/tst_simple_analyze/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/suite_debugger/tst_simple_analyze/test.py b/tests/system/suite_debugger/tst_simple_analyze/test.py index c66a6955698..3daa5497533 100644 --- a/tests/system/suite_debugger/tst_simple_analyze/test.py +++ b/tests/system/suite_debugger/tst_simple_analyze/test.py @@ -69,7 +69,6 @@ def performTest(workingDir, projectName, targetCount, availableConfigs, disableO for kit, config in availableConfigs: qtVersion = selectBuildConfig(targetCount, kit, config)[0] test.log("Selected kit using Qt %s" % qtVersion) - progressBarWait() # progress bars move buttons verifyBuildConfig(targetCount, kit, True, enableQmlDebug=True) if disableOptimizer: batchEditRunEnvironment(targetCount, kit, ["QML_DISABLE_OPTIMIZER=1"]) @@ -131,6 +130,7 @@ def performTest(workingDir, projectName, targetCount, availableConfigs, disableO test.compare(model.index(row, colMedian).data(), model.index(row, colLongest).data(), "For two calls, median and longest time must be the same.") deleteAppFromWinFW(workingDir, projectName, False) + progressBarWait(15000, False) # wait for "Build" progressbar to disappear def compareEventsTab(model, file): significantColumns = [0, 1, 4, 9] -- GitLab From fd43080c2941c8aed0d2b3424d9c26a128321efb Mon Sep 17 00:00:00 2001 From: Fawzi Mohamed <fawzi.mohamed@digia.com> Date: Thu, 19 Dec 2013 15:45:32 +0100 Subject: [PATCH 08/42] lldbengine: fix attachPid check An invalid pid to attach can be 0 (to simplify handling of windows Pid is pointer) or -1 (usual unix value) Change-Id: Iaf8049d2b68e89e97bfaeb31972d83a8c5cffd80 Reviewed-by: hjk <hjk121@nokiamail.com> --- src/plugins/debugger/lldb/lldbengine.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/debugger/lldb/lldbengine.cpp b/src/plugins/debugger/lldb/lldbengine.cpp index c2c7b691416..4e5bab1bb5e 100644 --- a/src/plugins/debugger/lldb/lldbengine.cpp +++ b/src/plugins/debugger/lldb/lldbengine.cpp @@ -198,7 +198,9 @@ void LldbEngine::setupInferior() cmd.arg("startMode", sp.startMode); // directly relying on this is brittle wrt. insertions, so check it here cmd.arg("processArgs", sp.processArgs); - QTC_CHECK(!sp.attachPID || (sp.startMode == AttachCrashedExternal + // it is better not to check the start mode on the python sid (as we would have to duplicate the + // enum values), and thus we assume that if the sp.attachPID is valid we really have to attach + QTC_CHECK(sp.attachPID <= 0 || (sp.startMode == AttachCrashedExternal || sp.startMode == AttachExternal)); cmd.arg("attachPid", sp.attachPID); cmd.arg("sysRoot", sp.sysRoot); -- GitLab From 790b97638283ed1b8f6be0f5f5699b452d15a6c8 Mon Sep 17 00:00:00 2001 From: David Schulz <david.schulz@digia.com> Date: Mon, 2 Dec 2013 08:43:01 +0100 Subject: [PATCH 09/42] Cdbext: remove the depth limitation of symbol dump. This allows us to print expanded locals and expressions hierarchys while stepping through the source. Change-Id: I0971cadfd0eed807ae2d3f9fd21bff48daad5175 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com> --- src/libs/qtcreatorcdbext/symbolgroupnode.cpp | 34 +++++++++++--------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/src/libs/qtcreatorcdbext/symbolgroupnode.cpp b/src/libs/qtcreatorcdbext/symbolgroupnode.cpp index 15002f322dd..f6597adb91f 100644 --- a/src/libs/qtcreatorcdbext/symbolgroupnode.cpp +++ b/src/libs/qtcreatorcdbext/symbolgroupnode.cpp @@ -1659,14 +1659,6 @@ SymbolGroupNodeVisitor::VisitResult return VisitSkipChildren; if (node->testFlags(SymbolGroupNode::AdditionalSymbol) && !node->testFlags(SymbolGroupNode::WatchNode)) return VisitSkipChildren; - // Recurse to children only if expanded by explicit watchmodel request - // and initialized. - bool visitChildren = depth < 1; // Report only one level for Qt Creator. - // Visit children of a SymbolGroupNode only if not expanded by its dumpers. - if (visitChildren) - if (const SymbolGroupNode *realNode = node->resolveReference()->asSymbolGroupNode()) - if (!realNode->isExpanded() || realNode->testFlags(SymbolGroupNode::Uninitialized|SymbolGroupNode::ExpandedByDumper)) - visitChildren = false; // Comma between same level children given obscured children if (depth == m_lastDepth) m_os << ','; @@ -1679,16 +1671,28 @@ SymbolGroupNodeVisitor::VisitResult m_os << '{'; const int childCount = node->dump(m_os, fullIname, m_parameters, m_context); m_os << ",numchild=\"" << childCount << '"'; - if (!childCount) - visitChildren = false; - if (visitChildren) { // open children array - m_os << ",children=["; - } else { // No children, close array. - m_os << '}'; + + if (childCount) { + // Recurse to children only if expanded by explicit watchmodel request + // and initialized. + // Visit children of a SymbolGroupNode only if not expanded by its dumpers. + bool skipit = false; + if (const SymbolGroupNode *realNode = node->resolveReference()->asSymbolGroupNode()) { + if (!realNode->isExpanded() || realNode->testFlags(SymbolGroupNode::Uninitialized | SymbolGroupNode::ExpandedByDumper)) + skipit = true; + } + if (!skipit) { + m_os << ",children=["; + if (m_parameters.humanReadable()) + m_os << '\n'; + return VisitContinue; + } } + // No children, close array. + m_os << '}'; if (m_parameters.humanReadable()) m_os << '\n'; - return visitChildren ? VisitContinue : VisitSkipChildren; + return VisitSkipChildren; } void DumpSymbolGroupNodeVisitor::childrenVisited(const AbstractSymbolGroupNode *n, unsigned) -- GitLab From c68c245fd1a6200b50b8daeeba12a4a97270a641 Mon Sep 17 00:00:00 2001 From: hluk <hluk@email.cz> Date: Wed, 20 Nov 2013 20:16:04 +0100 Subject: [PATCH 10/42] FakeVim: Reset FakeVim properly after user command If FakeVim mode is disabled, enable it just for the single requested user command. Keep useful messages shown for few seconds. Task-number: QTCREATORBUG-10460 Change-Id: I89c1722542f47befbf2c24a663bf3d1c455b77d9 Reviewed-by: Mitch Curtis <mitch.curtis@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com> --- src/plugins/fakevim/fakevimplugin.cpp | 69 +++++++++++++++++++-------- 1 file changed, 49 insertions(+), 20 deletions(-) diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp index b94bfe697c6..00d996166a7 100644 --- a/src/plugins/fakevim/fakevimplugin.cpp +++ b/src/plugins/fakevim/fakevimplugin.cpp @@ -99,6 +99,7 @@ #include <QTextBlock> #include <QTextCursor> #include <QTextEdit> +#include <QTimer> #include <QTreeWidgetItem> using namespace TextEditor; @@ -120,7 +121,11 @@ class MiniBuffer : public QStackedWidget Q_OBJECT public: - MiniBuffer() : m_label(new QLabel(this)), m_edit(new QLineEdit(this)), m_eventFilter(0) + MiniBuffer() + : m_label(new QLabel(this)) + , m_edit(new QLineEdit(this)) + , m_eventFilter(0) + , m_lastMessageLevel(MessageMode) { connect(m_edit, SIGNAL(textEdited(QString)), SLOT(changed())); connect(m_edit, SIGNAL(cursorPositionChanged(int,int)), SLOT(changed())); @@ -129,6 +134,10 @@ public: addWidget(m_label); addWidget(m_edit); + + m_hideTimer.setSingleShot(true); + m_hideTimer.setInterval(8000); + connect(&m_hideTimer, SIGNAL(timeout()), SLOT(hide())); } void setContents(const QString &contents, int cursorPos, int anchorPos, @@ -145,25 +154,32 @@ public: m_edit->blockSignals(false); setCurrentWidget(m_edit); m_edit->setFocus(); - } else if (contents.isEmpty() && messageLevel != MessageShowCmd) { - hide(); } else { - show(); - m_label->setText(contents); - - QString css; - if (messageLevel == MessageError) { - css = _("border:1px solid rgba(255,255,255,150);" - "background-color:rgba(255,0,0,100);"); - } else if (messageLevel == MessageWarning) { - css = _("border:1px solid rgba(255,255,255,120);" - "background-color:rgba(255,255,0,20);"); - } else if (messageLevel == MessageShowCmd) { - css = _("border:1px solid rgba(255,255,255,120);" - "background-color:rgba(100,255,100,30);"); + if (contents.isEmpty()) { + if (m_lastMessageLevel == MessageMode) + hide(); + else + m_hideTimer.start(); + } else { + m_hideTimer.stop(); + show(); + + m_label->setText(contents); + + QString css; + if (messageLevel == MessageError) { + css = _("border:1px solid rgba(255,255,255,150);" + "background-color:rgba(255,0,0,100);"); + } else if (messageLevel == MessageWarning) { + css = _("border:1px solid rgba(255,255,255,120);" + "background-color:rgba(255,255,0,20);"); + } else if (messageLevel == MessageShowCmd) { + css = _("border:1px solid rgba(255,255,255,120);" + "background-color:rgba(100,255,100,30);"); + } + m_label->setStyleSheet(QString::fromLatin1( + "*{border-radius:2px;padding-left:4px;padding-right:4px;%1}").arg(css)); } - m_label->setStyleSheet(QString::fromLatin1( - "*{border-radius:2px;padding-left:4px;padding-right:4px;%1}").arg(css)); if (m_edit->hasFocus()) emit edited(QString(), -1, -1); @@ -183,6 +199,8 @@ public: } m_eventFilter = eventFilter; } + + m_lastMessageLevel = messageLevel; } QSize sizeHint() const @@ -209,6 +227,8 @@ private: QLabel *m_label; QLineEdit *m_edit; QObject *m_eventFilter; + QTimer m_hideTimer; + int m_lastMessageLevel; }; /////////////////////////////////////////////////////////////////////// @@ -1124,11 +1144,20 @@ void FakeVimPluginPrivate::userActionTriggered() const int key = act->data().toInt(); if (!key) return; - QString cmd = userCommandMap().value(key); IEditor *editor = EditorManager::currentEditor(); FakeVimHandler *handler = m_editorToHandler[editor]; - if (handler) + if (handler) { + // If disabled, enable FakeVim mode just for single user command. + bool enableFakeVim = !theFakeVimSetting(ConfigUseFakeVim)->value().toBool(); + if (enableFakeVim) + setUseFakeVimInternal(true); + + const QString cmd = userCommandMap().value(key); handler->handleInput(cmd); + + if (enableFakeVim) + setUseFakeVimInternal(false); + } } -- GitLab From 6dd3be2fee4b3ce1432863496e1ab88374075986 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh <orgad.shaneh@audiocodes.com> Date: Thu, 12 Dec 2013 18:11:28 +0200 Subject: [PATCH 11/42] GDB: Support tempPath with whitespace Change-Id: I6e3848e11b2550a508c3480e1a75494760376cad Reviewed-by: hjk <hjk121@nokiamail.com> --- src/plugins/debugger/gdb/gdbengine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index fb53eb8fc07..7cdacb90535 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -3360,8 +3360,8 @@ void GdbEngine::requestModuleSymbols(const QString &modulePath) return; QString fileName = tf.fileName(); tf.close(); - postCommand("maint print msymbols " + fileName.toLocal8Bit() - + ' ' + modulePath.toLocal8Bit(), + postCommand("maint print msymbols \"" + fileName.toLocal8Bit() + + "\" " + modulePath.toLocal8Bit(), NeedsStop, CB(handleShowModuleSymbols), QVariant(modulePath + QLatin1Char('@') + fileName)); } @@ -3805,7 +3805,7 @@ void GdbEngine::createSnapshot() if (tf.open()) { fileName = tf.fileName(); tf.close(); - postCommand("gcore " + fileName.toLocal8Bit(), + postCommand("gcore \"" + fileName.toLocal8Bit() + '"', NeedsStop|ConsoleCommand, CB(handleMakeSnapshot), fileName); } else { showMessageBox(QMessageBox::Critical, tr("Snapshot Creation Error"), @@ -5156,7 +5156,7 @@ void GdbEngine::finishInferiorSetup() symbols.open(); fileName = symbols.fileName(); } - postCommand("maint print msymbols " + fileName.toLocal8Bit(), + postCommand("maint print msymbols \"" + fileName.toLocal8Bit() + '"', CB(handleNamespaceExtraction), fileName); } -- GitLab From 3d481b2b2cd5561fe1fb27257b22f722fee3b685 Mon Sep 17 00:00:00 2001 From: David Schulz <david.schulz@digia.com> Date: Tue, 3 Dec 2013 08:56:30 +0100 Subject: [PATCH 12/42] Debugger: Refactor the debugger engine restriction of dumper test data. Change-Id: I8fe4fabcc5e101188f2a2dc51bbd43c827f286e7 Reviewed-by: Christian Stenger <christian.stenger@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com> --- tests/auto/debugger/tst_dumpers.cpp | 44 ++++++++++------------------- 1 file changed, 15 insertions(+), 29 deletions(-) diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index 302c0671fd5..bf6cc915d00 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -156,10 +156,6 @@ static QString toHex(const QString &str) return encoded; } - -struct GdbOnly {}; -struct LldbOnly {}; - struct Context { Context() : qtVersion(0), gccVersion(0) {} @@ -518,15 +514,14 @@ struct DataBase { DataBase() : useQt(false), useQHash(false), - forceC(false), gdbOnly(false), lldbOnly(false), + forceC(false), engines(DumpTestGdbEngine | DumpTestCdbEngine | DumpTestLldbEngine), glibcxxDebug(false) {} mutable bool useQt; mutable bool useQHash; mutable bool forceC; - mutable bool gdbOnly; - mutable bool lldbOnly; + mutable int engines; mutable bool glibcxxDebug; mutable GdbVersion neededGdbVersion; mutable LldbVersion neededLldbVersion; @@ -566,15 +561,9 @@ public: return *this; } - const Data &operator%(const LldbOnly &) const + const Data &operator%(const DebuggerEngine &enginesForTest) const { - lldbOnly = true; - return *this; - } - - const Data &operator%(const GdbOnly &) const - { - gdbOnly = true; + engines = enginesForTest; return *this; } @@ -787,6 +776,9 @@ void tst_Dumpers::dumper() { QFETCH(Data, data); + if (!(data.engines & m_debuggerEngine)) + MSKIP_SINGLE("The test is excluded for this debugger engine."); + if (m_debuggerEngine == DumpTestGdbEngine) { if (data.neededGdbVersion.min > m_gdbVersion) MSKIP_SINGLE("Need minimum GDB version " @@ -794,9 +786,6 @@ void tst_Dumpers::dumper() if (data.neededGdbVersion.max < m_gdbVersion) MSKIP_SINGLE("Need maximum GDB version " + QByteArray::number(data.neededGdbVersion.max)); - } else { - if (data.gdbOnly) - MSKIP_SINGLE("Test is GDB specific"); } if (m_debuggerEngine == DumpTestLldbEngine) { @@ -806,9 +795,6 @@ void tst_Dumpers::dumper() if (data.neededLldbVersion.max < m_gdbVersion) MSKIP_SINGLE("Need maximum LLDB version " + QByteArray::number(data.neededLldbVersion.max)); - } else { - if (data.lldbOnly) - MSKIP_SINGLE("Test is LLDB specific"); } QString cmd; @@ -1207,7 +1193,7 @@ void tst_Dumpers::dumper_data() " struct { float f; };\n" " double d;\n" " } a = { { 42, 43 } };\n (void)a;") - % GdbOnly() + % DumpTestGdbEngine % CheckType("a", "a", "union {...}") % Check("a.b", "43", "int") % Check("a.d", FloatValue("9.1245819032257467e-313"), "double") @@ -1222,7 +1208,7 @@ void tst_Dumpers::dumper_data() " double d;\n" " } a = { { 42, 43 } };\n (void)a;") //% CheckType("a", "a", "union {...}") - % LldbOnly() + % DumpTestLldbEngine % Check("a.#1.b", "43", "int") % Check("a.d", FloatValue("9.1245819032257467e-313"), "double") % Check("a.#2.f", FloatValue("5.88545355e-44"), "float") @@ -2683,7 +2669,7 @@ void tst_Dumpers::dumper_data() "h.insert(194);\n" "h.insert(2);\n" "h.insert(3);\n") - % GdbOnly() + % DumpTestGdbEngine % Profile("QMAKE_CXXFLAGS += -Wno-deprecated") % Check("h", "<4 items>", "__gnu__cxx::hash_set<int>") % Check("h.0", "[0]", "194", "int") @@ -4999,7 +4985,7 @@ void tst_Dumpers::dumper_data() "int sharedPtr = 1;\n" "#endif\n" "unused(&ptrConst, &ref, &refConst, &ptrToPtr, &sharedPtr);\n") - % GdbOnly() + % DumpTestGdbEngine % GdbVersion(70500) % BoostProfile() % Check("d", "", "Derived") @@ -5038,7 +5024,7 @@ void tst_Dumpers::dumper_data() " struct { int c; float d; };\n" "} v = {{1, 2}, {3, 4}};\n" "unused(&v);\n") - % GdbOnly() + % DumpTestGdbEngine % Check("v", "", "Test") % Check("v.a", "1", "int"); @@ -5048,7 +5034,7 @@ void tst_Dumpers::dumper_data() " struct { int c; float d; };\n" "} v = {{1, 2}, {3, 4}};\n" "unused(&v);\n") - % LldbOnly() + % DumpTestLldbEngine % Check("v", "", "Test") % Check("v.#1.a", "1", "int"); @@ -5056,7 +5042,7 @@ void tst_Dumpers::dumper_data() << Data("struct { int x; struct { int a; }; struct { int b; }; } v = {1, {2}, {3}};\n" "struct S { int x, y; } n = {10, 20};\n" "unused(&v, &n);\n") - % GdbOnly() + % DumpTestGdbEngine % Check("v", "", "{...}") % Check("n", "", "S") % Check("v.a", "2", "int") @@ -5069,7 +5055,7 @@ void tst_Dumpers::dumper_data() << Data("struct { int x; struct { int a; }; struct { int b; }; } v = {1, {2}, {3}};\n" "struct S { int x, y; } n = {10, 20};\n" "unused(&v, &n);\n") - % LldbOnly() + % DumpTestLldbEngine % Check("v", "", "<anonymous class>") % Check("n", "", "S") % Check("v.#1.a", "2", "int") -- GitLab From fe9bb880ae5d251e2fa12e42bf4572c7d0c52c00 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh <orgad.shaneh@audiocodes.com> Date: Mon, 23 Dec 2013 18:52:50 +0200 Subject: [PATCH 13/42] CppEditor: Fix override lookup for double call and casting Possibly fixes other use-cases Task-number: QTCREATORBUG-11159 Task-number: QTCREATORBUG-11165 Change-Id: I375143c9658c581267c7c8d61ce03c27858f2de5 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com> --- .../cppeditor/cppfollowsymbolundercursor.cpp | 2 +- .../followsymbol_switchmethoddecldef_test.cpp | 29 +++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/src/plugins/cppeditor/cppfollowsymbolundercursor.cpp b/src/plugins/cppeditor/cppfollowsymbolundercursor.cpp index 19a5a3a5e59..04c5cc8f4cf 100644 --- a/src/plugins/cppeditor/cppfollowsymbolundercursor.cpp +++ b/src/plugins/cppeditor/cppfollowsymbolundercursor.cpp @@ -181,7 +181,7 @@ Class *VirtualFunctionHelper::staticClassOfFunctionCallExpression_internal() con typeOfExpression.init(m_document, m_snapshot); typeOfExpression.setExpandTemplates(true); const QList<LookupItem> items = typeOfExpression(memberAccessAST->base_expression, - m_document, m_scope); + m_expressionDocument, m_scope); ResolveExpression resolveExpression(typeOfExpression.context()); ClassOrNamespace *binding = resolveExpression.baseExpression(items, m_accessTokenKind); if (binding) { diff --git a/src/plugins/cppeditor/followsymbol_switchmethoddecldef_test.cpp b/src/plugins/cppeditor/followsymbol_switchmethoddecldef_test.cpp index 5b7bf1655da..bfda3165381 100644 --- a/src/plugins/cppeditor/followsymbol_switchmethoddecldef_test.cpp +++ b/src/plugins/cppeditor/followsymbol_switchmethoddecldef_test.cpp @@ -1364,6 +1364,35 @@ void CppEditorPlugin::test_FollowSymbolUnderCursor_virtualFunctionCall_data() << (OverrideItemList() << OverrideItem(QLatin1String("Base::virt"), 1) << OverrideItem(QLatin1String("Derived::virt"), 2)); + + QTest::newRow("static_call") << _( + "struct Base { virtual void virt() {} };\n" + "struct Derived : Base { void virt() {} };\n" + "struct Foo {\n" + " static Base *base();\n" + "};\n" + "void client() { Foo::base()->$@virt(); }\n") + << (OverrideItemList() + << OverrideItem(QLatin1String("Base::virt"), 1) + << OverrideItem(QLatin1String("Derived::virt"), 2)); + + QTest::newRow("double_call") << _( + "struct Base { virtual void virt() {} };\n" + "struct Derived : Base { void virt() {} };\n" + "struct Foo { Base *base(); };\n" + "Foo *instance();\n" + "void client() { instance()->base()->$@virt(); }\n") + << (OverrideItemList() + << OverrideItem(QLatin1String("Base::virt"), 1) + << OverrideItem(QLatin1String("Derived::virt"), 2)); + + QTest::newRow("casting") << _( + "struct Base { virtual void virt() {} };\n" + "struct Derived : Base { void virt() {} };\n" + "void client() { static_cast<Base *>(0)->$@virt(); }\n") + << (OverrideItemList() + << OverrideItem(QLatin1String("Base::virt"), 1) + << OverrideItem(QLatin1String("Derived::virt"), 2)); } void CppEditorPlugin::test_FollowSymbolUnderCursor_virtualFunctionCall() -- GitLab From 7073f7daed8f13ede4a281f9db8ce17eb0213021 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh <orgad.shaneh@audiocodes.com> Date: Tue, 31 Dec 2013 13:12:04 +0200 Subject: [PATCH 14/42] Git: Fix draft ref for gerrit Change-Id: I884bcab46a7e11cbc3ea6c453bddd8b9d599e4cc Reviewed-by: Petar Perisin <petar.perisin@gmail.com> --- src/plugins/git/gerrit/gerritpushdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/git/gerrit/gerritpushdialog.cpp b/src/plugins/git/gerrit/gerritpushdialog.cpp index 26aa107d84f..d66c97f72b8 100644 --- a/src/plugins/git/gerrit/gerritpushdialog.cpp +++ b/src/plugins/git/gerrit/gerritpushdialog.cpp @@ -238,7 +238,7 @@ QString GerritPushDialog::selectedRemoteBranchName() const QString GerritPushDialog::selectedPushType() const { - return m_ui->draftCheckBox->isChecked() ? QLatin1String("draft") : QLatin1String("for"); + return m_ui->draftCheckBox->isChecked() ? QLatin1String("drafts") : QLatin1String("for"); } QString GerritPushDialog::selectedTopic() const -- GitLab From 0b14660427ab999d7ae1027ff825851b75431b11 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@digia.com> Date: Thu, 2 Jan 2014 13:26:38 +0100 Subject: [PATCH 15/42] QmlDesigner.PropertyEditor: remove remaining transactions from controls Since there are issues with transaction we play safe. Task-number: QTCREATORBUG-11134 Change-Id: I2144f81f14046317d967d6644befeb74e8d27eb8 Reviewed-by: Marco Bubke <marco.bubke@digia.com> --- .../propertyEditorQmlSources/HelperWidgets/CheckBox.qml | 7 ------- .../propertyEditorQmlSources/HelperWidgets/SpinBox.qml | 8 -------- 2 files changed, 15 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CheckBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CheckBox.qml index fa85db2fb48..f565694f728 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CheckBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CheckBox.qml @@ -66,13 +66,6 @@ Controls.CheckBox { backendValue.value = checkBox.checked; } - onFocusChanged: { - if (focus) { - transaction.start(); - } else { - transaction.end(); - } - } style: CheckBoxStyle { spacing: 8 label: Controls.Label { text: control.text ; color: checkBox.textColor } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml index 1d361b8273f..43cc05fa84d 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml @@ -63,14 +63,6 @@ Controls.SpinBox { backendValue.value = value; } - onFocusChanged: { - if (focus) { - transaction.start(); - } else { - transaction.end(); - } - } - Controls.Slider { id: slider -- GitLab From 2f5bae02b397b94fe60a8c530bf4a3f31247ee4e Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@digia.com> Date: Mon, 16 Dec 2013 13:21:22 +0100 Subject: [PATCH 16/42] QmlProjectManager: Fix support for Files Change-Id: I7b6931eb193aca446bc7936f003c5a2f5e41c7f6 Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- .../fileformat/qmlprojectfileformat.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.cpp b/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.cpp index eac59378a0a..9aec5dd2de6 100644 --- a/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.cpp +++ b/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.cpp @@ -55,6 +55,10 @@ void setupFileFilterItem(QmlProjectManager::FileFilterBaseItem *fileFilterItem, if (pathsProperty.isValid()) fileFilterItem->setPathsProperty(pathsProperty.toStringList()); + const QVariant filterProperty = node->property(QLatin1String("filter")); + if (filterProperty.isValid()) + fileFilterItem->setFilter(filterProperty.toString()); + if (debug) qDebug() << "directory:" << directoryProperty << "recursive" << recursiveProperty << "paths" << pathsProperty; } @@ -117,6 +121,12 @@ QmlProjectItem *QmlProjectFileFormat::parseProjectFile(const QString &fileName, CssFileFilterItem *cssFileFilterItem = new CssFileFilterItem(projectItem); setupFileFilterItem(cssFileFilterItem, childNode); projectItem->appendContent(cssFileFilterItem); + } else if (childNode->name() == QLatin1String("Files")) { + if (debug) + qDebug() << "Files"; + OtherFileFilterItem *otherFileFilterItem = new OtherFileFilterItem(projectItem); + setupFileFilterItem(otherFileFilterItem, childNode); + projectItem->appendContent(otherFileFilterItem); } else { qWarning() << "Unknown type:" << childNode->name(); } -- GitLab From 50ed6fbb2b600ebf8413134566b2c4932e1349fb Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@digia.com> Date: Thu, 2 Jan 2014 15:21:09 +0100 Subject: [PATCH 17/42] QmlDesigner.DragTool: refactor committing of transaction I created commitTransaction() which is called whenever we change to the selection tool. Task-number: QTCREATORBUG-11134 Change-Id: I1b98c8ff45864decd36f24b219f7d952e44de8fc Reviewed-by: Marco Bubke <marco.bubke@digia.com> Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com> --- .../components/formeditor/dragtool.cpp | 23 +++++++++---------- .../components/formeditor/dragtool.h | 2 +- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/src/plugins/qmldesigner/components/formeditor/dragtool.cpp b/src/plugins/qmldesigner/components/formeditor/dragtool.cpp index 20c1db6b19c..257c02b9da2 100644 --- a/src/plugins/qmldesigner/components/formeditor/dragtool.cpp +++ b/src/plugins/qmldesigner/components/formeditor/dragtool.cpp @@ -97,6 +97,7 @@ void DragTool::keyPressEvent(QKeyEvent *event) if (event->key() == Qt::Key_Escape) { abort(); event->accept(); + commitTransaction(); view()->changeToSelectionTool(); } } @@ -264,10 +265,15 @@ void DragTool::abort() m_dragNode.destroy(); QmlDesignerItemLibraryDragAndDrop::CustomDragAndDrop::hide(); +} - if (m_rewriterTransaction.isValid()) +void DragTool::commitTransaction() +{ + try { m_rewriterTransaction.commit(); - + } catch (RewritingException &e) { + QMessageBox::warning(0, "Error", e.description()); + } } void DragTool::dropEvent(QGraphicsSceneDragDropEvent * event) @@ -277,11 +283,8 @@ void DragTool::dropEvent(QGraphicsSceneDragDropEvent * event) event->accept(); end(generateUseSnapping(event->modifiers())); - try { - m_rewriterTransaction.commit(); - } catch (RewritingException &e) { - QMessageBox::warning(0, "Error", e.description()); - } + commitTransaction(); + if (m_dragNode.isValid()) { QList<QmlItemNode> nodeList; nodeList.append(m_dragNode); @@ -337,11 +340,7 @@ void DragTool::dragLeaveEvent(QGraphicsSceneDragDropEvent * event) m_moveManipulator.end(); clear(); - try { - m_rewriterTransaction.commit(); - } catch (RewritingException &e) { - QMessageBox::warning(0, "Error", e.description()); - } + commitTransaction(); QmlDesignerItemLibraryDragAndDrop::CustomDragAndDrop::show(); QList<QmlItemNode> nodeList; diff --git a/src/plugins/qmldesigner/components/formeditor/dragtool.h b/src/plugins/qmldesigner/components/formeditor/dragtool.h index ed4961a05bf..da1084163fc 100644 --- a/src/plugins/qmldesigner/components/formeditor/dragtool.h +++ b/src/plugins/qmldesigner/components/formeditor/dragtool.h @@ -109,7 +109,7 @@ protected: private: - + void commitTransaction(); void createQmlItemNode(const ItemLibraryEntry &itemLibraryEntry, QmlItemNode parentNode, QPointF scenePos); void createQmlItemNodeFromImage(const QString &imageName, QmlItemNode parentNode, QPointF scenePos); FormEditorItem* calculateContainer(const QPointF &point, FormEditorItem * currentItem = 0); -- GitLab From 84e750431731ea3f795d72b90c64320dbefd3239 Mon Sep 17 00:00:00 2001 From: Ulf Hermann <ulf.hermann@digia.com> Date: Fri, 13 Dec 2013 17:27:31 +0100 Subject: [PATCH 18/42] QmlProfiler: Make sure the painter state is restored at some point. By returning early from the method painting the binding loop markers painter states could be left on the stack, triggering error messages later. Change-Id: I0b9c336e44a28feec96c506d0e3d0da291054bbd Reviewed-by: Kai Koehne <kai.koehne@digia.com> --- src/plugins/qmlprofiler/timelinerenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmlprofiler/timelinerenderer.cpp b/src/plugins/qmlprofiler/timelinerenderer.cpp index b3385fb3648..f734c1def27 100644 --- a/src/plugins/qmlprofiler/timelinerenderer.cpp +++ b/src/plugins/qmlprofiler/timelinerenderer.cpp @@ -233,7 +233,7 @@ void TimelineRenderer::drawBindingLoopMarkers(QPainter *p, int modelIndex, int f int shadowoffset = 2; if ((yfrom + radius + shadowoffset < 0 && yto + radius + shadowoffset < 0) || (yfrom - radius >= height() && yto - radius >= height())) - return; + break; // shadow p->setPen(shadowPen); -- GitLab From 54340fd13b1ae3a07af2f0705541ba2de6d90124 Mon Sep 17 00:00:00 2001 From: Ulf Hermann <ulf.hermann@digia.com> Date: Tue, 17 Dec 2013 16:04:03 +0100 Subject: [PATCH 19/42] QmlProfiler: Make sure the different models agree on their state Previously, the QmlProfilerSimpleModel would report a count of 1/1 when empty while all others report 0/1. This leads to the UI waiting forever for the "missing" data. Task-number: QTCREATORBUG-11095 Change-Id: I165278caa5a2bece362bf869608d501d7f553c91 Reviewed-by: Kai Koehne <kai.koehne@digia.com> --- src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp b/src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp index 0ab64ae572f..6c1cdd2c0d8 100644 --- a/src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp +++ b/src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp @@ -100,7 +100,7 @@ qint64 QmlProfilerSimpleModel::lastTimeMark() const void QmlProfilerSimpleModel::complete() { - m_modelManager->modelProxyCountUpdated(m_modelId, 1, 1); + m_modelManager->modelProxyCountUpdated(m_modelId, isEmpty() ? 0 : 1, 1); emit changed(); } -- GitLab From 178bf93d15e5070dde16c32ccc72357090091bf9 Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Mon, 6 Jan 2014 10:36:40 +0100 Subject: [PATCH 20/42] Core: Add ICore::dialogParent() specific for use as dialog parent Change-Id: I72dca0f95b418a32ac3859f086053f91b9e9ec67 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> --- src/plugins/coreplugin/icore.cpp | 15 ++++++++++++++- src/plugins/coreplugin/icore.h | 1 + 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/icore.cpp b/src/plugins/coreplugin/icore.cpp index a226c2b6094..561b2a9d36b 100644 --- a/src/plugins/coreplugin/icore.cpp +++ b/src/plugins/coreplugin/icore.cpp @@ -33,6 +33,7 @@ #include <extensionsystem/pluginmanager.h> #include <QSysInfo> +#include <QApplication> /*! \namespace Core @@ -170,9 +171,15 @@ Returns the main application window. - For use as dialog parent, and so on. + For dialog parents use \c dialogParent(). */ +/*! + \fn QWidget *ICore::dialogParent() + + Returns a widget pointer suitable to use as parent for QDialogs. + */ + /*! \fn IContext *ICore::currentContextObject() @@ -451,6 +458,12 @@ QWidget *ICore::mainWindow() return m_mainwindow; } +QWidget *ICore::dialogParent() +{ + QWidget *active = QApplication::activeModalWidget(); + return active ? active : m_mainwindow; +} + QStatusBar *ICore::statusBar() { return m_mainwindow->statusBar(); diff --git a/src/plugins/coreplugin/icore.h b/src/plugins/coreplugin/icore.h index 5f4fbdb14f1..b716db16a10 100644 --- a/src/plugins/coreplugin/icore.h +++ b/src/plugins/coreplugin/icore.h @@ -94,6 +94,7 @@ public: static QString buildCompatibilityString(); static QWidget *mainWindow(); + static QWidget *dialogParent(); static QStatusBar *statusBar(); /* Raises and activates the window for the widget. This contains workarounds for X11. */ static void raiseWindow(QWidget *widget); -- GitLab From f5544d4c2d750424834d3a2aecff30c25ba01df2 Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Fri, 3 Jan 2014 23:51:10 +0100 Subject: [PATCH 21/42] Debugger: Fix off-by-one when displaying "plottable" data Change-Id: I93b3ba02e0d2ebde829ec8120a847429ca712450 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> --- share/qtcreator/debugger/gdbbridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py index 7803f48eae8..03656e123ed 100644 --- a/share/qtcreator/debugger/gdbbridge.py +++ b/share/qtcreator/debugger/gdbbridge.py @@ -1178,7 +1178,7 @@ class Dumper(DumperBase): f.write("set grid\n") f.write("set style data lines;\n") f.write("plot '-' title '%s'\n" % iname) - for i in range(1, n): + for i in range(0, n): f.write(" %s\n" % base.dereference()) base += 1 f.write("e\n") -- GitLab From 6d19f33f79011c0c704e03e9b29ce6edaf630ad5 Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Mon, 6 Jan 2014 10:56:30 +0100 Subject: [PATCH 22/42] DocumentManager: Use ICore::dialogParent for all dialogs Change-Id: Id2eda57bc816c8601a3460aaf224852c267d336e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> --- src/plugins/coreplugin/documentmanager.cpp | 26 ++++++++++------------ src/plugins/coreplugin/documentmanager.h | 2 +- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/src/plugins/coreplugin/documentmanager.cpp b/src/plugins/coreplugin/documentmanager.cpp index 9e7dbbdba35..8311da8a495 100644 --- a/src/plugins/coreplugin/documentmanager.cpp +++ b/src/plugins/coreplugin/documentmanager.cpp @@ -135,7 +135,7 @@ struct FileState struct DocumentManagerPrivate { - explicit DocumentManagerPrivate(QMainWindow *mw); + DocumentManagerPrivate(); QFileSystemWatcher *fileWatcher(); QFileSystemWatcher *linkWatcher(); @@ -150,7 +150,6 @@ struct DocumentManagerPrivate QString m_currentFile; - QMainWindow *m_mainWindow; QFileSystemWatcher *m_fileWatcher; // Delayed creation. QFileSystemWatcher *m_linkWatcher; // Delayed creation (only UNIX/if a link is seen). bool m_blockActivated; @@ -193,8 +192,7 @@ QFileSystemWatcher *DocumentManagerPrivate::linkWatcher() return fileWatcher(); } -DocumentManagerPrivate::DocumentManagerPrivate(QMainWindow *mw) : - m_mainWindow(mw), +DocumentManagerPrivate::DocumentManagerPrivate() : m_fileWatcher(0), m_linkWatcher(0), m_blockActivated(false), @@ -213,10 +211,10 @@ namespace Core { using namespace Internal; -DocumentManager::DocumentManager(QMainWindow *mw) - : QObject(mw) +DocumentManager::DocumentManager(QObject *parent) + : QObject(parent) { - d = new DocumentManagerPrivate(mw); + d = new DocumentManagerPrivate; m_instance = this; connect(ICore::instance(), SIGNAL(contextChanged(QList<Core::IContext*>,Core::Context)), this, SLOT(syncWithEditor(QList<Core::IContext*>))); @@ -619,7 +617,7 @@ static QList<IDocument *> saveModifiedFilesHelper(const QList<IDocument *> &docu if (silently) { documentsToSave = modifiedDocuments; } else { - SaveItemsDialog dia(d->m_mainWindow, modifiedDocuments); + SaveItemsDialog dia(ICore::dialogParent(), modifiedDocuments); if (!message.isEmpty()) dia.setMessage(message); if (!alwaysSaveMessage.isNull()) @@ -643,7 +641,7 @@ static QList<IDocument *> saveModifiedFilesHelper(const QList<IDocument *> &docu roDocuments << document; } if (!roDocuments.isEmpty()) { - Core::Internal::ReadOnlyFilesDialog roDialog(roDocuments, d->m_mainWindow); + ReadOnlyFilesDialog roDialog(roDocuments, ICore::dialogParent()); roDialog.setShowFailWarning(true, DocumentManager::tr( "Could not save the files.", "error message")); @@ -683,7 +681,7 @@ bool DocumentManager::saveDocument(IDocument *document, const QString &fileName, } *isReadOnly = false; } - QMessageBox::critical(d->m_mainWindow, tr("File Error"), + QMessageBox::critical(ICore::dialogParent(), tr("File Error"), tr("Error while saving file: %1").arg(errorString)); out: ret = false; @@ -703,7 +701,7 @@ QString DocumentManager::getSaveFileName(const QString &title, const QString &pa do { repeat = false; fileName = QFileDialog::getSaveFileName( - d->m_mainWindow, title, path, filter, selectedFilter, QFileDialog::DontConfirmOverwrite); + ICore::dialogParent(), title, path, filter, selectedFilter, QFileDialog::DontConfirmOverwrite); if (!fileName.isEmpty()) { // If the selected filter is All Files (*) we leave the name exactly as the user // specified. Otherwise the suffix must be one available in the selected filter. If @@ -727,7 +725,7 @@ QString DocumentManager::getSaveFileName(const QString &title, const QString &pa } } if (QFile::exists(fileName)) { - if (QMessageBox::warning(d->m_mainWindow, tr("Overwrite?"), + if (QMessageBox::warning(ICore::dialogParent(), tr("Overwrite?"), tr("An item named '%1' already exists at this location. " "Do you want to overwrite it?").arg(fileName), QMessageBox::Yes | QMessageBox::No) == QMessageBox::No) { @@ -800,7 +798,7 @@ QStringList DocumentManager::getOpenFileNames(const QString &filters, if (path.isEmpty() && useProjectsDirectory()) path = projectsDirectory(); } - const QStringList files = QFileDialog::getOpenFileNames(d->m_mainWindow, + const QStringList files = QFileDialog::getOpenFileNames(ICore::dialogParent(), tr("Open File"), path, filters, selectedFilter); @@ -1029,7 +1027,7 @@ void DocumentManager::checkForReload() d->m_blockedIDocument = 0; } if (!errorStrings.isEmpty()) - QMessageBox::critical(d->m_mainWindow, tr("File Error"), + QMessageBox::critical(ICore::dialogParent(), tr("File Error"), errorStrings.join(QLatin1String("\n"))); // handle deleted files diff --git a/src/plugins/coreplugin/documentmanager.h b/src/plugins/coreplugin/documentmanager.h index 70168a2b231..74491544489 100644 --- a/src/plugins/coreplugin/documentmanager.h +++ b/src/plugins/coreplugin/documentmanager.h @@ -153,7 +153,7 @@ private slots: void syncWithEditor(const QList<Core::IContext *> &context); private: - explicit DocumentManager(QMainWindow *ew); + explicit DocumentManager(QObject *parent); ~DocumentManager(); friend class Core::Internal::MainWindow; -- GitLab From 2f2e150923f0242a55f9514a4c334e5256b428e8 Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Fri, 3 Jan 2014 14:16:49 +0100 Subject: [PATCH 23/42] BlackBerry: Give setup wizard a proper parent Change-Id: Ic1e4b85d4edcd1c6f1ea1e38c9219a1a192b6d21 Reviewed-by: Mehdi Fekari <mfekari@blackberry.com> Reviewed-by: Rafael Roquetto <rafael.roquetto@kdab.com> --- src/plugins/qnx/blackberryndksettingswidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qnx/blackberryndksettingswidget.cpp b/src/plugins/qnx/blackberryndksettingswidget.cpp index bd532bb3458..87292867666 100644 --- a/src/plugins/qnx/blackberryndksettingswidget.cpp +++ b/src/plugins/qnx/blackberryndksettingswidget.cpp @@ -123,7 +123,7 @@ void BlackBerryNDKSettingsWidget::launchBlackBerrySetupWizard() const return; } - BlackBerrySetupWizard wizard; + BlackBerrySetupWizard wizard(Core::ICore::mainWindow()); connect(&wizard, SIGNAL(ndkTargetsUpdated()), this, SLOT(updateNdkList())); wizard.exec(); } -- GitLab From 0ede1a7318a77034b94c61b0a1e374751ee3fc48 Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Fri, 3 Jan 2014 14:43:29 +0100 Subject: [PATCH 24/42] DocumentManager: Use suitable parent for file reload dialog Change-Id: I77c223b505bc97b64fcc27d5fab3514722ebaa02 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> --- src/plugins/coreplugin/documentmanager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/documentmanager.cpp b/src/plugins/coreplugin/documentmanager.cpp index 8311da8a495..80d5794afbc 100644 --- a/src/plugins/coreplugin/documentmanager.cpp +++ b/src/plugins/coreplugin/documentmanager.cpp @@ -965,7 +965,8 @@ void DocumentManager::checkForReload() success = document->reload(&errorString, IDocument::FlagReload, IDocument::TypeContents); } else { // Ask about content change - previousReloadAnswer = Utils::reloadPrompt(document->filePath(), document->isModified(), QApplication::activeWindow()); + previousReloadAnswer = Utils::reloadPrompt(document->filePath(), document->isModified(), + ICore::dialogParent()); switch (previousReloadAnswer) { case Utils::ReloadAll: case Utils::ReloadCurrent: -- GitLab From 3082d5c0fdcaa829bff1c6a0a1b2fbcd64e73f25 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@digia.com> Date: Thu, 19 Dec 2013 17:24:58 +0100 Subject: [PATCH 25/42] Squish: Remove pointless code Change-Id: I8fb227301cf1375f159a8dbe3f6197cd0451d0ae Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- tests/system/suite_general/tst_create_proj_wizard/test.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/system/suite_general/tst_create_proj_wizard/test.py b/tests/system/suite_general/tst_create_proj_wizard/test.py index deab7eb5be0..ad1eb777198 100644 --- a/tests/system/suite_general/tst_create_proj_wizard/test.py +++ b/tests/system/suite_general/tst_create_proj_wizard/test.py @@ -34,11 +34,6 @@ import re def main(): global tmpSettingsDir quickCombinations = [[1,False], [2,False], [2,True]] - sourceExample = os.path.abspath(sdkPath + "/Examples/4.7/declarative/text/textselection") - qmlFile = os.path.join("qml", "textselection.qml") - if not neededFilePresent(os.path.join(sourceExample, qmlFile)): - return - templateDir = prepareTemplate(sourceExample) startApplication("qtcreator" + SettingsPath) if not startedWithoutPluginError(): return -- GitLab From c2472276187587d0b70c0f5b992f90d81edae757 Mon Sep 17 00:00:00 2001 From: Marco Bubke <marco.bubke@digia.com> Date: Tue, 17 Dec 2013 17:36:42 +0100 Subject: [PATCH 26/42] QmlDesigner: Fix crash for master document handling Happens for dragging a list view in the document. Change-Id: Id8d00fc880789a0e5e85d455850bb1ec3eaac434 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com> Reviewed-by: Marco Bubke <marco.bubke@digia.com> --- .../qmldesigner/components/integration/componentview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/components/integration/componentview.cpp b/src/plugins/qmldesigner/components/integration/componentview.cpp index 122c14797af..53f90a407a4 100644 --- a/src/plugins/qmldesigner/components/integration/componentview.cpp +++ b/src/plugins/qmldesigner/components/integration/componentview.cpp @@ -126,7 +126,7 @@ void ComponentView::addMasterDocument() void ComponentView::removeMasterDocument() { - m_standardItemModel->removeColumn(indexOfMaster()); + m_standardItemModel->removeRow(indexOfMaster()); } QString ComponentView::descriptionForNode(const ModelNode &node) const -- GitLab From d787e4e2abc81fef00b4035baf08eddaf866e34c Mon Sep 17 00:00:00 2001 From: Christian Stenger <christian.stenger@digia.com> Date: Tue, 17 Dec 2013 13:52:28 +0100 Subject: [PATCH 27/42] Squish: Enhance tst_default_settings Change-Id: I150d4d53a6e6e93749f9cdbfe33971633805573a Reviewed-by: Robert Loehning <robert.loehning@digia.com> --- tests/system/objects.map | 6 +- tests/system/shared/project_explorer.py | 2 +- tests/system/shared/utils.py | 6 +- .../tst_default_settings/test.py | 62 +++++++++++++++++-- 4 files changed, 64 insertions(+), 12 deletions(-) diff --git a/tests/system/objects.map b/tests/system/objects.map index 91d15268215..325f6931904 100644 --- a/tests/system/objects.map +++ b/tests/system/objects.map @@ -34,6 +34,7 @@ :Behavior.Autocomplete common prefix_QCheckBox {container=':CppTools__Internal__CompletionSettingsPage.Behavior_QGroupBox' name='partiallyComplete' text='Autocomplete common prefix' type='QCheckBox' visible='1'} :Behavior.completionTrigger_QComboBox {container=':CppTools__Internal__CompletionSettingsPage.Behavior_QGroupBox' name='completionTrigger' type='QComboBox' visible='1'} :Breakpoints_Debugger::Internal::BreakTreeView {container=':DebugModeWidget.Breakpoints_QDockWidget' type='Debugger::Internal::BreakTreeView' unnamed='1' visible='1'} +:BuildAndRun_QTreeView {container=':qt_tabwidget_stackedwidget_QWidget' type='QTreeView' unnamed='1' visible='1'} :CMake Wizard.Cancel_QPushButton {text='Cancel' type='QPushButton' visible='1' window=':CMake Wizard_CMakeProjectManager::Internal::CMakeOpenProjectWizard'} :CMake Wizard.Finish_QPushButton {text~='(Finish|Done)' type='QPushButton' visible='1' window=':CMake Wizard_CMakeProjectManager::Internal::CMakeOpenProjectWizard'} :CMake Wizard.Generator:_QLabel {text='Generator:' type='QLabel' unnamed='1' visible='1' window=':CMake Wizard_CMakeProjectManager::Internal::CMakeOpenProjectWizard'} @@ -49,9 +50,8 @@ :CodePaster__Internal__PasteSelectDialog.listWidget_QListWidget {name='listWidget' type='QListWidget' visible='1' window=':CodePaster__Internal__PasteSelectDialog_CodePaster::PasteSelectDialog'} :CodePaster__Internal__PasteSelectDialog.protocolBox_QComboBox {name='protocolBox' type='QComboBox' visible='1' window=':CodePaster__Internal__PasteSelectDialog_CodePaster::PasteSelectDialog'} :CodePaster__Internal__PasteSelectDialog_CodePaster::PasteSelectDialog {name='CodePaster__Internal__PasteSelectDialog' type='CodePaster::PasteSelectDialog' visible='1'} -:Compiler:_QComboBox {aboveWidget=':CompilerPath.Utils_BaseValidatingLineEdit' container=':qt_tabwidget_stackedwidget_QWidget' leftWidget=':Compiler:_QLabel' type='QComboBox' unnamed='1' visible='1'} +:Compiler:_QComboBox {aboveWidget=':Path.Utils_BaseValidatingLineEdit' container=':qt_tabwidget_stackedwidget_QWidget' leftWidget=':Compiler:_QLabel' type='QComboBox' unnamed='1' visible='1'} :Compiler:_QLabel {container=':qt_tabwidget_stackedwidget_QWidget' text='Compiler:' type='QLabel' unnamed='1' visible='1'} -:CompilerPath.Utils_BaseValidatingLineEdit {container=':qt_tabwidget_stackedwidget_QWidget' name='LineEdit' type='Utils::BaseValidatingLineEdit' visible='1'} :Core__Internal__GeneralSettings.User Interface_QGroupBox {container=':qt_tabwidget_stackedwidget.Core__Internal__GeneralSettings_QWidget' name='interfaceBox' title='User Interface' type='QGroupBox' visible='1'} :CppTools__Internal__CompletionSettingsPage.Behavior_QGroupBox {container=':qt_tabwidget_stackedwidget.CppTools__Internal__CompletionSettingsPage_QWidget' name='groupBox' title='Behavior' type='QGroupBox' visible='1'} :CreateProject_QStyleItem {clip='false' container=':Qt Creator_QDeclarativeView' enabled='true' text='Create Project' type='LinkedText' unnamed='1' visible='true'} @@ -97,7 +97,6 @@ :Hits_QCLuceneResultWidget {aboveWidget=':Hits_QLabel' type='QCLuceneResultWidget' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'} :Hits_QLabel {text~='\\\\d+ - \\\\d+ of \\\\d+ Hits' type='QLabel' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'} :JavaScript.QmlProfilerEventsTable_QmlProfiler::Internal::QV8ProfilerEventsMainView {container=':*Qt Creator.JavaScript_QDockWidget' name='QmlProfilerEventsTable' type='QmlProfiler::Internal::QV8ProfilerEventsMainView' visible='1'} -:Kits_Or_Compilers_QTreeView {container=':qt_tabwidget_stackedwidget_QWidget' type='QTreeView' unnamed='1' visible='1'} :Kits_QtVersion_QComboBox {container=':qt_tabwidget_stackedwidget_QWidget' occurrence='5' type='QComboBox' unnamed='1' visible='1'} :Locals and Expressions_Debugger::Internal::WatchTreeView {container=':DebugModeWidget.Locals and Expressions_QDockWidget' name='WatchWindow' type='Debugger::Internal::WatchTreeView' visible='1' windowTitle='Locals and Expressions'} :New Text File.Add to project:_QLabel {name='projectLabel' text='Add to project:' type='QLabel' visible='1' window=':New Text File_Utils::FileWizardDialog'} @@ -118,6 +117,7 @@ :Options.qt_tabwidget_tabbar_QTabBar {name='qt_tabwidget_tabbar' type='QTabBar' visible='1' window=':Options_Core::Internal::SettingsDialog'} :Options_Core::Internal::SettingsDialog {type='Core::Internal::SettingsDialog' unnamed='1' visible='1' windowTitle~='(Options|Preferences)'} :Options_QListView {type='QListView' unnamed='1' visible='1' window=':Options_Core::Internal::SettingsDialog'} +:Path.Utils_BaseValidatingLineEdit {container=':qt_tabwidget_stackedwidget_QWidget' name='LineEdit' type='Utils::BaseValidatingLineEdit' visible='1'} :QML Debugging.No_QPushButton {text='No' type='QPushButton' unnamed='1' visible='1' window=':QML Debugging_QMessageBox'} :QML Debugging_QMessageBox {text='The option will only take effect if the project is recompiled. Do you want to recompile now?' type='QMessageBox' unnamed='1' visible='1'} :QWebPage {type='QWebPage' unnamed='1'} diff --git a/tests/system/shared/project_explorer.py b/tests/system/shared/project_explorer.py index 23e8327bbf5..4853afd3ad5 100644 --- a/tests/system/shared/project_explorer.py +++ b/tests/system/shared/project_explorer.py @@ -185,7 +185,7 @@ def getQtInformationForQmlProject(): waitForObjectItem(":Options_QListView", "Build & Run") clickItem(":Options_QListView", "Build & Run", 14, 15, 0, Qt.LeftButton) clickOnTab(":Options.qt_tabwidget_tabbar_QTabBar", "Kits") - targetsTreeView = waitForObject(":Kits_Or_Compilers_QTreeView") + targetsTreeView = waitForObject(":BuildAndRun_QTreeView") if not __selectTreeItemOnBuildAndRun__(targetsTreeView, "%s(\s\(default\))?" % kit, True): test.fatal("Found no matching kit - this shouldn't happen.") clickButton(waitForObject(":Options.Cancel_QPushButton")) diff --git a/tests/system/shared/utils.py b/tests/system/shared/utils.py index 073aa981e53..b6ccff804d2 100644 --- a/tests/system/shared/utils.py +++ b/tests/system/shared/utils.py @@ -393,7 +393,7 @@ def getConfiguredKits(): return treeWidget.currentItem().text(0) # end of internal function for iterateQtVersions def __setQtVersionForKit__(kit, kitName, kitsQtVersionName): - treeView = waitForObject(":Kits_Or_Compilers_QTreeView") + treeView = waitForObject(":BuildAndRun_QTreeView") clickItem(treeView, kit, 5, 5, 0, Qt.LeftButton) qtVersionStr = str(waitForObject(":Kits_QtVersion_QComboBox").currentText) kitsQtVersionName[kitName] = qtVersionStr @@ -446,7 +446,7 @@ def regexVerify(text, expectedTexts): def checkDebuggingLibrary(kitIDs): def __getQtVersionForKit__(kit, kitName): - treeView = waitForObject(":Kits_Or_Compilers_QTreeView") + treeView = waitForObject(":BuildAndRun_QTreeView") clickItem(treeView, kit, 5, 5, 0, Qt.LeftButton) return str(waitForObject(":Kits_QtVersion_QComboBox").currentText) # end of internal function for iterate kits @@ -598,7 +598,7 @@ def iterateKits(keepOptionsOpen=False, alreadyOnOptionsDialog=False, waitForObjectItem(":Options_QListView", "Build & Run") clickItem(":Options_QListView", "Build & Run", 14, 15, 0, Qt.LeftButton) clickOnTab(":Options.qt_tabwidget_tabbar_QTabBar", "Kits") - treeView = waitForObject(":Kits_Or_Compilers_QTreeView") + treeView = waitForObject(":BuildAndRun_QTreeView") model = treeView.model() test.compare(model.rowCount(), 2, "Verifying expected target section count") autoDetected = model.index(0, 0) diff --git a/tests/system/suite_general/tst_default_settings/test.py b/tests/system/suite_general/tst_default_settings/test.py index a81a6b54a07..65149c50f42 100644 --- a/tests/system/suite_general/tst_default_settings/test.py +++ b/tests/system/suite_general/tst_default_settings/test.py @@ -65,10 +65,18 @@ def __checkBuildAndRun__(): foundCompilers = [] foundCompilerNames = [] clickOnTab(":Options.qt_tabwidget_tabbar_QTabBar", "Compilers") - compilerTV = waitForObject(":Kits_Or_Compilers_QTreeView") + compilerTV = waitForObject(":BuildAndRun_QTreeView") __iterateTree__(compilerTV, __compFunc__, foundCompilers, foundCompilerNames) test.verify(__compareCompilers__(foundCompilers, expectedCompilers), "Verifying found and expected compilers are equal.") + # check debugger + expectedDebuggers = __getExpectedDebuggers__() + clickOnTab(":Options.qt_tabwidget_tabbar_QTabBar", "Debuggers") + foundDebugger = [] + debuggerTV = waitForObject(":BuildAndRun_QTreeView") + __iterateTree__(debuggerTV, __dbgFunc__, foundDebugger) + test.verify(__compareDebuggers__(foundDebugger, expectedDebuggers), + "Verifying found and expected debuggers are equal.") # check Qt versions qmakePath = which("qmake") foundQt = [] @@ -79,7 +87,7 @@ def __checkBuildAndRun__(): foundQt = foundQt[0] # check kits clickOnTab(":Options.qt_tabwidget_tabbar_QTabBar", "Kits") - kitsTV = waitForObject(":Kits_Or_Compilers_QTreeView") + kitsTV = waitForObject(":BuildAndRun_QTreeView") __iterateTree__(kitsTV, __kitFunc__, foundQt, foundCompilerNames) def __iterateTree__(treeObj, additionalFunc, *additionalParameters): @@ -104,8 +112,8 @@ def __iterateTree__(treeObj, additionalFunc, *additionalParameters): def __compFunc__(it, foundComp, foundCompNames): try: - waitFor("object.exists(':CompilerPath.Utils_BaseValidatingLineEdit')", 1000) - pathLineEdit = findObject(":CompilerPath.Utils_BaseValidatingLineEdit") + waitFor("object.exists(':Path.Utils_BaseValidatingLineEdit')", 1000) + pathLineEdit = findObject(":Path.Utils_BaseValidatingLineEdit") foundComp.append(str(pathLineEdit.text)) except: label = findObject("{buddy={container=':qt_tabwidget_stackedwidget_QWidget' " @@ -114,6 +122,11 @@ def __compFunc__(it, foundComp, foundCompNames): foundComp.append({it:str(label.text)}) foundCompNames.append(it) +def __dbgFunc__(it, foundDbg): + waitFor("object.exists(':Path.Utils_BaseValidatingLineEdit')", 1000) + pathLineEdit = findObject(":Path.Utils_BaseValidatingLineEdit") + foundDbg.append(str(pathLineEdit.text)) + def __qtFunc__(it, foundQt, qmakePath): foundQt.append(it) qtPath = str(waitForObject(":QtSupport__Internal__QtVersionManager.qmake_QLabel").text) @@ -197,6 +210,26 @@ def __getWinEnvVars__(): os.remove(tmpFPath) return result +def __getExpectedDebuggers__(): + result = [] + if platform.system() in ('Microsoft', 'Windows'): + result.extend(__getCDB__()) + debuggers = ["gdb", "lldb"] + result.extend(filter(None, map(which, debuggers))) + return result + +def __getCDB__(): + result = [] + possibleLocations = ["C:\\Program Files\\Debugging Tools for Windows (x64)", + "C:\\Program Files (x86)\\Windows Kits\\8.0\\Debuggers\\x86", + "C:\\Program Files\\Windows Kits\\8.0\\Debuggers\\x86", + "C:\\Program Files (x86)\\Windows Kits\\8.1\\Debuggers\\x86", + "C:\\Program Files\\Windows Kits\\8.1\\Debuggers\\x86"] + for cdbPath in possibleLocations: + cdb = os.path.join(cdbPath, "cdb.exe") + if os.path.exists(cdb): + result.append(cdb) + return result def __compareCompilers__(foundCompilers, expectedCompilers): equal = True @@ -232,6 +265,24 @@ def __compareCompilers__(foundCompilers, expectedCompilers): break return equal +def __compareDebuggers__(foundDebuggers, expectedDebuggers): + if not len(foundDebuggers) == len(expectedDebuggers): + test.log("Number of found and expected debuggers do not match.", + "Found: %s\nExpected: %s" % (str(foundDebuggers), str(expectedDebuggers))) + return False + if platform.system() in ('Microsoft', 'Windows'): + foundSet = set(__lowerStrs__(foundDebuggers)) + expectedSet = set(__lowerStrs__(expectedDebuggers)) + else: + foundSet = set(foundDebuggers) + expectedSet = set(expectedDebuggers) + if not (test.verify(not foundSet.symmetric_difference(expectedSet), + "Verifying expected and found debuggers match.")): + test.log("Found debuggers: %s" % foundDebuggers, + "Expected debuggers: %s" % expectedDebuggers) + return False + return True + def __lowerStrs__(iterable): for it in iterable: if isinstance(it, (str, unicode)): @@ -246,7 +297,8 @@ def __checkCreatedSettings__(settingsFolder): files = [{os.path.join(qtProj, "QtCreator.db"):0}, {os.path.join(qtProj, "QtCreator.ini"):30}] folders.append(os.path.join(qtProj, "qtcreator")) - files.extend([{os.path.join(folders[0], "devices.xml"):0}, + files.extend([{os.path.join(folders[0], "debuggers.xml"):0}, + {os.path.join(folders[0], "devices.xml"):0}, {os.path.join(folders[0], "helpcollection.qhc"):0}, {os.path.join(folders[0], "profiles.xml"):0}, {os.path.join(folders[0], "qtversion.xml"):0}, -- GitLab From 590ca2803723f2481c3f6f9e9b5f32ac6d1b8fec Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@digia.com> Date: Mon, 16 Dec 2013 14:59:28 +0100 Subject: [PATCH 28/42] QmlDesigner.PropertyEditor: removing old legacy files I kept them as reference, but they are not needed anymore. The QtQuick 2.0 port is done. Change-Id: Ieb75d506a45636a17adc3c78d7beca6d5c1fd211 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Marco Bubke <marco.bubke@digia.com> --- .../AlignmentHorizontalButtons.qml | 168 ------- .../AlignmentVerticalButtons.qml | 170 ------- .../HelperWidgets/AnchorBox.qml | 227 --------- .../HelperWidgets/AnchorButtons.qml | 234 --------- .../propertyeditor/HelperWidgets/CheckBox.qml | 114 ----- .../HelperWidgets/ColorGroupBox.qml | 381 --------------- .../HelperWidgets/ColorLabel.qml | 38 -- .../HelperWidgets/ColorLineEdit.qml | 161 ------- .../HelperWidgets/ColorScheme.qml | 41 -- .../HelperWidgets/ColorTypeButtons.qml | 147 ------ .../propertyeditor/HelperWidgets/ComboBox.qml | 103 ---- .../HelperWidgets/DoubleSpinBox.qml | 154 ------ .../HelperWidgets/DoubleSpinBoxAlternate.qml | 147 ------ .../HelperWidgets/ExpressionEditor.qml | 117 ----- .../propertyeditor/HelperWidgets/Extended.qml | 221 --------- .../HelperWidgets/ExtendedFunctionButton.qml | 120 ----- .../HelperWidgets/ExtendedPane.qml | 54 --- .../HelperWidgets/ExtendedSwitches.qml | 89 ---- .../HelperWidgets/FlagedButton.qml | 75 --- .../HelperWidgets/FontComboBox.qml | 107 ---- .../HelperWidgets/FontGroupBox.qml | 154 ------ .../HelperWidgets/FontStyleButtons.qml | 149 ------ .../propertyeditor/HelperWidgets/Geometry.qml | 132 ----- .../propertyeditor/HelperWidgets/GroupBox.qml | 86 ---- .../HelperWidgets/GroupBoxOption.qml | 50 -- .../HelperWidgets/HorizontalLayout.qml | 39 -- .../HelperWidgets/HorizontalWhiteLine.qml | 38 -- .../HelperWidgets/IntEditor.qml | 112 ----- .../propertyeditor/HelperWidgets/Label.qml | 37 -- .../propertyeditor/HelperWidgets/Layout.qml | 385 --------------- .../HelperWidgets/LayoutPane.qml | 55 --- .../propertyeditor/HelperWidgets/LineEdit.qml | 161 ------- .../HelperWidgets/Modifiers.qml | 169 ------- .../HelperWidgets/PlaceHolder.qml | 37 -- .../HelperWidgets/PropertyFrame.qml | 54 --- .../HelperWidgets/ScrollArea.qml | 41 -- .../HelperWidgets/SliderWidget.qml | 61 --- .../propertyeditor/HelperWidgets/SpinBox.qml | 144 ------ .../StandardTextColorGroupBox.qml | 77 --- .../HelperWidgets/StandardTextGroupBox.qml | 100 ---- .../propertyeditor/HelperWidgets/Switches.qml | 105 ---- .../HelperWidgets/TextEditor.qml | 165 ------- .../HelperWidgets/TextInputGroupBox.qml | 143 ------ .../HelperWidgets/Transformation.qml | 132 ----- .../propertyeditor/HelperWidgets/Type.qml | 76 --- .../propertyeditor/HelperWidgets/UrlEdit.qml | 57 --- .../HelperWidgets/VerticalLayout.qml | 40 -- .../HelperWidgets/Visibility.qml | 115 ----- .../HelperWidgets/anchorbottom.css | 11 - .../HelperWidgets/anchorbox.css | 32 -- .../HelperWidgets/anchorfill.css | 11 - .../HelperWidgets/anchorhorizontal.css | 11 - .../HelperWidgets/anchorleft.css | 11 - .../HelperWidgets/anchorright.css | 11 - .../HelperWidgets/anchorspacer.css | 11 - .../HelperWidgets/anchortop.css | 11 - .../HelperWidgets/anchorvertical.css | 11 - .../HelperWidgets/applybutton.css | 8 - .../HelperWidgets/aspectlock.css | 11 - .../HelperWidgets/cancelbutton.css | 8 - .../HelperWidgets/checkbox_tr.css | 33 -- .../images/alignmentbottom-h-icon.png | Bin 207 -> 0 bytes .../images/alignmentbottom-icon.png | Bin 207 -> 0 bytes .../images/alignmentcenterh-h-icon.png | Bin 337 -> 0 bytes .../images/alignmentcenterh-icon.png | Bin 295 -> 0 bytes .../images/alignmentleft-h-icon.png | Bin 217 -> 0 bytes .../images/alignmentleft-icon.png | Bin 216 -> 0 bytes .../images/alignmentmiddle-h-icon.png | Bin 206 -> 0 bytes .../images/alignmentmiddle-icon.png | Bin 207 -> 0 bytes .../images/alignmentright-h-icon.png | Bin 338 -> 0 bytes .../images/alignmentright-icon.png | Bin 313 -> 0 bytes .../images/alignmenttop-h-icon.png | Bin 221 -> 0 bytes .../images/alignmenttop-icon.png | Bin 221 -> 0 bytes .../HelperWidgets/images/apply.png | Bin 646 -> 0 bytes .../HelperWidgets/images/behaivour.png | Bin 425 -> 0 bytes .../images/blended-image-icon.png | Bin 340 -> 0 bytes .../HelperWidgets/images/bold-h-icon.png | Bin 447 -> 0 bytes .../HelperWidgets/images/bold-icon.png | Bin 434 -> 0 bytes .../HelperWidgets/images/button.png | Bin 687 -> 0 bytes .../HelperWidgets/images/cancel.png | Bin 749 -> 0 bytes .../HelperWidgets/images/default-icon.png | Bin 341 -> 0 bytes .../HelperWidgets/images/downArrow.png | Bin 855 -> 0 bytes .../HelperWidgets/images/expression.png | Bin 517 -> 0 bytes .../HelperWidgets/images/extended.png | Bin 293 -> 0 bytes .../HelperWidgets/images/grid-icon.png | Bin 369 -> 0 bytes .../images/icon_color_gradient.png | Bin 157 -> 0 bytes .../HelperWidgets/images/icon_color_none.png | Bin 310 -> 0 bytes .../HelperWidgets/images/icon_color_solid.png | Bin 135 -> 0 bytes .../HelperWidgets/images/image-icon.png | Bin 292 -> 0 bytes .../HelperWidgets/images/italic-h-icon.png | Bin 382 -> 0 bytes .../HelperWidgets/images/italic-icon.png | Bin 368 -> 0 bytes .../HelperWidgets/images/item-icon.png | Bin 293 -> 0 bytes .../HelperWidgets/images/layout.png | Bin 369 -> 0 bytes .../HelperWidgets/images/leftArrow.png | Bin 885 -> 0 bytes .../HelperWidgets/images/list-icon.png | Bin 424 -> 0 bytes .../HelperWidgets/images/mouse-area-icon.png | Bin 511 -> 0 bytes .../HelperWidgets/images/placeholder.png | Bin 213 -> 0 bytes .../HelperWidgets/images/rect-icon.png | Bin 237 -> 0 bytes .../HelperWidgets/images/reset-button.png | Bin 741 -> 0 bytes .../HelperWidgets/images/rightArrow.png | Bin 871 -> 0 bytes .../HelperWidgets/images/standard.png | Bin 340 -> 0 bytes .../HelperWidgets/images/strikeout-h-icon.png | Bin 514 -> 0 bytes .../HelperWidgets/images/strikeout-icon.png | Bin 494 -> 0 bytes .../HelperWidgets/images/submenu.png | Bin 389 -> 0 bytes .../HelperWidgets/images/text-edit-icon.png | Bin 368 -> 0 bytes .../HelperWidgets/images/text-icon.png | Bin 582 -> 0 bytes .../HelperWidgets/images/underline-h-icon.png | Bin 367 -> 0 bytes .../HelperWidgets/images/underline-icon.png | Bin 359 -> 0 bytes .../HelperWidgets/images/upArrow.png | Bin 849 -> 0 bytes .../HelperWidgets/layoutWidget.css | 35 -- .../HelperWidgets/propertyEditor.css | 456 ------------------ .../HelperWidgets/specialCheckBox.css | 26 - .../HelperWidgets/styledbuttonleft.css | 11 - .../HelperWidgets/styledbuttonmiddle.css | 12 - .../HelperWidgets/styledbuttonright.css | 12 - .../propertyeditor/HelperWidgets/switch.css | 50 -- .../HelperWidgets/typeLabel.css | 10 - .../BooleanEditorTemplate.template | 14 - .../ColorEditorTemplate.template | 5 - .../IntEditorTemplate.template | 6 - .../RealEditorTemplate.template | 5 - .../StringEditorTemplate.template | 13 - .../PropertyTemplates/TemplateTypes.qml | 29 -- .../UrlEditorTemplate.template | 12 - .../QtQuick/BorderImageSpecifics.qml | 115 ----- .../QtQuick/FlickableGroupBox.qml | 160 ------ .../QtQuick/FlickableSpecifics.qml | 44 -- .../QtQuick/FlipableSpecifics.qml | 35 -- .../propertyeditor/QtQuick/FlowSpecifics.qml | 91 ---- .../propertyeditor/QtQuick/GridSpecifics.qml | 110 ----- .../QtQuick/GridViewSpecifics.qml | 218 --------- .../propertyeditor/QtQuick/ImageSpecifics.qml | 126 ----- .../propertyeditor/QtQuick/ItemPane.qml | 111 ----- .../QtQuick/ListViewSpecifics.qml | 231 --------- .../QtQuick/MouseAreaSpecifics.qml | 83 ---- .../QtQuick/PathViewSpecifics.qml | 190 -------- .../propertyeditor/QtQuick/QtObjectPane.qml | 95 ---- .../QtQuick/RectangleColorGroupBox.qml | 221 --------- .../QtQuick/RectangleSpecifics.qml | 86 ---- .../propertyeditor/QtQuick/RowSpecifics.qml | 73 --- .../QtQuick/TextEditSpecifics.qml | 91 ---- .../QtQuick/TextInputSpecifics.qml | 66 --- .../propertyeditor/QtQuick/TextSpecifics.qml | 64 --- .../QtQuick/Window/WindowPane.qml | 141 ------ .../propertyeditor/QtQuick/emptyPane.qml | 77 --- .../QtWebKit/WebViewSpecifics.qml | 121 ----- 146 files changed, 9207 deletions(-) delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentHorizontalButtons.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentVerticalButtons.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorButtons.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/CheckBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorGroupBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLabel.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLineEdit.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorScheme.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorTypeButtons.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ComboBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBoxAlternate.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExpressionEditor.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Extended.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedFunctionButton.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedPane.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedSwitches.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FlagedButton.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontComboBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontGroupBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontStyleButtons.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Geometry.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBoxOption.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalLayout.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalWhiteLine.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/IntEditor.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Label.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Layout.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LayoutPane.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LineEdit.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Modifiers.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PlaceHolder.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PropertyFrame.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ScrollArea.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SliderWidget.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SpinBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextColorGroupBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextGroupBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Switches.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextEditor.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextInputGroupBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Transformation.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Type.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/UrlEdit.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/VerticalLayout.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Visibility.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbottom.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbox.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorfill.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorhorizontal.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorleft.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorright.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorspacer.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchortop.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorvertical.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/applybutton.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/aspectlock.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/cancelbutton.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/checkbox_tr.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentbottom-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentbottom-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentcenterh-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentcenterh-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentleft-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentleft-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentmiddle-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentmiddle-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentright-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentright-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmenttop-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmenttop-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/apply.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/behaivour.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/blended-image-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/bold-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/bold-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/button.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/cancel.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/default-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/downArrow.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/expression.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/extended.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/grid-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_gradient.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_none.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_solid.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/image-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/italic-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/italic-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/item-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/layout.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/leftArrow.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/list-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/mouse-area-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/placeholder.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/rect-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/reset-button.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/rightArrow.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/standard.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/strikeout-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/strikeout-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/submenu.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/text-edit-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/text-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/underline-h-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/underline-icon.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/upArrow.png delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/layoutWidget.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/propertyEditor.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/specialCheckBox.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonleft.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonmiddle.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonright.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/switch.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/typeLabel.css delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/BooleanEditorTemplate.template delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/ColorEditorTemplate.template delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/IntEditorTemplate.template delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/RealEditorTemplate.template delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/StringEditorTemplate.template delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/TemplateTypes.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/UrlEditorTemplate.template delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/BorderImageSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableGroupBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlipableSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlowSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridViewSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/ImageSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/ItemPane.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/ListViewSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/MouseAreaSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/PathViewSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/QtObjectPane.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleColorGroupBox.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/RowSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextEditSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextInputSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextSpecifics.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/Window/WindowPane.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtQuick/emptyPane.qml delete mode 100644 share/qtcreator/qmldesigner/propertyeditor/QtWebKit/WebViewSpecifics.qml diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentHorizontalButtons.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentHorizontalButtons.qml deleted file mode 100644 index 23183419a84..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentHorizontalButtons.qml +++ /dev/null @@ -1,168 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QGroupBox { - id: aligmentHorizontalButtons - - property variant theValue: backendValues.horizontalAlignment.value; - - property bool blueHigh: false - - property bool baseStateFlag: isBaseState; - - property variant backendValue: backendValues.horizontalAlignment; - - - onBaseStateFlagChanged: { - evaluate(); - } - - property bool isInModel: backendValue.isInModel; - onIsInModelChanged: { - evaluate(); - } - property bool isInSubState: backendValue.isInSubState; - onIsInSubStateChanged: { - evaluate(); - } - - onTheValueChanged: { - if (theValue != undefined) { - leftButton.checked = theValue == "AlignLeft"; - centerButton.checked = theValue == "AlignHCenter"; - rightButton.checked = theValue == "AlignRight"; - } - evaluate(); - } - - function evaluate() { - if (!enabled) { - fontSelector.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue != null && backendValue.isInModel) - blueHigh = true; - else - blueHigh = false; - } else { - if (backendValue != null && backendValue.isInSubState) - blueHigh = true; - else - blueHigh = false; - } - } - } - - layout: HorizontalLayout { - QWidget { - fixedHeight: 32 - - QPushButton { - id: leftButton - - checkable: true - iconSize.width: 24; - iconSize.height: 24; - fixedWidth: 52 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - styleSheetFile: "styledbuttonleft.css"; - - iconFromFile: blueHigh ? "images/alignmentleft-h-icon.png" : "images/alignmentleft-icon.png" - - checked: backendValues.horizontalAlignment.value == "AlignLeft" - - onClicked: { - backendValues.horizontalAlignment.value = "AlignLeft"; - checked = true; - centerButton.checked = false; - rightButton.checked = false; - } - - ExtendedFunctionButton { - backendValue: backendValues.horizontalAlignment; - y: 7 - x: 2 - } - - } - QPushButton { - id: centerButton - x: 52 - checkable: true - iconSize.width: 24; - iconSize.height: 24; - fixedWidth: 31 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - styleSheetFile: "styledbuttonmiddle.css"; - - iconFromFile: blueHigh ? "images/alignmentcenterh-h-icon.png" : "images/alignmentcenterh-icon.png" - - checked: backendValues.horizontalAlignment.value == "AlignHCenter" - - onClicked: { - backendValues.horizontalAlignment.value = "AlignHCenter"; - checked = true; - leftButton.checked = false; - rightButton.checked = false; - } - - } - QPushButton { - id: rightButton - x: 83 - checkable: true - iconSize.width: 24; - iconSize.height: 24; - fixedWidth: 31 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - styleSheetFile: "styledbuttonright.css"; - - iconFromFile: blueHigh ? "images/alignmentright-h-icon.png" : "images/alignmentright-icon.png" - - checked: backendValues.horizontalAlignment.value == "AlignRight" - - onClicked: { - backendValues.horizontalAlignment.value = "AlignRight"; - checked = true; - centerButton.checked = false; - leftButton.checked = false; - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentVerticalButtons.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentVerticalButtons.qml deleted file mode 100644 index e93b91143d2..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentVerticalButtons.qml +++ /dev/null @@ -1,170 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QGroupBox { - id: alignmentVerticalButtons - - property variant theValue: backendValues.verticalAlignment.value; - - property bool blueHigh: false - - property bool baseStateFlag: isBaseState; - - property variant backendValue: backendValues.verticalAlignment; - - - onBaseStateFlagChanged: { - evaluate(); - } - - property bool isInModel: backendValue.isInModel; - onIsInModelChanged: { - evaluate(); - } - property bool isInSubState: backendValue.isInSubState; - onIsInSubStateChanged: { - evaluate(); - } - - onTheValueChanged: { - if (theValue != undefined) { - topButton.checked = theValue == "AlignTop"; - centerButton.checked = theValue == "AlignVCenter"; - bottomButton.checked = theValue == "AlignBottom"; - } - evaluate(); - } - - function evaluate() { - if (!enabled) { - fontSelector.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue != null && backendValue.isInModel) - blueHigh = true; - else - blueHigh = false; - } else { - if (backendValue != null && backendValue.isInSubState) - blueHigh = true; - else - blueHigh = false; - } - } - } - - layout: HorizontalLayout { - QWidget { - fixedHeight: 32 - - QPushButton { - id: topButton; - checkable: true - iconSize.width: 24; - iconSize.height: 24; - fixedWidth: 41 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - styleSheetFile: "styledbuttonleft.css"; - - iconFromFile: blueHigh ? "images/alignmenttop-h-icon.png" : "images/alignmenttop-icon.png" - - checked: backendValues.verticalAlignment.value == "AlignTop" - - onClicked: { - backendValues.verticalAlignment.value = "AlignTop"; - checked = true; - bottomButton.checked = false; - centerButton.checked = false; - } - - ExtendedFunctionButton { - backendValue: backendValues.verticalAlignment; - y: 7 - x: 2 - } - - } - QPushButton { - x: 41 - id: centerButton; - checkable: true - iconSize.width: 24; - iconSize.height: 24; - fixedWidth: 31 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - styleSheetFile: "styledbuttonmiddle.css"; - - iconFromFile: blueHigh ? "images/alignmentmiddle-h-icon.png" : "images/alignmentmiddle-icon.png" - - checked: backendValues.verticalAlignment.value == "AlignVCenter" - - onClicked: { - backendValues.verticalAlignment.value = "AlignVCenter"; - checked = true; - bottomButton.checked = false; - topButton.checked = false; - } - - } - QPushButton { - x: 72 - id: bottomButton; - checkable: true - iconSize.width: 24; - iconSize.height: 24; - fixedWidth: 31 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - styleSheetFile: "styledbuttonright.css"; - - iconFromFile: blueHigh ? "images/alignmentbottom-h-icon.png" : "images/alignmentbottom-icon.png" - - checked: backendValues.verticalAlignment.value == "AlignBottom" - - onClicked: { - backendValues.verticalAlignment.value = "AlignBottom"; - checked = true; - centerButton.checked = false; - topButton.checked = false; - } - - } - } - - } - -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorBox.qml deleted file mode 100644 index 61a6101048c..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorBox.qml +++ /dev/null @@ -1,227 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - width:220;fixedWidth: width - height:220;fixedHeight: height - styleSheetFile: "anchorbox.css" - - function isBorderAnchored() { - return anchorBackend.leftAnchored || anchorBackend.topAnchored || anchorBackend.rightAnchored || anchorBackend.bottomAnchored; - } - - function fill() { - anchorBackend.fill(); - } - - function breakLayout() { - anchorBackend.resetLayout() - } - - QPushButton { - text: "fill"; - height:20;fixedHeight: height; - x: 0; - y: 0; - width:200;fixedWidth: width; - id: qPushButton1; - onReleased: fill(); - } - - QPushButton { - text: "break"; - y: 200; - height:20;fixedHeight: height; - width:200;fixedWidth: width; - x: 0; - id: qPushButton3; - onReleased: breakLayout(); - } - - QPushButton { - height:100;fixedHeight: height; - text: "left"; - font.bold: true; - x: 16 ; - y: 60; - //styleSheet: "border-radius:5px; background-color: #ffda82"; - width:30;fixedWidth: width; - id: qPushButton5; - checkable: true; - checked: anchorBackend.leftAnchored; - onReleased: { - if (checked) { - anchorBackend.horizontalCentered = false; - anchorBackend.leftAnchored = true; - } else { - anchorBackend.leftAnchored = false; - } - } - } - - QPushButton { - text: "top"; - font.bold: true; - //styleSheet: "border-radius:5px; background-color: #ffda82"; - height:27;fixedHeight: 27; - width:100;fixedWidth: 100; - x: 49; - y: 30; - id: qPushButton6; - checkable: true; - checked: anchorBackend.topAnchored; - onReleased: { - if (checked) { - anchorBackend.verticalCentered = false; - anchorBackend.topAnchored = true; - } else { - anchorBackend.topAnchored = false; - } - } - } - - QPushButton { - text: "right"; - font.bold: true; - x: 153; - y: 60; - //styleSheet: "border-radius:5px; background-color: #ffda82"; - width:30;fixedWidth: width; - height:100;fixedHeight: height; - id: qPushButton7; - checkable: true; - checked: anchorBackend.rightAnchored; - onReleased: { - if (checked) { - anchorBackend.horizontalCentered = false; - anchorBackend.rightAnchored = true; - } else { - anchorBackend.rightAnchored = false; - } - } - } - - QPushButton { - text: "bottom"; - font.bold: true; - //styleSheet: "border-radius:5px; background-color: #ffda82"; - width:100;fixedWidth: width; - x: 49; - y: 164; - height:27;fixedHeight: height; - id: qPushButton8; - checkable: true; - checked: anchorBackend.bottomAnchored; - onReleased: { - if (checked) { - anchorBackend.verticalCentered = false; - anchorBackend.bottomAnchored = true; - } else { - anchorBackend.bottomAnchored = false; - } - } - } - - QToolButton { - width:100;fixedWidth: width; - //styleSheet: "border-radius:50px;background-color: rgba(85, 170, 255, 255)"; - x: 49; - y: 60; - height:100;fixedHeight: height; - id: qPushButton9; - - QPushButton { - width:24;fixedWidth: width; - //styleSheet: "border-radius:5px; background-color: #bf3f00;"; - x: 38; - y: 2; - height:96;fixedHeight: height; - checkable: true; - id: horizontalCenterButton; - checked: anchorBackend.horizontalCentered; - onReleased: { - if (checked) { - anchorBackend.rightAnchored = false; - anchorBackend.leftAnchored = false; - anchorBackend.horizontalCentered = true; - } else { - anchorBackend.horizontalCentered = false; - } - } - } - - QPushButton { - height:24;fixedHeight: height; - x: 2; - y: 38; - width:96;fixedWidth: width; - id: verticalCenterButton; - checkable: true; - checked: anchorBackend.verticalCentered; - onReleased: { - if (checked) { - anchorBackend.topAnchored = false; - anchorBackend.bottomAnchored = false; - anchorBackend.verticalCentered = true; - } else { - anchorBackend.verticalCentered = false; - } - } - } - - QPushButton { - text: "center"; - font.bold: true; - //styleSheet: "border-radius:20px; background-color: #ff5500"; - width:40;fixedWidth: width; - height:40;fixedHeight: height; - x: 30; - y: 30; - id: centerButton; - checkable: true; - checked: anchorBackend.verticalCentered && anchorBackend.horizontalCentered; - onReleased: { - if (checked) { - anchorBackend.leftAnchored = false; - anchorBackend.topAnchored = false; - anchorBackend.rightAnchored = false; - anchorBackend.bottomAnchored = false; - anchorBackend.verticalCentered = true; - anchorBackend.horizontalCentered = true; - } else { - anchorBackend.verticalCentered = false; - anchorBackend.horizontalCentered = false; - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorButtons.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorButtons.qml deleted file mode 100644 index 8278f05889f..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorButtons.qml +++ /dev/null @@ -1,234 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - - -QWidget { - id: anchorButtons - fixedHeight: 32 - - function isBorderAnchored() { - return anchorBackend.leftAnchored || anchorBackend.topAnchored || anchorBackend.rightAnchored || anchorBackend.bottomAnchored; - } - - function fill() { - anchorBackend.fill(); - } - - function breakLayout() { - anchorBackend.resetLayout() - } - - QPushButton { - - checkable: true - fixedWidth: 31 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - styleSheetFile: "anchortop.css"; - toolTip: enabled ? qsTr("Set top anchor") : qsTr("Setting anchors in states is not supported.") - - checked: anchorBackend.topAnchored; - onReleased: { - if (checked) { - anchorBackend.verticalCentered = false; - anchorBackend.topAnchored = true; - } else { - anchorBackend.topAnchored = false; - } - } - - } - - QPushButton { - - x: 31 - checkable: true - fixedWidth: 30 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - - styleSheetFile: "anchorbottom.css"; - toolTip: enabled ? qsTr("Set bottom anchor") : qsTr("Setting anchors in states is not supported.") - - checked: anchorBackend.bottomAnchored; - onReleased: { - if (checked) { - anchorBackend.verticalCentered = false; - anchorBackend.bottomAnchored = true; - } else { - anchorBackend.bottomAnchored = false; - } - } - - } - QPushButton { - - x: 61 - checkable: true - fixedWidth: 30 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - - styleSheetFile: "anchorleft.css"; - toolTip: enabled ? qsTr("Set left anchor") : qsTr("Setting anchors in states is not supported.") - - checked: anchorBackend.leftAnchored; - onReleased: { - if (checked) { - anchorBackend.horizontalCentered = false; - anchorBackend.leftAnchored = true; - } else { - anchorBackend.leftAnchored = false; - } - } - } - - QPushButton { - - x: 91 - checkable: true - fixedWidth: 30 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - - styleSheetFile: "anchorright.css"; - toolTip: enabled ? qsTr("Set right anchor") : qsTr("Setting anchors in states is not supported.") - - checked: anchorBackend.rightAnchored; - onReleased: { - if (checked) { - anchorBackend.horizontalCentered = false; - anchorBackend.rightAnchored = true; - } else { - anchorBackend.rightAnchored = false; - } - } - } - - QPushButton { - x: 121 - checkable: true - fixedWidth: 19 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - - styleSheetFile: "anchorspacer.css"; - - - } - - QPushButton { - x: 140 - fixedWidth: 30 - fixedHeight: 28 - height: fixedHeight - - styleSheetFile: "anchorfill.css"; - toolTip: enabled ? qsTr("Fill to parent") : qsTr("Setting anchors in states is not supported.") - checkable: true - checked: anchorBackend.isFilled; - - onReleased: { - if (checked) { - anchorBackend.fill(); - } else { - anchorBackend.resetLayout(); - } - } - } - - QPushButton { - x: 170 - checkable: true - fixedWidth: 19 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - - styleSheetFile: "anchorspacer.css"; - - } - - QPushButton { - x: 189 - checkable: true - fixedWidth: 30 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - - styleSheetFile: "anchorvertical.css"; - toolTip: enabled ? qsTr("Set vertical anchor") : qsTr("Setting anchors in states is not supported.") - - checked: anchorBackend.verticalCentered; - onReleased: { - if (checked) { - anchorBackend.leftAnchored = false; - anchorBackend.rightAnchored = false; - anchorBackend.topAnchored = false; - anchorBackend.bottomAnchored = false; - anchorBackend.verticalCentered = true; - } else { - anchorBackend.verticalCentered = false; - } - } - } - - QPushButton { - x: 219 - checkable: true - fixedWidth: 31 - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - - styleSheetFile: "anchorhorizontal.css"; - toolTip: enabled ? qsTr("Set horizontal anchor") : qsTr("Setting anchors in states is not supported.") - - checked: anchorBackend.horizontalCentered; - onReleased: { - if (checked) { - anchorBackend.leftAnchored = false; - anchorBackend.rightAnchored = false; - anchorBackend.horizontalCentered = true; - } else { - anchorBackend.horizontalCentered = false; - } - } - } -} - diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/CheckBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/CheckBox.qml deleted file mode 100644 index 14fdbc7ae5b..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/CheckBox.qml +++ /dev/null @@ -1,114 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { //This is a special checkBox that does color coding for states - - id: checkBox; - - property variant backendValue; - - property variant baseStateFlag; - property alias checkable: localCheckBox.checkable - property alias text: localLabel.text - - property alias checked: localCheckBox.checked - - onBaseStateFlagChanged: { - evaluate(); - } - - onBackendValueChanged: { - evaluate(); - } - - property bool isInModel: backendValue.isInModel; - - onIsInModelChanged: { - evaluate(); - } - - property bool isInSubState: backendValue.isInSubState; - - onIsInSubStateChanged: { - evaluate(); - } - - function evaluate() { - if (!enabled) { - localLabel.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue.isInModel) - localLabel.setStyleSheet("color: "+scheme.changedBaseColor); - else - localLabel.setStyleSheet("color: "+scheme.boldTextColor); - } else { - if (backendValue.isInSubState) - localLabel.setStyleSheet("color: "+scheme.changedStateColor); - else - localLabel.setStyleSheet("color: "+scheme.boldTextColor); - } - } - } - - ColorScheme { id:scheme; } - - - layout: HorizontalLayout { - spacing: 4 - - QCheckBox { - id: localCheckBox - checkable: true; - checked: backendValue.value; - onToggled: { - backendValue.value = checked; - } - maximumWidth: 30 - } - - QLabel { - id: localLabel - font.bold: true; - alignment: "Qt::AlignLeft | Qt::AlignVCenter" - } - - } - - - ExtendedFunctionButton { - backendValue: checkBox.backendValue - y: 3 - x: localCheckBox.x + 18; - } -} - diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorGroupBox.qml deleted file mode 100644 index 2b6b8ef8900..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorGroupBox.qml +++ /dev/null @@ -1,381 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QExtGroupBox { - id: colorGroupBox - - property variant finished; - property variant backendColor - property bool gradientEditing: gradientButtonChecked - property variant singleColor: (backendColor === undefined || backendColor.value === undefined) ? "#000000" : backendColor.value - property variant gradientColor: "#000000" - property variant color: "#000000" - property variant oldMaximumHeight; - - property variant startupCollapse: selectionChanged === undefined ? false : selectionChanged; - property variant firstTime: true; - property variant caption: "" - property bool showButtons: false - property bool showGradientButton: false - - property bool gradientButtonChecked: buttons.gradient - property bool noneButtonChecked: buttons.none - property bool solidButtonChecked: buttons.solid - - property alias setGradientButtonChecked: buttons.setGradient - property alias setNoneButtonChecked: buttons.setNone - property alias setSolidButtonChecked: buttons.setSolid - - property alias collapseBox: colorButton.checked - - property alias alpha: colorControl.alpha - - smooth: false - - onGradientColorChanged: { - if (gradientEditing == true) - color = gradientColor; - colorChanged(); - } - onSingleColorChanged: { - if (!gradientEditing == true && color != singleColor) - color = singleColor; - } - - onGradientButtonCheckedChanged: { - if (buttons.gradient == true) - color = gradientColor; - if (!buttons.gradient == true && color != singleColor) - color = singleColor; - colorChanged(); - } - - onFinishedChanged: { - oldMaximumHeight = maximumHeight; - //visible = false; - //visible = true; - //if (finished) - //collapsed = true; - } - - onStartupCollapseChanged: { - oldMaximumHeight = maximumHeight; - if (!collapsed && firstTime) { - collapsed = true; - colorButton.checked = false; - firstTime = false; - } - } - - - property variant baseStateFlag: isBaseState - onBaseStateFlagChanged: { - evaluate(); - } - onBackendColorChanged: { - evaluate(); - } - property variant isEnabled: colorGroupBox.enabled - onIsEnabledChanged: { - evaluate(); - } - property bool isInModel: backendColor.isInModel; - onIsInModelChanged: { - evaluate(); - } - property bool isInSubState: backendColor.isInSubState; - onIsInSubStateChanged: { - evaluate(); - } - - function evaluate() { - if (backendColor === undefined) - return; - if (!enabled) { - valueSpinBox.setStyleSheet("color: "+scheme.disabledColor); - hueSpinBox.setStyleSheet("color: "+scheme.disabledColor); - saturationSpinBox.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendColor.isInModel) { - valueSpinBox.setStyleSheet("color: "+scheme.changedBaseColor); - hueSpinBox.setStyleSheet("color: "+scheme.changedBaseColor); - saturationSpinBox.setStyleSheet("color: "+scheme.changedBaseColor); - alphaSpinBox.setStyleSheet("color: "+scheme.changedBaseColor); - } else { - valueSpinBox.setStyleSheet("color: "+scheme.defaultColor); - hueSpinBox.setStyleSheet("color: "+scheme.defaultColor); - saturationSpinBox.setStyleSheet("color: "+scheme.defaultColor); - alphaSpinBox.setStyleSheet("color: "+scheme.defaultColor); - } - } else { - if (backendColor.isInSubState) { - valueSpinBox.setStyleSheet("color: "+scheme.changedStateColor); - hueSpinBox.setStyleSheet("color: "+scheme.changedStateColor); - saturationSpinBox.setStyleSheet("color: "+scheme.changedStateColor); - alphaSpinBox.setStyleSheet("color: "+scheme.changedStateColor); - } else { - valueSpinBox.setStyleSheet("color: "+scheme.defaultColor); - hueSpinBox.setStyleSheet("color: "+scheme.defaultColor); - saturationSpinBox.setStyleSheet("color: "+scheme.defaultColor); - alphaSpinBox.setStyleSheet("color: "+scheme.defaultColor); - } - } - } - } - - ColorScheme { id:scheme; } - - QWidget { - id: colorButtonWidget - height: 28 - width: colorGroupBox.width - layout: HorizontalLayout { - topMargin: 0 - rightMargin: 2; - - Label { - text: colorGroupBox.caption - toolTip: colorGroupBox.caption - } - - QWidget { - layout: HorizontalLayout { - spacing: 6 - - ColorLineEdit { - inputMask: "\\#HHHHHH" - visible: gradientEditing == false - backendValue: colorGroupBox.backendColor - baseStateFlag: isBaseState - } - - QWidget { - visible: gradientEditing == true - minimumHeight: 24; - id: lineEditWidget; - QLineEdit { - y: 2 - property color colorG: color - onColorGChanged: { - text = convertColorToString(color); - } - - text: "#000000"; - width: lineEditWidget.width - height: lineEditWidget.height - - onEditingFinished: { - color = text - } - } - } - - ColorButton { - id: colorButton - color: colorGroupBox.color; - noColor: noneButtonChecked; - checkable: true; - checked: false; - fixedHeight: 22; - fixedWidth: 22; - width: fixedWidth - height: fixedHeight - toolTip: qsTr("Color editor") - - onClicked: { - if (colorGroupBox.animated) - return; - if (checked) { - colorGroupBox.collapsed = false; - colorButtonWidget.visible = true; - } else { - colorGroupBox.collapsed = true; - colorButtonWidget.visible = true; - } - } - - onToggled: { - if (colorGroupBox.animated) - return; - if (checked) { - colorGroupBox.collapsed = false; - colorButtonWidget.visible = true; - } else { - colorGroupBox.collapsed = true; - colorButtonWidget.visible = true; - } - } - - } - - ColorTypeButtons { - id: buttons; - visible: showButtons - enabled: baseStateFlag - opacity: enabled ? 1 : 0.6 - showGradientButton: colorGroupBox.showGradientButton - } - - QWidget { - visible: !(showButtons) - fixedHeight: 28 - fixedWidth: 93 - width: fixedWidth - height: fixedHeight - } - } - } - - } - } - - - layout: VerticalLayout { - topMargin: 36 - - QWidget { - layout: HorizontalLayout { - leftMargin: 12 - spacing: 0 - - ColorBox { - id: colorControl; - property variant backendColor: colorGroupBox.color; - color: colorGroupBox.color; - onColorChanged: { - if (colorGroupBox.color != color) { - if (colorGroupBox.gradientEditing == true) { - colorGroupBox.color = color; - } else { - if (colorControl.alpha != 0) - setSolidButtonChecked = true; - colorGroupBox.backendColor.value = color; - } - } - } - } - - HueControl { - id: hueControl; - hue: colorControl.hue; - onHueChanged: if (colorControl.hue != hue) colorControl.hue=hue; - } - - QWidget { - maximumWidth: 100 - layout: VerticalLayout { - topMargin: 4 - bottomMargin: 4 - rightMargin: 0 - leftMargin: 0 - spacing: 2 - QWidget { - toolTip: qsTr("Hue") - layout: HorizontalLayout { - Label { - text: "H" - fixedWidth: 15 - } - - QSpinBox { - id: hueSpinBox - maximum: 359 - value: colorControl.hue; - onValueChanged: if (colorControl.hue != value) - colorControl.hue=value; - } - - } - } - QWidget { - toolTip: qsTr("Saturation") - layout: HorizontalLayout { - Label { - text: "S" - fixedWidth: 15 - } - QSpinBox { - id: saturationSpinBox - maximum: 255 - value: colorControl.saturation; - onValueChanged: if (colorControl.saturation !=value) - colorControl.saturation=value; - } - } - - } - - QWidget { - toolTip: qsTr("Brightness") - layout: HorizontalLayout { - Label { - text: "B" - fixedWidth: 15 - } - QSpinBox { - id: valueSpinBox - maximum: 255 - value: colorControl.value; - onValueChanged: if (Math.floor(colorControl.value)!=value) - colorControl.value=value; - } - } - } - - QWidget { - toolTip: qsTr("Alpha") - layout: HorizontalLayout { - topMargin: 12 - Label { - text: "A" - fixedWidth: 15 - } - QSpinBox { - id: alphaSpinBox - maximum: 255 - value: colorControl.alpha; - onValueChanged: if (Math.floor(colorControl.alpha)!=value) - colorControl.alpha=value; - } - } - } - - } - } - QWidget { - - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLabel.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLabel.qml deleted file mode 100644 index 6edd681dd13..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLabel.qml +++ /dev/null @@ -1,38 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QLabel { - id: colorLabel - styleSheet: "color: #ffffff;" - alignment: "Qt::AlignLeft | Qt::AlignVCenter" - minimumHeight: 18 -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLineEdit.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLineEdit.qml deleted file mode 100644 index e18b7dd7889..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLineEdit.qml +++ /dev/null @@ -1,161 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - id: lineEdit - - function escapeString(string) { - var str = string; - str = str.replace(/\\/g, "\\\\"); - str.replace(/\"/g, "\\\""); - str = str.replace(/\t/g, "\\t"); - str = str.replace(/\r/g, "\\r"); - str = str.replace(/\n/g, '\\n'); - return str; - } - - property variant backendValue - property alias enabled: lineEdit.enabled - property variant baseStateFlag - property alias text: lineEditWidget.text - property alias readOnly: lineEditWidget.readOnly - property alias translation: trCheckbox.visible - property alias inputMask: lineEditWidget.inputMask - - minimumHeight: 24; - - onBaseStateFlagChanged: { - evaluate(); - } - - property variant isEnabled: lineEdit.enabled - onIsEnabledChanged: { - evaluate(); - } - - - property bool isInModel: backendValue.isInModel; - onIsInModelChanged: { - evaluate(); - } - property bool isInSubState: backendValue.isInSubState; - onIsInSubStateChanged: { - evaluate(); - } - - function evaluate() { - if (!enabled) { - lineEditWidget.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue != null && backendValue.isInModel) - lineEditWidget.setStyleSheet("color: "+scheme.changedBaseColor); - else - lineEditWidget.setStyleSheet("color: "+scheme.defaultColor); - } else { - if (backendValue != null && backendValue.isInSubState) - lineEditWidget.setStyleSheet("color: "+scheme.changedStateColor); - else - lineEditWidget.setStyleSheet("color: "+scheme.defaultColor); - } - } - } - - ColorScheme { id:scheme; } - - QLineEdit { - y: 2 - id: lineEditWidget - styleSheet: "QLineEdit { padding-left: 32; }" - width: lineEdit.width - height: lineEdit.height - toolTip: backendValue.isBound ? backendValue.expression : "" - - property string valueFromBackend: (backendValue === undefined || backendValue.value === undefined) ? "" : backendValue.valueToString; - - onValueFromBackendChanged: { - if (backendValue.value === undefined) - return; - text = backendValue.valueToString; - } - - onEditingFinished: { - if (backendValue.isTranslated) { - backendValue.expression = "qsTr(\"" + escapeString(text) + "\")" - } else { - backendValue.value = text - } - evaluate(); - } - - onFocusChanged: { - if (focus) - backendValue.lock(); - else - backendValue.unlock(); - } - - - } - ExtendedFunctionButton { - backendValue: lineEdit.backendValue - y: 6 - x: 0 - visible: lineEdit.enabled - } - QCheckBox { - id: trCheckbox - y: 2 - styleSheetFile: "checkbox_tr.css"; - toolTip: qsTr("Translate this string") - x: lineEditWidget.width - 22 - height: lineEdit.height - 2; - width: 24 - visible: false - checked: backendValue.isTranslated - onToggled: { - if (trCheckbox.checked) { - backendValue.expression = "qsTr(\"" + escapeString(lineEditWidget.text) + "\")" - } else { - backendValue.value = lineEditWidget.text - } - evaluate(); - } - - onVisibleChanged: { - if (trCheckbox.visible) { - trCheckbox.raise(); - lineEditWidget.styleSheet = "QLineEdit { padding-left: 32; padding-right: 62;}" - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorScheme.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorScheme.qml deleted file mode 100644 index e445aead935..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorScheme.qml +++ /dev/null @@ -1,41 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -Item { - id: colorScheme - property variant disabledColor: "gray"; - property variant defaultColor: "white"; - property variant boldTextColor: "#dedede"; - property variant changedBaseColor: "#9999ff"; - property variant changedStateColor: "#99ccff"; - property variant optionsColor: "white"; -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorTypeButtons.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorTypeButtons.qml deleted file mode 100644 index 7dfdcf8badc..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorTypeButtons.qml +++ /dev/null @@ -1,147 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - property bool showGradientButton - - property bool gradient: gradientButton.checked - property bool none: noneButton.checked - property bool solid: solidButton.checked - - property bool setGradient: false - property bool setNone: false - property bool setSolid: false - - onSetGradientChanged: { - if (setGradient == true) { - gradientButton.checked = true; - setGradient = false; - } - } - - onSetNoneChanged: { - if (setNone == true) { - noneButton.checked = true; - setNone = false; - } - } - - onSetSolidChanged: { - if (setSolid == true) { - solidButton.checked = true; - setSolid = false; - } - } - - fixedHeight: 28 - fixedWidth: 93 - width: fixedWidth - height: fixedHeight - enabled: isBaseState - - QPushButton { - id: solidButton - x: 0 - checkable: true - checked: true - fixedWidth: 31 - fixedHeight: 28 - - - styleSheetFile: "styledbuttonleft.css" - iconFromFile: "images/icon_color_solid.png" - toolTip: baseStateFlag ? qsTr("Solid color") : qsTr("Solid color (only editable in base state)") - - onToggled: { - if (checked) { - gradientButton.checked = false; - noneButton.checked = false; - } - } - onClicked: { - gradientButton.checked = false; - noneButton.checked = false; - checked = true; - } - } - - QPushButton { - visible: showGradientButton - id: gradientButton - x: 31 - checkable: true - fixedWidth: 31 - fixedHeight: 28 - - styleSheetFile: "styledbuttonmiddle.css" - iconFromFile: "images/icon_color_gradient.png" - toolTip: baseStateFlag ? qsTr("Gradient") : qsTr("Gradient (only editable in base state)") - - onToggled: { - if (checked) { - solidButton.checked = false; - noneButton.checked = false; - } - } - - onClicked: { - solidButton.checked = false; - noneButton.checked = false; - checked = true; - } - } - - QPushButton { - id: noneButton - x: showGradientButton ? 62 : 31; - checkable: true - fixedWidth: 31 - fixedHeight: 28 - styleSheetFile: "styledbuttonright.css" - iconFromFile: "images/icon_color_none.png" - toolTip: baseStateFlag ? qsTr("Transparent") : qsTr("Transparent (only editable in base state)") - - onToggled: { - if (checked) { - gradientButton.checked = false; - solidButton.checked = false; - } - } - - onClicked: { - gradientButton.checked = false; - solidButton.checked = false; - checked = true; - } - - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ComboBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ComboBox.qml deleted file mode 100644 index 5559452a89f..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ComboBox.qml +++ /dev/null @@ -1,103 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - - id: comboBox - - property variant backendValue; - property variant baseStateFlag; - property alias enabled: box.enabled; - - property alias items: box.items; - property alias currentText: box.currentText; - - - onBaseStateFlagChanged: { - evaluate(); - } - - property variant isEnabled: comboBox.enabled - onIsEnabledChanged: { - evaluate(); - } - - function evaluate() { - if (backendValue === undefined) - return; - if (!enabled) { - box.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue.isInModel) - box.setStyleSheet("QComboBox,QComboBox:on{color: "+scheme.changedBaseColor+"}QComboBox:off{color:"+scheme.optionsColor+"}"); - else - box.setStyleSheet("QComboBox,QComboBox:on{color: "+scheme.defaultColor+"}QComboBox:off{color:"+scheme.optionsColor+"}"); - } else { - if (backendValue.isInSubState) - box.setStyleSheet("QComboBox,QComboBox:on{color: "+scheme.changedStateColor+"}QComboBox:off{color:"+scheme.optionsColor+"}"); - else - box.setStyleSheet("QComboBox,QComboBox:on{color: "+scheme.defaultColor+"}QComboBox:off{color:"+scheme.optionsColor+"}"); - } - } - } - - ColorScheme { id:scheme; } - - layout: HorizontalLayout { - QComboBox { - id: box - property variant backendValue: comboBox.backendValue - onCurrentTextChanged: { - print("valuechanged"); - print(comboBox.currentText) - backendValue.value = comboBox.currentText; evaluate(); } - onItemsChanged: { - if (comboBox.backendValue.value === comboBox.curentText) - return; - box.setCurrentTextSilent(comboBox.backendValue.value); - } - - property variant backendValueValue: comboBox.backendValue.value - onBackendValueValueChanged: { - if (comboBox.backendValue.value === comboBox.curentText) - return; - box.setCurrentTextSilent(comboBox.backendValue.value); - } - ExtendedFunctionButton { - backendValue: comboBox.backendValue; - y: 3 - x: 3 - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBox.qml deleted file mode 100644 index feb58b60231..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBox.qml +++ /dev/null @@ -1,154 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { //This is a special doubleSpinBox that does color coding for states - - id: doubleSpinBox; - - property variant backendValue; - property variant baseStateFlag; - property alias singleStep: box.singleStep - property alias minimum: box.minimum - property alias maximum: box.maximum - property alias spacing: layoutH.spacing - property alias text: label.text - property bool alignRight: true - property bool enabled: true - property alias decimals: box.decimals - - minimumHeight: 22; - - onBaseStateFlagChanged: { - evaluate(); - } - - onBackendValueChanged: { - evaluate(); - } - - onEnabledChanged: { - evaluate(); - } - - function evaluate() { - if (backendValue === undefined) - return; - if (!enabled) { - box.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue.isInModel) - box.setStyleSheet("color: "+scheme.changedBaseColor); - else - box.setStyleSheet("color: "+scheme.defaultColor); - } else { - if (backendValue.isInSubState) - box.setStyleSheet("color: "+scheme.changedStateColor); - else - box.setStyleSheet("color: "+scheme.defaultColor); - } - } - } - - ColorScheme { id:scheme; } - - property bool isInModel: backendValue.isInModel; - - onIsInModelChanged: { - evaluate(); - } - - property bool isInSubState: backendValue.isInSubState; - - onIsInSubStateChanged: { - evaluate(); - } - - layout: HorizontalLayout { - id: layoutH; - spacing: 4 - - QLabel { - id: label; - font.bold: true; - alignment: doubleSpinBox.alignRight ? "Qt::AlignRight | Qt::AlignVCenter" : "Qt::AlignLeft | Qt::AlignVCenter"; - maximumWidth: 40 - visible: doubleSpinBox.text != ""; - } - - QDoubleSpinBox { - id: box; - decimals: 1; - keyboardTracking: false; - enabled: !backendValue.isBound && doubleSpinBox.enabled; - toolTip: backendValue.isBound ? backendValue.expression : "" - - property bool readingFromBackend: false; - property real valueFromBackend: doubleSpinBox.backendValue.value; - - onValueFromBackendChanged: { - readingFromBackend = true; - if (value !== valueFromBackend) - value = valueFromBackend - readingFromBackend = false; - - if (!focus) - evaluate(); - } - - onValueChanged: { - if (doubleSpinBox.backendValue.value !== value) - doubleSpinBox.backendValue.value = value; - } - - onMouseOverChanged: { - - } - - onFocusChanged: { - if (focus) { - transaction.start(); - } else { - transaction.end(); - evaluate(); - } - } - } - } - - ExtendedFunctionButton { - backendValue: doubleSpinBox.backendValue; - y: box.y + 4 - x: box.x + 2 - visible: doubleSpinBox.enabled - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBoxAlternate.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBoxAlternate.qml deleted file mode 100644 index 7f6d69f27d6..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBoxAlternate.qml +++ /dev/null @@ -1,147 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { //This is a special doubleSpinBox that does color coding for states - - id: doubleSpinBox; - - property variant backendValue; - property variant baseStateFlag; - property alias singleStep: box.singleStep - property alias minimum: box.minimum - property alias maximum: box.maximum - property alias spacing: layoutH.spacing - property alias text: label.text - property bool alignRight: true - property bool enabled: true - - minimumHeight: 22; - - onBaseStateFlagChanged: { - evaluate(); - } - - onBackendValueChanged: { - evaluate(); - } - - onEnabledChanged: { - evaluate(); - } - - function evaluate() { - if (backendValue === undefined) - return; - if (!enabled) { - box.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue.isInModel) - box.setStyleSheet("color: "+scheme.changedBaseColor); - else - box.setStyleSheet("color: "+scheme.defaultColor); - } else { - if (backendValue.isInSubState) - box.setStyleSheet("color: "+scheme.changedStateColor); - else - box.setStyleSheet("color: "+scheme.defaultColor); - } - } - } - - ColorScheme { id:scheme; } - - property bool isInModel: backendValue.isInModel; - - onIsInModelChanged: { - evaluate(); - } - - property bool isInSubState: backendValue.isInSubState; - - onIsInSubStateChanged: { - evaluate(); - } - - layout: HorizontalLayout { - id: layoutH; - - QLabel { - id: label; - font.bold: true; - alignment: doubleSpinBox.alignRight ? "Qt::AlignRight | Qt::AlignVCenter" : "Qt::AlignLeft | Qt::AlignVCenter"; - fixedWidth: frame.labelWidth - visible: doubleSpinBox.text != ""; - toolTip: text - } - - QDoubleSpinBox { - id: box; - decimals: 1; - keyboardTracking: false; - enabled: !backendValue.isBound && doubleSpinBox.enabled; - minimum: -1000 - maximum: 1000 - - property bool readingFromBackend: false; - property real valueFromBackend: doubleSpinBox.backendValue.value; - - onValueFromBackendChanged: { - readingFromBackend = true; - value = valueFromBackend - readingFromBackend = false; - } - - onValueChanged: { - doubleSpinBox.backendValue.value = value; - } - - onMouseOverChanged: { - - } - - onFocusChanged: { - if (focus) - transaction.start(); - else - transaction.end(); - } - } - } - - ExtendedFunctionButton { - backendValue: doubleSpinBox.backendValue; - y: box.y + 4 - x: box.x + 2 - visible: doubleSpinBox.enabled - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExpressionEditor.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExpressionEditor.qml deleted file mode 100644 index 55df6a09ca4..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExpressionEditor.qml +++ /dev/null @@ -1,117 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - id: expressionEditor; - x: 16 - y: -400 - width: frame.width - 22 - height: 40 - property bool active: false - property variant backendValue; - - property bool selectionFlag: selectionChanged - - onSelectionFlagChanged: { - expressionEdit.active = false; - } - - onActiveChanged: { - if (active) { - textEdit.plainText = backendValue.expression - textEdit.setFocus(); - opacity = 1; - height = 60 - - } else { - opacity = 0; - height = 40; - } - } - opacity: 0 - onOpacityChanged: { - if (opacity == 0) - lower(); - } - Behavior on opacity { - NumberAnimation { - duration: 100 - } - } - Behavior on height { - NumberAnimation { - duration: 100 - } - } - ExpressionEdit { - id: textEdit; - styleSheet: "QTextEdit {border-radius: 0px;}" - documentTitle: qsTr("Expression") - - width: expressionEdit.width - 10 - height: expressionEdit.height - 10 - horizontalScrollBarPolicy: "Qt::ScrollBarAlwaysOff" - verticalScrollBarPolicy: "Qt::ScrollBarAlwaysOff" - - onFocusChanged: { - if (!focus) - expressionEdit.active = false; - } - onReturnPressed: { - expressionEdit.backendValue.expression = textEdit.plainText; - expressionEdit.active = false; - } - } - QPushButton { - focusPolicy: "Qt::NoFocus"; - y: expressionEdit.height - 22; - x: expressionEdit.width - 59; - styleSheetFile: "applybutton.css"; - width: 29 - height: 19 - onClicked: { - expressionEdit.backendValue.expression = textEdit.plainText; - expressionEdit.active = false; - } - } - QPushButton { - focusPolicy: "Qt::NoFocus"; - y: expressionEdit.height - 22; - x: expressionEdit.width - 30; - styleSheetFile: "cancelbutton.css"; - width: 29 - height: 19 - onClicked: { - expressionEdit.active = false; - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Extended.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Extended.qml deleted file mode 100644 index 5cd273fb826..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Extended.qml +++ /dev/null @@ -1,221 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - caption: qsTr("Effect") - id: extended; - maximumHeight: 260; - - layout: VerticalLayout{ - - property variant effect: backendValues.effect - property variant complexNode: effect.complexNode - - QWidget { - maximumHeight: 40; - layout: HorizontalLayout { - Label { - text: "Effect "; - } - QComboBox { - enabled: isBaseState; - property variant type: backendValues.effect.complexNode.type - property variant dirty; - id: effectComboBox; - items : { [ - "None", - "Blur", - "Opacity", - "Colorize", - "DropShadow" - ] } - - onCurrentTextChanged: { - - if (dirty) //avoid recursion; - return; - if (currentText == "") - - if (backendValues.effect.complexNode.exists) - backendValues.effect.complexNode.remove(); - if (currentText == "None") { - ; - } else if (backendValues.effect.complexNode != null) { - backendValues.effect.complexNode.add("Qt/" + currentText); - } - } - - onTypeChanged: { - dirty = true; - if (backendValues.effect.complexNode.exists) - currentText = backendValues.effect.complexNode.type; - else - currentText = "None"; - dirty = false; - } - } - QWidget { - fixedWidth: 100 - } - } - }// QWidget - - property variant properties: complexNode == null ? null : complexNode.properties - - QWidget { - minimumHeight: 20; - layout: QVBoxLayout { - - QWidget { - visible: effectComboBox.currentText == "Blur"; - layout: QVBoxLayout { - topMargin: 12; - IntEditor { - id: blurRadius; - backendValue: backendValues.effect.complexNode.exists ? backendValues.effect.complexNode.properties.blurRadius : null; - caption: qsTr("Blur Radius:") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: 20; - } - } - } - - QWidget { - visible: effectComboBox.currentText == "Opacity"; - layout: QVBoxLayout { - DoubleSpinBox { - id: opcacityEffectSpinBox; - backendValue: backendValues.effect.complexNode.exists ? backendValues.effect.complexNode.properties.opacity : null; - minimum: 0; - maximum: 1; - singleStep: 0.1; - baseStateFlag: isBaseState; - } - } - } - - QWidget { - visible: effectComboBox.currentText == "Colorize"; - layout: QVBoxLayout { - - property variant colorProp: properties == null ? null : properties.color - - - ColorLabel { - text: " Color" - } - - ColorGroupBox { - - finished: finishedNotify - - backendColor: properties.color - } - - } - } - - QWidget { - visible: effectComboBox.currentText == "Pixelize"; - layout: QVBoxLayout { - topMargin: 12; - IntEditor { - id: pixelSize; - backendValue: backendValues.effect.complexNode.exists ? backendValues.effect.complexNode.properties.pixelSize : null; - caption: qsTr("Pixel Size:") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: 20; - } - } - } - - QWidget { - visible: effectComboBox.currentText == "DropShadow"; - layout: QVBoxLayout { - - topMargin: 12; - IntEditor { - id: blurRadiusShadow; - backendValue: backendValues.effect.complexNode.exists ? backendValues.effect.complexNode.properties.blurRadius : null; - caption: qsTr("Blur Radius:") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: 20; - } - - - ColorLabel { - text: " Color" - } - - ColorGroupBox { - - finished: finishedNotify - - backendColor: properties.color - } - - IntEditor { - id: xOffset; - backendValue: backendValues.effect.complexNode.exists ? backendValues.effect.complexNode.properties.xOffset : null; - caption: qsTr("x Offset: ") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: 20; - } - - IntEditor { - id: yOffset; - backendValue: backendValues.effect.complexNode.exists ? backendValues.effect.complexNode.properties.yOffset : null; - caption: qsTr("y Offset: ") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: 20; - } - } - } - } - } - } //QVBoxLayout - } //GroupBox diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedFunctionButton.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedFunctionButton.qml deleted file mode 100644 index 1e804835de0..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedFunctionButton.qml +++ /dev/null @@ -1,120 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -AnimatedToolButton { - id: extendedFunctionButton - - property variant backendValue - - hoverIconFromFile: "images/submenu.png"; - - function setIcon() { - if (backendValue == null) { - extendedFunctionButton.iconFromFile = "images/placeholder.png" - } else if (backendValue.isBound ) { - if (backendValue.isTranslated) { //translations are a special case - extendedFunctionButton.iconFromFile = "images/placeholder.png" - } else { - extendedFunctionButton.iconFromFile = "images/expression.png" - } - } else { - if (backendValue.complexNode != null && backendValue.complexNode.exists) { - extendedFunctionButton.iconFromFile = "images/behaivour.png" - } else { - extendedFunctionButton.iconFromFile = "images/placeholder.png" - } - } - } - - onBackendValueChanged: { - setIcon(); - } - property bool isBoundBackend: backendValue.isBound; - property string backendExpression: backendValue.expression; - - onIsBoundBackendChanged: { - setIcon(); - } - - onBackendExpressionChanged: { - setIcon(); - } - - toolButtonStyle: "Qt::ToolButtonIconOnly" - popupMode: "QToolButton::InstantPopup"; - property bool active: false; - - iconFromFile: "images/placeholder.png"; - width: 14; - height: 14; - focusPolicy: "Qt::NoFocus"; - - styleSheet: "*::down-arrow, *::menu-indicator { image: none; width: 0; height: 0; }"; - - onActiveChanged: { - if (active) { - setIcon(); - opacity = 1; - } else { - opacity = 0; - } - } - - - actions: [ - QAction { - text: qsTr("Reset") - visible: backendValue.isInSubState || backendValue.isInModel - onTriggered: { - transaction.start(); - backendValue.resetValue(); - backendValue.resetValue(); - transaction.end(); - } - - }, - QAction { - text: qsTr("Set Expression"); - onTriggered: { - expressionEdit.globalY = extendedFunctionButton.globalY - 10; - expressionEdit.backendValue = extendedFunctionButton.backendValue - - if ((expressionEdit.y + expressionEdit.height + 20) > frame.height) - expressionEdit.y = frame.height - expressionEdit.height - 20 - - expressionEdit.show(); - expressionEdit.raise(); - expressionEdit.active = true; - } - } - ] -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedPane.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedPane.qml deleted file mode 100644 index 650c25b526b..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedPane.qml +++ /dev/null @@ -1,54 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QScrollArea { - widgetResizable: true; - styleSheetFile: ":/qmldesigner/scrollbar.css"; - horizontalScrollBarPolicy: "Qt::ScrollBarAlwaysOff"; - id: extendedPane; - visible: false; - QFrame { - id: properyEditorExtended - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - spacing: 0; - - Transformation {} - - QScrollArea { - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedSwitches.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedSwitches.qml deleted file mode 100644 index b011f1f4b89..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedSwitches.qml +++ /dev/null @@ -1,89 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QFrame { - visible: false; - focusPolicy: "Qt::NoFocus" - id: extendedSwitches; - property bool active: false; - property variant backendValue; - styleSheetFile: "switch.css"; - property variant specialModeIcon; - specialModeIcon: "images/standard.png"; - - opacity: 0; - - Behavior on opacity { - NumberAnimation { - easing.type: "InSine" - duration: 200 - } - } - - onActiveChanged: { - if (!nameLineEdit.focus) - if (active) { - opacity = 1; - } else { - opacity = 0; - } - } - - layout: QHBoxLayout { - topMargin: 6; - bottomMargin: 4; - leftMargin: 10; - rightMargin: 8; - spacing: 4; - - QPushButton { - focusPolicy: "Qt::NoFocus" - onReleased: backendValue.resetValue(); - iconFromFile: "images/reset-button.png"; - toolTip: "reset property"; - } - - QLineEdit { - id: nameLineEdit; - readOnly: false; - //focusPolicy: "Qt::NoFocus" - text: backendValue == null ? "" : backendValue.expression; - onEditingFinished: { - if (backendValue != null) - backendValue.expression = text; - } - onFocusChanged: { - extendedSwitches.active = focus; - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FlagedButton.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FlagedButton.qml deleted file mode 100644 index 66f34064419..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FlagedButton.qml +++ /dev/null @@ -1,75 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QPushButton { - id: flagedButton - property bool flagActive: false - property variant backendValue - property variant theValue: backendValue.value; - property bool blueHigh: false - property bool baseStateFlag: isBaseState; - - onBaseStateFlagChanged: { - evaluate(); - } - - property bool isInModel: backendValue.isInModel; - onIsInModelChanged: { - evaluate(); - } - property bool isInSubState: backendValue.isInSubState; - onIsInSubStateChanged: { - evaluate(); - } - - onTheValueChanged: { - evaluate(); - } - - function evaluate() { - if (!enabled) { - fontSelector.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue != null && backendValue.isInModel) - flagActive = true; - else - flagActive = false; - } else { - if (backendValue != null && backendValue.isInSubState) - flagActive = true; - else - flagActive = false; - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontComboBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontComboBox.qml deleted file mode 100644 index e8f4591a86c..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontComboBox.qml +++ /dev/null @@ -1,107 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - id: fontComboBox - - property alias currentFont: fontSelector.currentFont - property variant backendValue - property variant baseStateFlag; - property alias enabled: fontSelector.enabled - - onBaseStateFlagChanged: { - evaluate(); - } - - onBackendValueChanged: { - evaluate(); - } - - property variant isEnabled: fontComboBox.enabled - onIsEnabledChanged: { - evaluate(); - } - - function evaluate() { - if (!enabled) { - fontSelector.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue != null && backendValue.isInModel) - fontSelector.setStyleSheet("QComboBox,QComboBox:on{color: "+scheme.changedBaseColor+"}QComboBox:off{color:"+scheme.optionsColor+"}"); - else - fontSelector.setStyleSheet("QComboBox,QComboBox:on{color: "+scheme.defaultColor+"}QComboBox:off{color:"+scheme.optionsColor+"}"); - } else { - if (backendValue != null && backendValue.isInSubState) - fontSelector.setStyleSheet("QComboBox,QComboBox:on{color: "+scheme.changedStateColor+"}QComboBox:off{color:"+scheme.optionsColor+"}"); - else - fontSelector.setStyleSheet("QComboBox,QComboBox:on{color: "+scheme.defaultColor+"}QComboBox:off{color:"+scheme.optionsColor+"}"); - } - } - } - - property bool isInModel: (backendValue === undefined || backendValue === null) ? false: backendValue.isInModel; - - onIsInModelChanged: { - evaluate(); - } - - property bool isInSubState: (backendValue === undefined || backendValue === null) ? false: backendValue.isInSubState; - - onIsInSubStateChanged: { - evaluate(); - } - - ColorScheme { id:scheme; } - - layout: HorizontalLayout { - QFontComboBox { - editable: false - id: fontSelector - - currentFont.family: backendValue.value - property variant fontFamily: currentFont.family - onFontFamilyChanged: { - if (backendValue === undefined) - return; - if (backendValue.value != currentFont.family) - backendValue.value = currentFont.family; - } - } - } - ExtendedFunctionButton { - backendValue: fontComboBox.backendValue - y: 4 - x: 2 - visible: fontComboBox.enabled - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontGroupBox.qml deleted file mode 100644 index 85f552b6dc0..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontGroupBox.qml +++ /dev/null @@ -1,154 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - id: fontGroupBox - caption: qsTr("Font") - property variant showStyle: false - - property variant fontFamily: backendValues.font_family - property variant pointSize: backendValues.font_pointSize - property variant pixelSize: backendValues.font_pixelSize - - property variant boldStyle: backendValues.font_bold - property variant italicStyle: backendValues.font_italic - property variant underlineStyle: backendValues.font_underline - property variant strikeoutStyle: backendValues.font_strikeout - - onPointSizeChanged: { - sizeWidget.setPointPixelSize(); - } - - onPixelSizeChanged: { - sizeWidget.setPointPixelSize(); - } - - layout: VerticalLayout { - - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Font") - } - - FontComboBox { - backendValue: fontFamily - baseStateFlag: isBaseState - } - } - } - QWidget { - id: sizeWidget - property bool selectionFlag: selectionChanged - - property bool pixelSize: sizeType.currentText == "pixels" - property bool isSetup; - - function setPointPixelSize() { - isSetup = true; - sizeType.currentText = "points"; - if (fontGroupBox.pixelSize.isInModel) - sizeType.currentText = "pixels"; - isSetup = false; - } - - onSelectionFlagChanged: { - setPointPixelSize(); - } - - layout: HorizontalLayout { - Label { - text: qsTr("Size") - } - SpinBox { - minimum: 0 - maximum: 400 - visible: !sizeWidget.pixelSize - backendValue: pointSize - baseStateFlag: isBaseState; - } - SpinBox { - minimum: 0 - maximum: 400 - visible: sizeWidget.pixelSize - backendValue: pixelSize - baseStateFlag: isBaseState; - } - QComboBox { - id: sizeType - maximumWidth: 60 - items : { ["pixels", "points"] } - onCurrentTextChanged: { - if (sizeWidget.isSetup) - return; - if (currentText == "pixels") { - pointSize.resetValue(); - pixelSize.value = 8; - } else { - pixelSize.resetValue(); - } - } - } - } - } - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Font style") - } - FontStyleButtons { - bold: boldStyle - italic: italicStyle - underline: underlineStyle - strikeout: strikeoutStyle - } - } - } - QWidget { - visible: showStyle - layout: HorizontalLayout { - Label { - text: qsTr("Style") - } - ComboBox { - baseStateFlag:isBaseState - backendValue: (backendValues.style === undefined) ? dummyBackendValue : backendValues.style - items : { ["Normal", "Outline", "Raised", "Sunken"] } - currentText: backendValue.value; - onItemsChanged: { - currentText = backendValue.value; - } - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontStyleButtons.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontStyleButtons.qml deleted file mode 100644 index eec22125eed..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontStyleButtons.qml +++ /dev/null @@ -1,149 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QGroupBox { - id: fontStyleButtons - - property int buttonWidth: 46 - - property variant bold: backendValues.font_bold - property variant italic: backendValues.font_italic - property variant underline: backendValues.font_underline - property variant strikeout: backendValues.font_strikeout - - layout: HorizontalLayout { - - QWidget { - fixedHeight: 32 - - FlagedButton { - checkable: true - iconSize.width: 24; - iconSize.height: 24; - fixedWidth: buttonWidth - width: fixedWidth - fixedHeight: 28 - height: fixedHeight - styleSheetFile: "styledbuttonleft.css"; - checked: bold.value; - backendValue: bold; - - iconFromFile: flagActive ? "images/bold-h-icon.png" : "images/bold-icon.png" - - onClicked: { - bold.value = checked; - } - - ExtendedFunctionButton { - backendValue: bold - y: 7 - x: 2 - } - } - FlagedButton { - x: buttonWidth - checkable: true - fixedWidth: buttonWidth - width: fixedWidth - fixedHeight: 28 - iconSize.width: 24; - iconSize.height: 24; - height: fixedHeight - iconFromFile: flagActive ? "images/italic-h-icon.png" : "images/italic-icon.png" - - styleSheetFile: "styledbuttonmiddle.css"; - checked: italic.value; - backendValue: italic; - - onClicked: { - italic.value = checked; - } - - ExtendedFunctionButton { - backendValue: italic - y: 7 - x: 2 - } - } - FlagedButton { - x: buttonWidth * 2 - checkable: true - fixedWidth: buttonWidth - width: fixedWidth - fixedHeight: 28 - iconSize.width: 24; - iconSize.height: 24; - height: fixedHeight - iconFromFile: flagActive ? "images/underline-h-icon.png" : "images/underline-icon.png" - - styleSheetFile: "styledbuttonmiddle.css"; - checked: underline.value; - backendValue: underline; - - onClicked: { - underline.value = checked; - } - - ExtendedFunctionButton { - backendValue: underline; - y: 7 - x: 2 - } - } - FlagedButton { - x: buttonWidth * 3 - checkable: true - fixedWidth: buttonWidth - width: fixedWidth - fixedHeight: 28 - iconSize.width: 24; - iconSize.height: 24; - height: fixedHeight - iconFromFile: flagActive ? "images/strikeout-h-icon.png" : "images/strikeout-icon.png" - - styleSheetFile: "styledbuttonright.css"; - checked: strikeout.value; - backendValue: strikeout; - - onClicked: { - strikeout.value = checked; - } - - ExtendedFunctionButton { - backendValue: strikeout; - y: 7 - x: 2 - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Geometry.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Geometry.qml deleted file mode 100644 index 693a5b94594..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Geometry.qml +++ /dev/null @@ -1,132 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - finished: finishedNotify - id: geometry - - caption: qsTr("Geometry") - - layout: VerticalLayout { - bottomMargin: 12 - - QWidget { // 1 - layout: HorizontalLayout { - - Label { - text: qsTr("Position") - } - - DoubleSpinBox { - id: xSpinBox; - text: "X" - alignRight: false - spacing: 4 - singleStep: 1; - objectName: "xSpinBox"; - enabled: anchorBackend.hasParent && !anchorBackend.leftAnchored && !anchorBackend.horizontalCentered - backendValue: backendValues.x - minimum: -2000; - maximum: 2000; - baseStateFlag: isBaseState; - } - - DoubleSpinBox { - id: ySpinBox; - singleStep: 1; - text: "Y" - alignRight: false - spacing: 4 - enabled: anchorBackend.hasParent && !anchorBackend.topAnchored && !anchorBackend.verticalCentered - backendValue: backendValues.y - minimum: -2000; - maximum: 2000; - baseStateFlag: isBaseState; - } - - - } - } //QWidget //1 - - QWidget { - id: bottomWidget - layout: HorizontalLayout { - - Label { - id: sizeLabel - text: qsTr("Size") - } - - DoubleSpinBox { - toolTip: qsTr("Width") - id: widthSpinBox; - text: "W" - alignRight: false - spacing: 4 - singleStep: 1; - enabled: !(anchorBackend.rightAnchored && anchorBackend.leftAnchored) - backendValue: backendValues.width - minimum: -2000; - maximum: 2000; - baseStateFlag: isBaseState; - } - - DoubleSpinBox { - toolTip: qsTr("Height") - id: heightSpinBox; - text: "H" - alignRight: false - spacing: 4 - singleStep: 1; - enabled: !(anchorBackend.bottomAnchored && anchorBackend.topAnchored) - backendValue: backendValues.height - minimum: -2000; - maximum: 2000; - baseStateFlag: isBaseState; - } - } //QVBoxLayout - } //QWidget - } //QHBoxLayout - - QPushButton { - checkable: true - toolTip: qsTr("Lock aspect ratio") - fixedWidth: 45 - width: fixedWidth - fixedHeight: 9 - height: fixedHeight - styleSheetFile: "aspectlock.css"; - x: bottomWidget.x + ((bottomWidget.width - sizeLabel.width) / 2) + sizeLabel.width - 8 - y: bottomWidget.y + bottomWidget.height + 2 - visible: false //hide until the visual editor implements this feature ### - } -} //QGroupBox diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBox.qml deleted file mode 100644 index cbfc54181d5..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBox.qml +++ /dev/null @@ -1,86 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QExtGroupBox { - id: groupBox; - - property variant finished; - - property variant caption; - - property variant oldMaximumHeight; - - onFinishedChanged: { - checkBox.raise(); - oldMaximumHeight = maximumHeight; - visible = false; - visible = true; - //x = 6; - } - - QToolButton { - //QCheckBox { - id: checkBox; - - text: groupBox.caption; - focusPolicy: "Qt::NoFocus"; - styleSheetFile: "specialCheckBox.css"; - y: 0; - x: 0; - fixedHeight: 17 - fixedWidth: groupBox.width; - arrowType: "Qt::DownArrow"; - toolButtonStyle: "Qt::ToolButtonTextBesideIcon"; - checkable: true; - checked: true; - font.bold: true; - onClicked: { - if (checked) { - //groupBox.maximumHeight = oldMaximumHeight; - collapsed = false; - //text = ""; - //width = 12; - //width = 120; - arrowType = "Qt::DownArrow"; - visible = true; - } else { - //groupBox.maximumHeight = 20; - - collapsed = true; - //text = groupBox.caption; - visible = true; - //width = 120; - arrowType = "Qt::RightArrow"; - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBoxOption.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBoxOption.qml deleted file mode 100644 index 897c99595f8..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBoxOption.qml +++ /dev/null @@ -1,50 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QExtGroupBox { - id: groupBoxOption; - - property variant finished; - - property variant caption; - - property variant oldMaximumHeight; - - onFinishedChanged: { - CheckBox.raise(); - maximumHeight = height; - oldMaximumHeight = maximumHeight; - minimumHeight = height; - x = 6; - visible = false; - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalLayout.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalLayout.qml deleted file mode 100644 index 711b4a65e94..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalLayout.qml +++ /dev/null @@ -1,39 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QHBoxLayout { - id: horizontalLayout - spacing: 10 - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalWhiteLine.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalWhiteLine.qml deleted file mode 100644 index 79a4e7f9540..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalWhiteLine.qml +++ /dev/null @@ -1,38 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - - QLineEdit { - text: ""; - readOnly: true; - maximumHeight: 2; - styleSheet: "QLineEdit {border: 2px solid #EEEEEE; min-height: 0px; max-height: 0px;}"; - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/IntEditor.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/IntEditor.qml deleted file mode 100644 index 1ba64c796d3..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/IntEditor.qml +++ /dev/null @@ -1,112 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - id: intEditor; - - property variant backendValue; - property variant baseStateFlag; - - property variant caption; - - property variant maximumValue: 1000 - property variant minimumValue: -1000 - property variant step: 1 - property bool slider: true - property alias alignment: label.alignment - - property bool editorEnabled: true - - layout: HorizontalLayout { - Label { - id: label - text: caption - toolTip: caption - visible: caption != "" - } - - SpinBox { - enabled: editorEnabled - backendValue: (intEditor.backendValue === undefined || - intEditor.backendValue === null) - ? null : intEditor.backendValue; - singleStep: step - - property variant backendValueValue: (intEditor.backendValue === undefined || - intEditor.backendValue === null) - ? null : intEditor.backendValue.value; - - minimum: minimumValue - maximum: maximumValue - baseStateFlag: intEditor.baseStateFlag - } - - - QWidget { - visible: intEditor.slider - id: sliderWidget - QSlider { - id: intSlider - enabled: editorEnabled - y: sliderWidget.height / 2 - 12 - width: sliderWidget.width - height: 24 - property alias backendValue: intEditor.backendValue - orientation: "Qt::Horizontal" - minimum: minimumValue - maximum: maximumValue - singleStep: step - property int valueFromBackend: intEditor.backendValue.value; - - onValueFromBackendChanged: { - if (intSlider.maximum < valueFromBackend) - intSlider.maximum = valueFromBackend; - if (intSlider.minimum > valueFromBackend) - intSlider.minimum = valueFromBackend; - intSlider.value = valueFromBackend; - } - - onValueChanged: { - if (backendValue != undefined && backendValue != null) - backendValue.value = value; - } - - onSliderPressed: { - transaction.start(); - } - onSliderReleased: { - transaction.end(); - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Label.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Label.qml deleted file mode 100644 index 7c96e97d65e..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Label.qml +++ /dev/null @@ -1,37 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QLabel { - id: label - alignment: "Qt::AlignRight | Qt::AlignVCenter" - fixedWidth: frame.labelWidth -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Layout.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Layout.qml deleted file mode 100644 index efc12595863..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Layout.qml +++ /dev/null @@ -1,385 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - finished: finishedNotify; - - caption: qsTr("Layout") - - id: layout; - enabled: anchorBackend.hasParent; - - property bool isInBaseState: isBaseState - - property variant targetLabelWidth: 60 - property int leftMarginMargin: 16 + 10 + 10 - layout: VerticalLayout { - Label { - text: qsTr("Anchors") - } - QWidget { - layout: HorizontalLayout { - leftMargin: 10 - topMargin: 8 - - - AnchorButtons { - opacity: enabled ? 1.0 : 0.3; - enabled: isInBaseState - fixedWidth:266 - toolTip: enabled ? qsTr("Set anchors") : qsTr("Setting anchors in states is not supported.") - } - } - } - - QWidget { - visible: anchorBackend.topAnchored; - layout : VerticalLayout { - topMargin: 8; - bottomMargin: 4; - rightMargin: 10; - QWidget { - layout: HorizontalLayout { - leftMargin: 10 - QLabel { - //iconFromFile: "qrc:qmldesigner/images/icon-top.png" - fixedWidth: 16 - fixedHeight: 16 - styleSheet: "border-image: url(:/qmldesigner/images/icon-top.png)"; - } - - Label { - text: qsTr("Target") - fixedWidth: targetLabelWidth - } - SiblingComboBox { - enabled: isInBaseState - itemNode: anchorBackend.itemNode - selectedItemNode: anchorBackend.topTarget - onSelectedItemNodeChanged: { anchorBackend.topTarget = selectedItemNode; } - } - } - } - - QWidget { - layout : HorizontalLayout { - leftMargin: leftMarginMargin - Label { - text: qsTr("Margin") - fixedWidth: targetLabelWidth - } - IntEditor { - id:topbox - slider: false - caption: "" - backendValue: backendValues.anchors_topMargin - baseStateFlag: isInBaseState; - maximumValue: 999 - minimumValue: -999 - step: 1 - } - - PlaceHolder { - fixedWidth: 80 - } - } - } - } - } - QWidget { - visible: anchorBackend.bottomAnchored; - layout : VerticalLayout { - topMargin: 8; - bottomMargin: 4; - rightMargin: 10; - QWidget { - layout: HorizontalLayout { - leftMargin: 10 - QLabel { - //iconFromFile: "qrc:qmldesigner/images/icon-top.png" - fixedWidth: 16 - fixedHeight: 16 - styleSheet: "border-image: url(:/qmldesigner/images/icon-bottom.png)"; - } - - Label { - text: qsTr("Target") - fixedWidth: targetLabelWidth - } - SiblingComboBox { - enabled: isInBaseState - itemNode: anchorBackend.itemNode - selectedItemNode: anchorBackend.bottomTarget - onSelectedItemNodeChanged: { anchorBackend.bottomTarget = selectedItemNode; } - } - - } - } - - QWidget { - layout : HorizontalLayout { - leftMargin: leftMarginMargin - Label { - text: qsTr("Margin") - fixedWidth: targetLabelWidth - } - IntEditor { - slider: false - caption: "" - backendValue: backendValues.anchors_bottomMargin - baseStateFlag: isInBaseState; - maximumValue: 999 - minimumValue: -999 - step: 1 - } - - PlaceHolder { - fixedWidth: 80 - } - } - } - } - } - QWidget { - visible: anchorBackend.leftAnchored; - layout : VerticalLayout { - topMargin: 8; - bottomMargin: 4; - rightMargin: 10; - QWidget { - layout: HorizontalLayout { - leftMargin: 10 - QLabel { - //iconFromFile: "qrc:qmldesigner/images/icon-top.png" - fixedWidth: 16 - fixedHeight: 16 - styleSheet: "border-image: url(:/qmldesigner/images/icon-left.png)"; - } - - Label { - text: qsTr("Target") - fixedWidth: targetLabelWidth - } - SiblingComboBox { - enabled: isInBaseState - itemNode: anchorBackend.itemNode - selectedItemNode: anchorBackend.leftTarget - onSelectedItemNodeChanged: { anchorBackend.leftTarget = selectedItemNode; } - } - } - } - - QWidget { - layout : HorizontalLayout { - leftMargin: leftMarginMargin - Label { - text: qsTr("Margin") - fixedWidth: targetLabelWidth - } - IntEditor { - slider: false - caption: "" - backendValue: backendValues.anchors_leftMargin - baseStateFlag: isInBaseState; - maximumValue: 999 - minimumValue: -999 - step: 1 - } - - PlaceHolder { - fixedWidth: 80 - } - } - } - } - } - QWidget { - visible: anchorBackend.rightAnchored; - layout : VerticalLayout { - topMargin: 8; - bottomMargin: 4; - rightMargin: 10; - QWidget { - layout: HorizontalLayout { - leftMargin: 10 - QLabel { - //iconFromFile: "qrc:qmldesigner/images/icon-top.png" - fixedWidth: 16 - fixedHeight: 16 - styleSheet: "border-image: url(:/qmldesigner/images/icon-right.png)"; - } - - Label { - text: qsTr("Target") - fixedWidth: targetLabelWidth - } - SiblingComboBox { - enabled: isInBaseState - itemNode: anchorBackend.itemNode - selectedItemNode: anchorBackend.rightTarget - onSelectedItemNodeChanged: { anchorBackend.rightTarget = selectedItemNode; } - } - } - } - - QWidget { - layout : HorizontalLayout { - leftMargin: leftMarginMargin - Label { - text: qsTr("Margin") - fixedWidth: targetLabelWidth - } - IntEditor { - slider: false - caption: "" - backendValue: backendValues.anchors_rightMargin - baseStateFlag: isInBaseState; - maximumValue: 999 - minimumValue: -999 - step: 1 - } - - PlaceHolder { - fixedWidth: 80 - } - } - } - } - } - QWidget { - visible: anchorBackend.horizontalCentered - layout : VerticalLayout { - topMargin: 8; - bottomMargin: 4; - rightMargin: 10; - QWidget { - layout: HorizontalLayout { - leftMargin: 10 - QLabel { - //iconFromFile: "qrc:qmldesigner/images/icon-top.png" - fixedWidth: 16 - fixedHeight: 16 - styleSheet: "border-image: url(:/qmldesigner/images/icon-horizontal.png)"; - } - - Label { - text: qsTr("Target") - fixedWidth: targetLabelWidth - } - SiblingComboBox { - enabled: isInBaseState - itemNode: anchorBackend.itemNode - selectedItemNode: anchorBackend.horizontalTarget - onSelectedItemNodeChanged: { anchorBackend.horizontalTarget = selectedItemNode; } - } - } - } - - QWidget { - layout : HorizontalLayout { - leftMargin: leftMarginMargin - Label { - text: qsTr("Margin") - fixedWidth: targetLabelWidth - } - IntEditor { - slider: false - caption: "" - baseStateFlag: isInBaseState; - backendValue: backendValues.anchors_horizontalCenterOffset - maximumValue: 999 - minimumValue: -999 - step: 1 - } - - PlaceHolder { - fixedWidth: 80 - } - } - } - } - } - QWidget { - visible: anchorBackend.verticalCentered - layout : VerticalLayout { - topMargin: 8; - bottomMargin: 4; - rightMargin: 10; - QWidget { - layout: HorizontalLayout { - leftMargin: 10 - QLabel { - //iconFromFile: "qrc:qmldesigner/images/icon-top.png" - fixedWidth: 16 - fixedHeight: 16 - styleSheet: "border-image: url(:/qmldesigner/images/icon-vertical.png)"; - } - - Label { - text: qsTr("Target") - fixedWidth: targetLabelWidth - } - SiblingComboBox { - enabled: isInBaseState - itemNode: anchorBackend.itemNode - selectedItemNode: anchorBackend.verticalTarget - onSelectedItemNodeChanged: { anchorBackend.verticalTarget = selectedItemNode; } - } - } - } - - QWidget { - layout : HorizontalLayout { - leftMargin: leftMarginMargin - Label { - text: qsTr("Margin") - fixedWidth: targetLabelWidth - } - IntEditor { - slider: false - caption: "" - backendValue: backendValues.anchors_verticalCenterOffset - baseStateFlag: isInBaseState; - maximumValue: 999 - minimumValue: -999 - step: 1 - } - - PlaceHolder { - fixedWidth: 80 - } - } - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LayoutPane.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LayoutPane.qml deleted file mode 100644 index 0132dd52135..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LayoutPane.qml +++ /dev/null @@ -1,55 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QScrollArea { - widgetResizable: true; - styleSheetFile: ":/qmldesigner/scrollbar.css"; - horizontalScrollBarPolicy: "Qt::ScrollBarAlwaysOff"; - id: layoutPane; - visible: false; - QFrame { - id: properyEditorLayout; - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - spacing: 0; - - Layout { - id: layoutBox; - } - QScrollArea { - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LineEdit.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LineEdit.qml deleted file mode 100644 index 3463e733402..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LineEdit.qml +++ /dev/null @@ -1,161 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - id: lineEdit - - function escapeString(string) { - var str = string; - str = str.replace(/\\/g, "\\\\"); - str.replace(/\"/g, "\\\""); - str = str.replace(/\t/g, "\\t"); - str = str.replace(/\r/g, "\\r"); - str = str.replace(/\n/g, '\\n'); - return str; - } - - property variant backendValue - property alias enabled: lineEdit.enabled - property variant baseStateFlag - property alias text: lineEditWidget.text - property alias readOnly: lineEditWidget.readOnly - property alias translation: trCheckbox.visible - property alias inputMask: lineEditWidget.inputMask - - minimumHeight: 24; - - onBaseStateFlagChanged: { - evaluate(); - } - - property variant isEnabled: lineEdit.enabled - onIsEnabledChanged: { - evaluate(); - } - - - property bool isInModel: backendValue.isInModel; - onIsInModelChanged: { - evaluate(); - } - property bool isInSubState: backendValue.isInSubState; - onIsInSubStateChanged: { - evaluate(); - } - - function evaluate() { - if (!enabled) { - lineEditWidget.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue != null && backendValue.isInModel) - lineEditWidget.setStyleSheet("color: "+scheme.changedBaseColor); - else - lineEditWidget.setStyleSheet("color: "+scheme.defaultColor); - } else { - if (backendValue != null && backendValue.isInSubState) - lineEditWidget.setStyleSheet("color: "+scheme.changedStateColor); - else - lineEditWidget.setStyleSheet("color: "+scheme.defaultColor); - } - } - } - - ColorScheme { id:scheme; } - - QLineEdit { - y: 2 - id: lineEditWidget - styleSheet: "QLineEdit { padding-left: 32; }" - width: lineEdit.width - height: lineEdit.height - toolTip: backendValue.isBound ? backendValue.expression : "" - - property string valueFromBackend: (backendValue === undefined || backendValue.value === undefined) ? "" : backendValue.value; - - onValueFromBackendChanged: { - if (backendValue.value === undefined) - return; - text = backendValue.value; - } - - onEditingFinished: { - if (backendValue.isTranslated) { - backendValue.expression = "qsTr(\"" + escapeString(text) + "\")" - } else { - backendValue.value = text - } - evaluate(); - } - - onFocusChanged: { - if (focus) - backendValue.lock(); - else - backendValue.unlock(); - } - - - } - ExtendedFunctionButton { - backendValue: lineEdit.backendValue - y: 6 - x: 0 - visible: lineEdit.enabled - } - QCheckBox { - id: trCheckbox - y: 2 - styleSheetFile: "checkbox_tr.css"; - toolTip: qsTr("Translate this string") - x: lineEditWidget.width - 22 - height: lineEdit.height - 2; - width: 24 - visible: false - checked: backendValue.isTranslated - onToggled: { - if (trCheckbox.checked) { - backendValue.expression = "qsTr(\"" + escapeString(lineEditWidget.text) + "\")" - } else { - backendValue.value = lineEditWidget.text - } - evaluate(); - } - - onVisibleChanged: { - if (trCheckbox.visible) { - trCheckbox.raise(); - lineEditWidget.styleSheet = "QLineEdit { padding-left: 32; padding-right: 62;}" - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Modifiers.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Modifiers.qml deleted file mode 100644 index edb981703c2..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Modifiers.qml +++ /dev/null @@ -1,169 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - finished: finishedNotify; - caption: qsTr("Manipulation") - maximumHeight: 200; - minimumHeight: 180; - id: mofifiers; - - layout: VerticalLayout { - - QWidget { - layout: HorizontalLayout { - Label { - text: "Visibility" - } - - CheckBox { - id: visibleCheckBox; - text: "Is visible"; - backendValue: backendValues.visible === undefined ? false : backendValues.visible; - baseStateFlag: isBaseState; - checkable: true; - } - CheckBox { - id: clipCheckBox; - text: "Clip Content"; - backendValue: backendValues.clip === undefined ? false : backendValues.clip; - baseStateFlag: isBaseState; - checkable: true; - } - } - } - QWidget { - layout: HorizontalLayout { - - Label { - text: "Opacity" - } - - DoubleSpinBox { - text: "" - id: opacitySpinBox; - backendValue: backendValues.opacity === undefined ? null : backendValues.opacity - property variant backendValueValue: backendValues.opacity.value; - minimumWidth: 60; - minimum: 0; - maximum: 1; - singleStep: 0.1 - baseStateFlag: isBaseState; - onBackendValueValueChanged: { - opacitySlider.value = backendValue.value * 100; - } - } - SliderWidget { - id: opacitySlider - minimum: 0 - maximum: 100 - singleStep: 5; - backendValue: backendValues.opacity === undefined ? null : backendValues.opacity - onValueChanged: { - if (backendValues.opacity !== undefined) - backendValues.opacity.value = value / 100; - } - } - } - } - QWidget { - layout: HorizontalLayout { - - Label { - text: "Origin"; - } - ComboBox { - minimumWidth: 20 - baseStateFlag: isBaseState - - items : { [ - "TopLeft", "Top", "TopRight", "Left", "Center", "Right", "BottomLeft", "Bottom", - "BottomRight" - ] } - - backendValue: backendValues.transformOrigin - } - } - } - QWidget { - layout: HorizontalLayout { - - Label { - text: "Scale" - } - - DoubleSpinBox { - text: "" - id: scaleSpinBox; - - backendValue: backendValues.scale; - property variant backendValueValue: backendValues.scale.value; - minimumWidth: 60; - minimum: 0.01 - maximum: 10 - singleStep: 0.1 - baseStateFlag: isBaseState; - onBackendValueValueChanged: { - scaleSlider.value = backendValue.value * 10; - } - } - SliderWidget { - id: scaleSlider; - backendValue: backendValues.scale; - minimum: 1; - maximum: 100; - singleStep: 1; - onValueChanged: { - backendValues.scale.value = value / 10; - } - } - } - } - IntEditor { - backendValue: backendValues.rotation - caption: qsTr("Rotation") - baseStateFlag: isBaseState; - step: 10; - minimumValue: 0; - maximumValue: 360; - } - - IntEditor { - backendValue: backendValues.z == undefined ? 0 : backendValues.z - caption: qsTr("z") - baseStateFlag: isBaseState; - step: 1; - minimumValue: -100; - maximumValue: 100; - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PlaceHolder.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PlaceHolder.qml deleted file mode 100644 index f759bf4715d..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PlaceHolder.qml +++ /dev/null @@ -1,37 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - id: placeHolder - - fixedWidth: 100 - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PropertyFrame.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PropertyFrame.qml deleted file mode 100644 index b7f4d734df0..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PropertyFrame.qml +++ /dev/null @@ -1,54 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -WidgetFrame { - id: propertyFrame; - - minimumWidth: 320; - property int frameWidth: width - property int labelWidth: 96 - - onFrameWidthChanged: { - if (frameWidth > 300) { - var moreSpace = (frameWidth - 300) / 3; - var newFixedWidth = 96 + moreSpace; - if (newFixedWidth > 200) - newFixedWidth = 200; - labelWidth = newFixedWidth; - } else { - labelWidth = 96; - } - } - - objectName: "propertyEditorFrame" - styleSheetFile: "propertyEditor.css"; -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ScrollArea.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ScrollArea.qml deleted file mode 100644 index 1289155a2d7..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ScrollArea.qml +++ /dev/null @@ -1,41 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - - -QScrollArea { - - property variant finished; - - onFinishedChanged: { - } - -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SliderWidget.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SliderWidget.qml deleted file mode 100644 index c56423e1d01..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SliderWidget.qml +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - id: sliderWidget - - property variant value - property alias singleStep: localSlider.singleStep - property alias minimum: localSlider.minimum - property alias maximum: localSlider.maximum - property variant backendValue - - QSlider { - orientation: "Qt::Horizontal"; - id: localSlider - y: sliderWidget.height / 2 - 12 - width: sliderWidget.width - height: 24 - value: sliderWidget.value - onValueChanged: { - if (sliderWidget.value != value) - sliderWidget.value = value - } - - onSliderPressed: { - transaction.start(); - } - onSliderReleased: { - transaction.end(); - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SpinBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SpinBox.qml deleted file mode 100644 index 869145bf96a..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SpinBox.qml +++ /dev/null @@ -1,144 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { //This is a special spinBox that does color coding for states - - id: spinBox; - - property variant backendValue; - property variant baseStateFlag; - property alias singleStep: box.singleStep; - property alias minimum: box.minimum - property alias maximum: box.maximum - property bool enabled: true - - minimumHeight: 22; - - onBaseStateFlagChanged: { - evaluate(); - } - - onBackendValueChanged: { - evaluate(); - } - - property variant isEnabled: spinBox.enabled - onIsEnabledChanged: { - evaluate(); - } - - function evaluate() { - if (backendValue === undefined) - return; - if (!enabled) { - box.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (!(baseStateFlag === undefined) && baseStateFlag) { - if (backendValue.isInModel) - box.setStyleSheet("color: "+scheme.changedBaseColor); - else - box.setStyleSheet("color: "+scheme.defaultColor); - } else { - if (backendValue.isInSubState) - box.setStyleSheet("color: "+scheme.changedStateColor); - else - box.setStyleSheet("color: "+scheme.defaultColor); - } - } - } - - property bool isInModel: backendValue.isInModel; - - onIsInModelChanged: { - evaluate(); - } - - property bool isInSubState: backendValue.isInSubState; - - onIsInSubStateChanged: { - evaluate(); - } - - ColorScheme { id:scheme; } - - layout: HorizontalLayout { - spacing: 4 - QSpinBox { - property alias backendValue: spinBox.backendValue - toolTip: backendValue.isBound ? backendValue.expression : "" - - enabled: !backendValue.isBound && spinBox.enabled; - - keyboardTracking: false; - id: box; - property bool readingFromBackend: false; - property int valueFromBackend: spinBox.backendValue.value; - - onValueFromBackendChanged: { - readingFromBackend = true; - if (maximum < valueFromBackend) - maximum = valueFromBackend; - if (minimum > valueFromBackend) - minimum = valueFromBackend; - if (valueFromBackend !== value) - value = valueFromBackend; - readingFromBackend = false; - - if (!focus) - evaluate(); - } - - onValueChanged: { - if (backendValue.value !== value) - backendValue.value = value; - } - - onFocusChanged: { - if (focus) { - transaction.start(); - } else { - transaction.end(); - evaluate(); - } - } - onEditingFinished: { - } - } - } - - ExtendedFunctionButton { - backendValue: spinBox.backendValue; - y: box.y + 4 - x: box.x + 2 - visible: spinBox.enabled - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextColorGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextColorGroupBox.qml deleted file mode 100644 index ca83a908247..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextColorGroupBox.qml +++ /dev/null @@ -1,77 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - id: standardTextColorGroupBox - - property bool showStyleColor: false - property bool showSelectionColor: false - property bool showSelectedTextColor: false - - caption: qsTr("Color") - - layout: VerticalLayout { - ColorGroupBox { - caption: qsTr("Text") - finished: finishedNotify - - backendColor: backendValues.color - } - - ColorGroupBox { - caption: qsTr("Style") - visible: showStyleColor - finished: finishedNotify - - backendColor: (backendValues.styleColor === undefined) ? dummyBackendValue : backendValues.styleColor - } - - ColorGroupBox { - caption: qsTr("Selection") - visible: showSelectionColor - finished: finishedNotify - - backendColor: (backendValues.selectionColor === undefined) ? dummyBackendValue : backendValues.selectionColor - } - - ColorGroupBox { - visible: showSelectedTextColor - caption: qsTr("Selected") - - finished: finishedNotify - - backendColor: (backendValues.selectedTextColor === undefined) ? dummyBackendValue : backendValues.selectedTextColor - } - - } - -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextGroupBox.qml deleted file mode 100644 index 17d2611bfd8..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextGroupBox.qml +++ /dev/null @@ -1,100 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - id: standardTextGroupBox - - caption: qsTr("Text") - - property bool showIsWrapping: false - property bool showVerticalAlignment: false - property bool useLineEdit: false - - layout: VerticalLayout { - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Text") - } - LineEdit { - visible: !useLineEdit - backendValue: backendValues.text - baseStateFlag: isBaseState; - translation: true - } - TextEditor { - visible: useLineEdit - translation: true - backendValue: backendValues.text - baseStateFlag: isBaseState; - } - } - } - QWidget { - visible: showIsWrapping - layout: HorizontalLayout { - Label { - text: qsTr("Wrap mode") - } - ComboBox { - baseStateFlag: isBaseState - minimumHeight: 22; - items : { ["NoWrap", "WordWrap", "WrapAnywhere", "WrapAtWordBoundaryOrAnywhere"] } - currentText: backendValues.wrapMode.value; - onItemsChanged: { - currentText = backendValues.wrapMode.value; - } - backendValue: backendValues.wrapMode - } - } - } - QWidget { - layout: HorizontalLayout { - - Label { - text: qsTr("Alignment") - } - AlignmentHorizontalButtons {} - } - } - QWidget { - visible: showVerticalAlignment - layout: HorizontalLayout { - - Label { - text: qsTr("") - } - AlignmentVerticalButtons { } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Switches.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Switches.qml deleted file mode 100644 index fff884e4422..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Switches.qml +++ /dev/null @@ -1,105 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QFrame { - styleSheetFile: "switch.css"; - property variant specialModeIcon; - property bool showLayoutModeButton: true - property bool showExtendedModeButton: true - - specialModeIcon: "images/standard.png"; - maximumWidth: 300; - minimumWidth: 300; - - layout: QHBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 40; - spacing: 0; - - QPushButton { - checkable: true; - checked: true; - id: standardMode; - toolTip: qsTr("Special properties"); - //iconFromFile: "images/rect-icon.png"; - text: backendValues === undefined || backendValues.className === undefined || backendValues.className == "empty" ? "empty" : backendValues.className.value - onClicked: { - extendedMode.checked = false; - layoutMode.checked = false; - checked = true; - standardPane.visible = true; - extendedPane.visible = false; - layoutPane.visible = false; - } - Component.onCompleted: { - standardMode.checked = true; - } - } - - QPushButton { - id: layoutMode; - checkable: true; - checked: false; - toolTip: qsTr("Layout"); - text: qsTr("Layout"); - visible: showLayoutModeButton - onClicked: { - extendedMode.checked = false; - standardMode.checked = false; - checked = true; - standardPane.visible = false; - extendedPane.visible = false; - layoutPane.visible = true; - } - } - - QPushButton { - id: extendedMode; - toolTip: qsTr("Advanced properties"); - checkable: true; - checked: false; - text: qsTr("Advanced") - visible: showExtendedModeButton - onClicked: { - standardMode.checked = false; - layoutMode.checked = false; - checked = true; - standardPane.visible = false; - extendedPane.visible = true; - layoutPane.visible = false; - } - } - - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextEditor.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextEditor.qml deleted file mode 100644 index 925d4fc6ba7..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextEditor.qml +++ /dev/null @@ -1,165 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { - id: textEdit - - function escapeString(string) { - var str = string; - str = str.replace(/\\/g, "\\\\"); - str.replace(/\"/g, "\\\""); - str = str.replace(/\t/g, "\\t"); - str = str.replace(/\r/g, "\\r"); - str = str.replace(/\n/g, '\\n'); - return str; - } - - property variant backendValue - property alias enabled: textEdit.enabled - property variant baseStateFlag - property alias text: textEditWidget.plainText - property alias readOnly: textEditWidget.readOnly - property alias translation: trCheckbox.visible - - minimumHeight: 72; - - onBaseStateFlagChanged: { - evaluate(); - } - - property variant isEnabled: textEdit.enabled - onIsEnabledChanged: { - evaluate(); - } - - - property bool isInModel: backendValue.isInModel; - onIsInModelChanged: { - evaluate(); - } - property bool isInSubState: backendValue.isInSubState; - onIsInSubStateChanged: { - evaluate(); - } - - function evaluate() { - if (!enabled) { - textEditWidget.setStyleSheet("color: "+scheme.disabledColor); - } else { - if (baseStateFlag) { - if (backendValue != null && backendValue.isInModel) - textEditWidget.setStyleSheet("color: "+scheme.changedBaseColor); - else - textEditWidget.setStyleSheet("color: "+scheme.defaultColor); - } else { - if (backendValue != null && backendValue.isInSubState) - textEditWidget.setStyleSheet("color: "+scheme.changedStateColor); - else - textEditWidget.setStyleSheet("color: "+scheme.defaultColor); - } - } - } - - ColorScheme { id:scheme; } - - QTextEdit { - acceptRichText: false - verticalScrollBarPolicy: "Qt::ScrollBarAlwaysOff" - y: 2 - id: textEditWidget - styleSheet: "QLineEdit { padding-left: 32; }" - width: textEdit.width - height: textEdit.height - 2 - toolTip: backendValue.isBound ? backendValue.expression : "" - - property string valueFromBackend: (backendValue === undefined || backendValue.value === undefined) ? "" : backendValue.value; - - onValueFromBackendChanged: { - if (backendValue.value === undefined) - return; - if (plainText === backendValue.value) - return; - plainText = backendValue.value; - } - - onTextChanged: { - if (backendValue.isTranslated) { - backendValue.expression = "qsTr(\"" + escapeString(plainText) + "\")" - } else { - backendValue.value = plainText - } - evaluate(); - } - - onFocusChanged: { - if (focus) - backendValue.lock(); - else - backendValue.unlock(); - } - - - } - ExtendedFunctionButton { - backendValue: textEdit.backendValue - y: 6 - x: 0 - visible: textEdit.enabled - } - - QCheckBox { - id: trCheckbox - y: 2 - styleSheetFile: "checkbox_tr.css"; - toolTip: qsTr("Translate this string") - x: textEditWidget.width - 22 - height: 24; - width: 24 - visible: false - checked: backendValue.isTranslated - onToggled: { - if (trCheckbox.checked) { - backendValue.expression = "qsTr(\"" + escapeString(textEditWidget.plainText) + "\")" - } else { - backendValue.value = textEditWidget.plainText - } - evaluate(); - } - - onVisibleChanged: { - if (trCheckbox.visible) { - trCheckbox.raise(); - textEditWidget.styleSheet = "QLineEdit { padding-left: 32; padding-right: 62;}" - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextInputGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextInputGroupBox.qml deleted file mode 100644 index 14aa48d8582..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextInputGroupBox.qml +++ /dev/null @@ -1,143 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - - id: textInputGroupBox - caption: qsTr("Text Input") - property bool isTextInput: false - - layout: VerticalLayout { - - QWidget { - visible: isTextInput - layout: HorizontalLayout { - - Label {text: qsTr("Input mask") } - - LineEdit { - backendValue: backendValues.inputMask - baseStateFlag: isBaseState - } - } - } - - QWidget { - visible: isTextInput - layout: HorizontalLayout { - - Label {text: qsTr("Echo mode") } - - ComboBox { - baseStateFlag: isBaseState - items : { ["Normal", "Password", "PasswordEchoOnEdit", "NoEcho"] } - currentText: backendValues.echoMode.value; - onItemsChanged: { - currentText = backendValues.echoMode.value; - } - backendValue: backendValues.echoMode - } - } - } - - QWidget { - visible: isTextInput - layout: HorizontalLayout { - - Label { - text: qsTr("Pass. char") - toolTip: qsTr("Character displayed when users enter passwords.") - } - - LineEdit { - backendValue: backendValues.passwordCharacter - baseStateFlag: isBaseState - } - } - } - - QWidget { - layout: HorizontalLayout { - Label {text: qsTr("Flags") } - - CheckBox { - text: qsTr("Read only") - baseStateFlag: isBaseState; - checkable: true; - backendValue: backendValues.readOnly; - } - } - } - - - QWidget { - layout: HorizontalLayout { - Label {text: ""} - - CheckBox { - - text: qsTr("Cursor visible") - baseStateFlag: isBaseState; - checkable: true; - backendValue: backendValues.cursorVisible; - - } - - } - } - - QWidget { - layout: HorizontalLayout { - Label {text: ""} - CheckBox { - text: qsTr("Active focus on press") - baseStateFlag: isBaseState; - checkable: true; - backendValue: backendValues.activeFocusOnPress; - } - } - } - - QWidget { - visible: isTextInput - layout: HorizontalLayout { - Label {text: ""} - CheckBox { - text: qsTr("Auto scroll") - baseStateFlag: isBaseState; - checkable: true; - backendValue: backendValues.autoScroll; - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Transformation.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Transformation.qml deleted file mode 100644 index e9cdaf5a490..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Transformation.qml +++ /dev/null @@ -1,132 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - finished: finishedNotify; - caption: qsTr("Transformation") - maximumHeight: 200; - id: transformation; - - layout: VerticalLayout { - QWidget { - layout: HorizontalLayout { - - Label { - text: qsTr("Origin") - } - OriginWidget { - id: originWidget - - contextMenuPolicy: "Qt::ActionsContextMenu" - origin: backendValues.transformOrigin.value - onOriginChanged: { - backendValues.transformOrigin.value = origin; - } - marked: backendValues.transformOrigin.isInSubState - - ExtendedFunctionButton { - backendValue: backendValues.transformOrigin - y: 2 - x: 56 - visible: originWidget.enabled - } - - actions: [ - QAction { text: qsTr("Top left"); onTriggered: originWidget.origin = "TopLeft"; }, - QAction { text: qsTr("Top"); onTriggered: originWidget.origin = "Top"; }, - QAction { text: qsTr("Top right"); onTriggered: originWidget.origin = "TopRight"; }, - QAction { text: qsTr("Left"); onTriggered: originWidget.origin = "Left"; }, - QAction {text: qsTr("Center"); onTriggered: originWidget.origin = "Center"; }, - QAction { text: qsTr("Right"); onTriggered: originWidget.origin = "Right"; }, - QAction { text: qsTr("Bottom left"); onTriggered: originWidget.origin = "BottomLeft"; }, - QAction { text: qsTr("Bottom"); onTriggered: originWidget.origin = "Bottom"; }, - QAction { text: qsTr("Bottom right"); onTriggered: originWidget.origin = "BottomRight"; } - ] - } - } - } - QWidget { - layout: HorizontalLayout { - - Label { - text: qsTr("Scale") - } - - DoubleSpinBox { - text: "" - id: scaleSpinBox; - - backendValue: backendValues.scale; - property variant backendValueValue: backendValues.scale.value; - minimumWidth: 60; - minimum: 0.01 - maximum: 10 - singleStep: 0.1 - baseStateFlag: isBaseState; - } - SliderWidget { - id: scaleSlider; - backendValue: backendValues.scale; - property variant pureValue: backendValues.scale.value; - onPureValueChanged: { - if (value != pureValue * 10) - value = pureValue * 10; - } - minimum: 1; - maximum: 10; - singleStep: 1; - onValueChanged: { - if ((value > 0) && (value < 11)) - backendValues.scale.value = value / 10; - } - } - } - } - IntEditor { - backendValue: backendValues.rotation - caption: qsTr("Rotation") - baseStateFlag: isBaseState; - step: 10; - minimumValue: -360; - maximumValue: 360; - } - - IntEditor { - backendValue: backendValues.z - caption: "z" - baseStateFlag: isBaseState; - step: 1; - minimumValue: -100; - maximumValue: 100; - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Type.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Type.qml deleted file mode 100644 index 0395191a290..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Type.qml +++ /dev/null @@ -1,76 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - id: type; - finished: finishedNotify; - caption: qsTr("Type") - - layout: VerticalLayout { - spacing: 6 - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Type") - windowTextColor: isBaseState ? "#000000" : "#FF0000"; - } - - QLabel { - text: backendValues.className.value; - } - - } - } - QWidget { - property variant isEnabled: isBaseState - onIsEnabledChanged: idLineEdit.setStyleSheet("color: "+(isEnabled?scheme.defaultColor:scheme.disabledColor)); - ColorScheme{ id:scheme } - - layout: HorizontalLayout { - Label { - text: qsTr("Id"); - } - - QLineEdit { - enabled: isBaseState - id: idLineEdit; - objectName: "idLineEdit"; - readOnly: isBaseState != true; - text: backendValues.id.value; - onEditingFinished: { - backendValues.id.value = text; - } - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/UrlEdit.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/UrlEdit.qml deleted file mode 100644 index aa14e9b66da..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/UrlEdit.qml +++ /dev/null @@ -1,57 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QWidget { //This is a special spinBox that does color coding for states - - id: urlEdit - property bool enabled: true - property variant backendValue; - property variant baseStateFlag; - property alias filter: fileWidget.filter - property alias showComboBox: fileWidget.showComboBox - - minimumHeight: 22; - - layout: HorizontalLayout { - spacing: 4 - FileWidget { - id: fileWidget - enabled: (isBaseState || backendValues.id.value != "") && urlEdit.enabled - fileName: backendValue.value; - onFileNameChanged: { - backendValue.value = fileName; - } - itemNode: anchorBackend.itemNode - showComboBox: false - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/VerticalLayout.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/VerticalLayout.qml deleted file mode 100644 index 93e667d57e2..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/VerticalLayout.qml +++ /dev/null @@ -1,40 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -QVBoxLayout { - id: verticalLayout - topMargin: 20; - bottomMargin: 4; - leftMargin: 0; - rightMargin: 10; - spacing: 4 -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Visibility.qml b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Visibility.qml deleted file mode 100644 index dcb40538809..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Visibility.qml +++ /dev/null @@ -1,115 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 - -GroupBox { - finished: finishedNotify; - caption: qsTr("Visibility") - maximumHeight: 200; - id: visibility; - - layout: VerticalLayout { - - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Visibility") - } - CheckBox { - id: visibleCheckBox; - text: qsTr("Visible") - toolTip: qsTr("isVisible") - backendValue: backendValues.visible; - baseStateFlag: isBaseState; - checkable: true; - } - CheckBox { - id: smoothCheckBox; - text: qsTr("Smooth") - backendValue: backendValues.smooth; - baseStateFlag: isBaseState; - checkable: true; - } - } - } - QWidget { - layout: HorizontalLayout { - Label { - text: "" - } - CheckBox { - id: clipCheckBox; - text: qsTr("Clip") - backendValue: backendValues.clip; - baseStateFlag: isBaseState; - checkable: true; - } - } - } - QWidget { - layout: HorizontalLayout { - - Label { - text: qsTr("Opacity") - } - - DoubleSpinBox { - text: "" - decimals: 2 - id: opacitySpinBox; - backendValue: backendValues.opacity - property variant backendValueValue: backendValues.opacity.value; - minimumWidth: 60; - minimum: 0; - maximum: 1; - singleStep: 0.1 - baseStateFlag: isBaseState; - } - SliderWidget { - id: opacitySlider - minimum: 0 - maximum: 100 - property variant pureValue: backendValues.opacity.value; - onPureValueChanged: { - if (value != pureValue * 100) - value = pureValue * 100; - } - singleStep: 5; - backendValue: backendValues.opacity - onValueChanged: { - if ((value >= 0) && (value <= 100)) - backendValues.opacity.value = value / 100; - } - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbottom.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbottom.css deleted file mode 100644 index bdb2e7b1ef9..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbottom.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/anchor-bottom-normal.png); - } - -QPushButton:pressed { - border-image: url(:/qmldesigner/images/anchor-bottom-pressed.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/anchor-bottom-pressed.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbox.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbox.css deleted file mode 100644 index 389072879c9..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbox.css +++ /dev/null @@ -1,32 +0,0 @@ -QPushButton::checked -{ - border: 3px solid #2222aa; - border-radius: 4px; - border-image: none; - background-color: #909090; -} - -QPushButton:pressed -{ - border: 2px solid #000000; -} - -QPushButton:flat { - border: 1px solid #000000; -} - -QPushButton:default { - border-color: 1px solid black; -} - -QPushButton { - border: 2px solid #333333; - color: white; -} - -QFrame{ - border: 2px solid black; - border-radius: 4px; - padding: 2px; - background: #aaabae; - } \ No newline at end of file diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorfill.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorfill.css deleted file mode 100644 index 53a80982efa..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorfill.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/anchor-fill-normal.png); - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/anchor-fill-pressed.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/anchor-fill-pressed.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorhorizontal.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorhorizontal.css deleted file mode 100644 index 8b985609d2e..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorhorizontal.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/anchor-horizontal-normal.png); - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/anchor-horizontal-pressed.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/anchor-horizontal-pressed.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorleft.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorleft.css deleted file mode 100644 index a5eebcc683a..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorleft.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/anchor-left-normal.png); - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/anchor-left-pressed.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/anchor-left-pressed.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorright.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorright.css deleted file mode 100644 index a30a01b0cb1..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorright.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/anchor-right-normal.png); - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/anchor-right-pressed.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/anchor-right-pressed.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorspacer.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorspacer.css deleted file mode 100644 index e88ce664f31..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorspacer.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/anchor-spacer.png); - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/anchor-spacer.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/anchor-spacer.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchortop.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchortop.css deleted file mode 100644 index 68a9e3e4bcd..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchortop.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/anchor-top-normal.png); - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/anchor-top-pressed.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/anchor-top-pressed.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorvertical.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorvertical.css deleted file mode 100644 index 617e0919819..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorvertical.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/anchor-vertical-normal.png); - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/anchor-vertical-pressed.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/anchor-vertical-pressed.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/applybutton.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/applybutton.css deleted file mode 100644 index dadd1baece5..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/applybutton.css +++ /dev/null @@ -1,8 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/apply.png) 3; - border-width: 3; - } - - QPushButton:hover { - border-image: url(:/qmldesigner/images/applybright.png) 3; - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/aspectlock.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/aspectlock.css deleted file mode 100644 index 1368648c13f..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/aspectlock.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/aspectlockoff.png); - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/aspectlockset.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/aspectlockset.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/cancelbutton.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/cancelbutton.css deleted file mode 100644 index 55e50d74cd5..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/cancelbutton.css +++ /dev/null @@ -1,8 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/cancel.png) 3; - border-width: 3; - } - - QPushButton:hover { - border-image: url(:/qmldesigner/images/cancelbright.png) 3; - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/checkbox_tr.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/checkbox_tr.css deleted file mode 100644 index 92e3b2c6b16..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/checkbox_tr.css +++ /dev/null @@ -1,33 +0,0 @@ -QCheckBox { - spacing: 4px; - font-size: 11px; -} - -QCheckBox::indicator { - width: 20px; - height: 20px; -} - -QCheckBox::indicator:unchecked { - image: url(:/qmldesigner/images/checkbox_tr_unchecked.png); -} - -QCheckBox::indicator:unchecked:hover { - image: url(:/qmldesigner/images/checkbox_tr_unchecked_hover.png); -} - -QCheckBox::indicator:unchecked:pressed { - image: url(:/qmldesigner/images/checkbox_tr_unchecked_pressed.png); -} - -QCheckBox::indicator:checked { - image: url(:/qmldesigner/images/checkbox_tr_checked.png); -} - -QCheckBox::indicator:checked:hover { - image: url(:/qmldesigner/images/checkbox_tr_checked_hover.png); -} - -QCheckBox::indicator:checked:pressed { - image: url(:/qmldesigner/images/checkbox_tr_checked_pressed.png); -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentbottom-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentbottom-h-icon.png deleted file mode 100644 index db20dcdd7c5fd2a2cf2843755e735a7aaa6015a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*O%l>?NMQuI#s1MEF?E-rn4A4iu6sag8W(&d<$F z%`0JWE=o--Nlj5G&n(GMaQE~L2yf&Q2P)F?ba4#vIG&s!!MZp>q^Bv+fXnS*0z=P< rITOyc|6iH-VpdV*v5N~-r5G66_*s}TxB9jNbuoCl`njxgN@xNAL{vMM diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentbottom-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentbottom-icon.png deleted file mode 100644 index d4319c39a8b316d80bfa078f20b5eb1b084b00ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*O%l>?NMQuI#s1M0j*{{E}=sfkKict`Q~9`MJ5N zc_j?aMX8A;sVNHOnI#zt?w-B@;f;LaKt)=fE{-7{$CDEzSQjUV^fUz;aJd~!VCXq9 q$NvAn|I6DJ>iG2ZEOzuZVPLqooQ26%$OC9C1B0ilpUXO@geCy8G&x5A diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentcenterh-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentcenterh-h-icon.png deleted file mode 100644 index 004221a6abc41fce79dff90f635781766693827e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Q!3HFy+4N(86k~CayA#8@b22Z19JVBHcNd2L zAh=-f^2tCE&H|6fVg?3oVGw3ym^DWND9B#o>FdgVi$#QwRp{ca=x0D7$r9Iy66gHf z+|;}h2Ir#G#FEq$h4Rdj3<Y;j-+=H&K5?L;HJ&bxAr`0CUbf{vWFXS|uvm4n5}(rD zKN2!W_Ah%7WZo?z9)A1&vW{jC^X}&6CN4`pt*yzEtH0Yk<TV#M=ge?mqphM$T7f4k z1JB#%HTM2TSbyD(YrZ7GWKp{8i(^%#Qk%-I=e<81SQ0!|PoBnVyvo6Go0#Z}pA|2c z+}v-zi*K>l%(c!stSQ_pcE*RD+OpJEX{y*K?z?UqC*Qc?8r1aacI)+c;|pH9`@^*^ aNuT1k|9oWH_0K?eGkCiCxvX<aXaWF!dU)yp diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentcenterh-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentcenterh-icon.png deleted file mode 100644 index fa80a4f8e34e0f94a9fa837fdcd3f393e10de3e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Q!3HFy+4N(86k~CayA#8@b22Z19JVBHcNd2L zAh=-f^2tCE&H|6fVg?3oVGw3ym^DWND9B#o>FdgVi$#P-USZV|mCHaO$r9Iy66gHf z+|;}h2Ir#G#FEq$h4Rdj3<Y;j-+=H&K5?L;CQlc~5R21mC!gkRb`Ws3)hK0>KB!vI zbk~=c(TYKHi>Fc|pGQY_N9=*g_iJ>HFfhD`lPy&ID9OukrkdYXsG~@^Vd49q{72do zu5DSnLNJ{3ghvq5s#oo9Z#UPNF8FG)ICD<jC7n};_)N>oSFH`?o^}7TYSOz;f3IKC hxoXnn;afIAdfzs~{-~5cKY^}c@O1TaS?83{1OTcTV@Lo1 diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentleft-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentleft-h-icon.png deleted file mode 100644 index e40f3ef00754f8b3597e0bbe0f1701986b54ef26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv*!3HG19C1kkQjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O?XxI14-?iy0WWf%>?G85w5HkpK#^mw5WRvfpA6;bYcY@xI|XP)M@GHKN2h zKQ}iuuY|$5C^fMpHASI3vm`^o-P1Q9ypc~FsK~_A#WBR<bTZG&njiBUSvD+-nKv=< z1fyHfUQ3g`-PdP38$VkiHQQNR!{gJl3%#*j$-<Hh3@aCi9hrS*{vx1$22WQ%mvv4F FO#n3+LeT&K diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentleft-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentleft-icon.png deleted file mode 100644 index af91e4173ebcfd2a86c9c356e77fe5a52cb39f52..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv*!3HG19C1kkQjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O?XxI14-?iy0WWf%>?G85w5HkpK#^mw5WRvfpA6;gOZu{@3anP)M@GHKN2h zKQ}iuuY|$5C^fMpHASI3vm`^o-P1Q9ypc~FsL0sU#WBR<^wo(Qc^M3Nnh*VV-<`eO zD{R*Rb_P!)R))pRVV76_zEU#pch%*oi!Ob+7kht?rO^cm<`VgbJAv96JYD@<);T3K F0RZoyL+Ahi diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentmiddle-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentmiddle-h-icon.png deleted file mode 100644 index 138c28517d9624d23a2884331276f9dea2848419..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*O%l>?NMQuI#s1MEKaaUe2BXlxL7Eag8W(&d<$F z%`0JWE=o--Nlj5G&n(GMaQE~L2yf&Q2P)F^ba4#vIG&s!!MZp>q^GHoz30T73Fq4X ouS|R~tElqW#Rak;i3to0D^Ig9J&N372Gqph>FVdQ&MBb@02;77XaE2J diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentmiddle-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentmiddle-icon.png deleted file mode 100644 index c620e95bb2f51fbdda6035cb3fbc226fd5883051..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*O%l>?NMQuI#s1M0oUA0)8Fe02Goeag8W(&d<$F z%`0JWE=o--Nlj5G&n(GMaQE~L2yf&Q2P)F?ba4#vIG&s!!MZp>q^GHoz30Rn`~Uy` qFK=6@<I~f#*wLEH?VyGNBLf3d5epNi)V9w+T@0SCelF{r5}E)s8ag2W diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentright-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentright-h-icon.png deleted file mode 100644 index 739f74c9caf42fc4a015c78cebd560376ac76ed7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 338 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv*!3HG19C1kkQjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O?XxI14-?iy0WWf%>?G85w5HkpK#^mw5WRvfpA6;bXB7u3B6O6p}1)jVN)> z&&^HED`9XhN=+<DO;IS%EXh!C_w)@2Z{!mPDq8F5;uvCaI$1|oJM{qTJMQOy(iIpt z{Q2J=z4y@TlRZC7jExq0Z8ivCxFCC|>1-^&Yw`cd$rh*o|DW;eNt|zzikq>rvhuFP z{~8}Ogg**4@Y+n&IkK|x>G${XDw1mdRtUc{4+}F3Ib8Sm*I5VM1E2Uc&)BWH_ILT2 z4fPy{EAq_@CW-v<@oAaNwvpkcqKo9W(9JLHT|31j3u0HNs#sk#3V7gKGFRvRmgs-M c+L;Utm)1Fbn)hd2JJ8__p00i_>zopr0ORp}b^rhX diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentright-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentright-icon.png deleted file mode 100644 index 068ab27fcf6ba4d6078bdfa3914eef85fc3ed620..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 313 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv*!3HG19C1kkQjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O?XxI14-?iy0WWf%>?G85w5HkpK#^mw5WRvfpA6;gRE(XMS@DC?r|p8d2h$ zpPQSSSHj?2l$uzQnxasiS(2gP?&%v4-pD5oR5ZoY#WBR<^x8?@e9Z<ttZy~G%m^uo zEK@CDw+rG6SW@ISA!pkWrj;9K#){QdK4!VSu2s9OF5v`&Gsgl}S+#V2wi%Zm{X3H^ z<sN4G*Q7U2xK+(q(q%5kVw=ShkDoGJ`x<?BwT4{g=F+<l^lW6y%<9v(wIqIB_2qT> zC&q~QwvJDSrrrPaJvYMc^lv*|36rNPn^H5IWcREyby;n_?hnv?44$rjF6*2UngAxT BZG8X$ diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmenttop-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmenttop-h-icon.png deleted file mode 100644 index 656d018627a07bf2612012393e0b42a536a7fdc5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*O%l>?NMQuI#s1MEF?M+cW1M1qw-)xJHyX=jZ08 z=9Mrw7o{eaq^2m8XO?6rxO@5rgg5eu0~J|#x;Tb-98do9|Gz!6E~7AW@4*Y(8(3!w z-}>62CAevqPoLniG@0Hff!uDo5?d3lG=UfjK*t71a%rD<)VLgI27{-opUXO@geCy9 C#6T+m diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmenttop-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmenttop-icon.png deleted file mode 100644 index d6a6865a7d9a8753dc011442131b14e086742811..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*O%l>?NMQuI#s1M0j*X1=F`Q0)-??Tq8=H^K)}k z^GX<;i&7IyQd1PlGfOfQ+&z5*!W;R-fr>0VT^vI^jwk>5|KFZjmr<Cx_uz%?4XiUi zf4652Rce_zu~G0?noRGLKyEi(iLD7&nm`N%pktLiIJIZ)m=AOa1B0ilpUXO@geCxG Co<9)) diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/apply.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/apply.png deleted file mode 100644 index 845b46cbcd8a3c590dff37576a8ba209ef625127..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 646 zcmV;10(t$3P)<h;3K|Lk000e1NJLTq0012T000vR1^@s6Y?%gs00001b5ch_0Itp) z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igG| z3l<!Cc@5hD000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0005uNkl<Z zNXNC6J&RL86o#L<cT6rJY>Fk~y&wcbiU=vv+1U6K1Pig3EiD8Qtz0`5V{M~gtyVU6 z{s6nhk1iOL4dy0c&HbDYo86TKH{P3=1E&~f&UxoO^PV%J-|t^F#*CsUdK<^FZ;WBn zCbibvVHobT+igDx0zA*#DBx%`LUcNv{U8XoTdkIxrYUKfVy)d6=y*Iv#&LYs_kH3x zCP|Y2lerH3`umo(7HNz@O38daU!P$e+}#MiJLpH=>7W3{7_`>w0iHKh1_|baL_Mnj zW;v*}mbFw{2XByI_8hXO@>IYRpjzwInR-xro?{OL@m&{Kp2ryTr@X5&tqn9{3l=w= zLOD*nX_0{Hb<kfxeLP%W1NQ=?uLWwq*rkt|W?4p>rb`bub|uv-4p^AoR;aIr#?1;g zhWV4UaAlNII7gKK<+J-a@jC+o8V@B~_awNmc%cf#A30F2yt4->XD(KeEr-e_2OGh` z%e<5Zj>}s{y+3ayoO@FP0nvL^TJ@!c1dx3*WS=$CcbGnoC@cEI2`EuYm1>#sodxQL z0ad=mthLByv&nQiMF>%x?Qr$!Wv#{S^?K9caClitSpg72Z1g`>N+CVZ`_%1rUri>H goiGf^^PElFZ-+rmwla1AApigX07*qoM6N<$f<;aYHvj+t diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/behaivour.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/behaivour.png deleted file mode 100644 index 7eea89104e047a7654a14c324020c05869a6b499..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 425 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xa#^NA%Cx&(BWL^R}Y)RhkE)4%c zaKYZ?lYt_f1s;*b3=G^tAk28_ZrvZCAbW|YuPgg4Mrj^d{>2BL=mAa9^mK6y(KtVM zl5N*v1A*50(^@6OIaz*-O*~i@W&X-FYW^XCqP_{)J4__zI%%}1ShZedF@KfTebnzv z-ZyoA7O9HEzh_9gxm393R|LNAcb%jn;wor1oA;85tB7mCxrZfI3p1rGo)_57mt@$$ zXzD5SXioC>+lm}b`keQw-+Zr*(VKogO^Hd+k;5@6d($<c=QW?!Y)x6Ky4I9av7_VN ziXg9+L<_YmrMCZ0Z*qyf&T&{E=+w)CYp=h~Z!`LF?8wg=JHsidKXZRQke2?v?|9M9 zKY~*Y+xER*zT%h!!-0Hu!ym_7mWp&OI*?;l-Suj3dk|M>=-ux#QYF`hY3FRey}a5+ zhHppQdJDP!9@|AvEBy*(oV_}2&Tov+DcF5Cp~vy|wimnjj?H-a^iQ~aBmeZ6t{e7` Qf#JyD>FVdQ&MBb@0F8C4O8@`> diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/blended-image-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/blended-image-icon.png deleted file mode 100644 index 7c0911d63df28d558f10438cf19f1d21d3638df2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 340 zcmV-a0jvIrP)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r0000PbVXQnQ*UN; zcVTj606}DLVr3vnZDD6+Qe|Oed2z{QJOBUy_DMuRRCwC7R7(nkFbtiAcku**xbYnB zJX>++)(Z$Cf+z4Qe&@+6H58^(>r56kt$EMnnI@{L>h;W`ec$6a4#rQ@6m8oEmT??C zF-elhE#N1`aU57ZDG+Q^tm}#gR_xO>b%2LqAVwYncv7GcQozC5_q~It>pJ6SS$0t@ z%VH?#`xw8i3n7e2($DkU0dCut@h1fU@aB0o6w?1>CI;{yQJ^FqQ48t2DJY`WA~=gb zXi?X-Y`YLGtbgvSh0MZge%~x)Ye`c|eeF&yCmXydid$g2!L71+<!;}RFbZ7=M~-|^ mmZksr(Nn8wnkVD;Ex-U*=!rfoJ#hyB0000<MNUMnLSTY0S&k_H diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/bold-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/bold-h-icon.png deleted file mode 100644 index 96f5d4e6ad769a97c62a949a6b9a05304d87b3cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 447 zcmeAS@N?(olHy`uVBq!ia0vp^Vn8gx!3HG%?c?<ZQjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O?XxI14-?iy0WWg+Z8+Vb&Z8pdfpRr>`sfEfx_z4#B^*C4xX9$r9Iy66gHf z+|;}h2Ir#G#FEq$h4Rdj3<Y;j-+=H&K5?K`Ql2i3As)xyPTlCm>?q=TUTvG0*vY03 z`wr9x%nnJ~UY{T=sK_&Io0-sdPleW8E!hno6WzYB|6$yCsn@m3A!)9}Y;g&;#ivuY zo@&*7x5v7??EdaI2c+tIPpEp%I$Qi^CZqfT?hEWu*G{}}f1Ju5p&U3VO?3g&l?Lqv ztDY)uNbj}TU2XQMZkFk%m1=iY&K`5{_cpx1!WUbsxuKO`?*3QSg~y)8S8Vv$c>MQ1 zh4TK=ijChsUDC8=I_|hKqDirU*JSNP&j9T;6Fs&@AFwM}oL|q!Gs(o7``kzKS$qNI z)BM&>{I=?_^XAu!0$sEi?%C+MO6FJp*{ktbxWC-FScY--0ltDI=b6e699^~ltfm2D mT%-DfYf?Mo?>qeO*Z;oNgIm{7=ngO_89ZJ6T-G@yGywn>iL2)T diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/bold-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/bold-icon.png deleted file mode 100644 index ba86fb4fc7d591b0a558ab2f481a0ce00965f383..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 434 zcmeAS@N?(olHy`uVBq!ia0vp^Vn8gx!3HG%?c?<ZQjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O?XxI14-?iy0WWg+Z8+Vb&Z8pdfpRr>`sfEfx`OO|whNVnsk9$r9Iy66gHf z+|;}h2Ir#G#FEq$h4Rdj3<Y;j-+=H&K5?K`yq+$OAs)xyPBrvmaTIWk->%Fpy@RbO zBkO@=k4=Nz!5c2l`40qne0Y3a3=D6id}O)jAk3V|%MxoCdFq#%unF(t!(TGCu!{a! zb^q$!(D`{0H{zo`8h2hvIxB9#EZ1OI5O(y#tt|6m&97EsXSe39V=msS@^j_RZPw!F zKK+(_{_S{}$<`%ZiupGMe)u?T)@lnp)hV04`3v{Em<s*Fk1svUo$>lYOupy8b1~U- zxy*lDiCO+kYU{rA!=24L!_IEaUbkB1f8x5yaZkdE&l%q<jBnj;bT4^hU-mg81AnK_ zT5XOi?=YAd|GCrN$Jl376S=5MwD|3e*GiA?%*YP-l_T|m&xY~)fl|@KDIb~t?yqIu Yx36IPz1wF>fuYCX>FVdQ&MBb@0BBgPY5)KL diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/button.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/button.png deleted file mode 100644 index cc16dbbec310288bd863d2f00067b415911063b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 687 zcmV;g0#N;lP)<h;3K|Lk000e1NJLTq000mG000gM1^@s6CNG?d00004b3#c}2nYxW zd<bNS0000PbVXQnQ*UN;cVTj60C#tHE@^ISb7Ns}WiD@WXPfRk8UO$SK}keGR47wp z`2YVu12VSq*5M9La_@=B3OJr!k$5wwGU;|~R^Z9dWX~x;IRSL_C>)P)YmbDy&|4=j zANYIl(#HR*_fPx3Waq^Hn~p5}zvtxo|7j&rcYR|V!mt|P9BgLPGNJm_`P+y7Z#}u_ z|LOxE%@h7F+}`_t!S-%2UVCu%|K3?m@4TYy+)xYvI*k+P<QrG-pZdS^^s@hJ56%3) zZ1+SI%`m*-@cjR2r7^dGdidc6xP@7U9zM1E@7{B(|F1tX`~UJilm0K--UrmsgJA#& zZ$Gl;pI@wFG2DR248KK}?wt6)>G<6LEB8(Lzj#MK&~{ACvp2Sb@y?U0{zql_ZGjsQ zn;mrQ*wyV={SCr%HnsonUsCgb;<CE`)7LitU$t-M|CFMrlgKVudHl*Qtp1*|vf+Q* ztkVD8^DE&7>^QOVe^jRbPPhSHk+$)>j;{X)(F}3=yse%8J7$;tub-Irzja0lssTsW z{0~fUtwD|jf#ibl`=I!qx25y{gr&9rt9!HmS9WJ&7_fNTr2j?r84rMZq)^fU&=nrt z)0^H^v}OO#t%>_z+>(M}z|1vm|L3oo_Srw)IRPUf0RfY5j8k4tMZ)75OZxuT_U6G2 z=$>2sf6cD>|I3?mp9aLa)C1KrqZj}Z0Afxc7M4>JGYX7%+m)CXcC)-C_f=I}{;R~i z@Y}(O9tRaPC9HvJ#DJI=W(cwi7(uQ8VpbsL0Ae0V1z|}kB@r2@22Q9P$TCKlJ^<V{ V5{@J1B3}Ri002ovPDHLkV1huGTsi;% diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/cancel.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/cancel.png deleted file mode 100644 index 7b696cc87d4b45ac1583599fc274edc290da8908..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 749 zcmV<J0uud+P)<h;3K|Lk000e1NJLTq0012T000vR1^@s6Y?%gs00001b5ch_0Itp) z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igG| z3l=lds4#*6000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0006=Nkl<Z zNXNaDO-mbL6osFe%!~<%q%*+^qOB1V6tzNdVQDv|OL5gje?gIcY>F*NSGC=gf?btD ze}%uHPzj9+g$yK{7N$|r)Wi@R=OdY!E?R?yVy0lca90=3dCz^%J;Kn?P(Y7MQ4~_C z6axbT>#{6=lNJ{jab35kq_%Cdx3`C`>$j$-r@u;#MgzxjdMy@B(`dKbSF6?Ps^t4V zzVCAxl}sk7R4Rz4r04a`WRheg^3Rz9+)-7+;E19~yWOU%(%Y)a%Gek?w#`bp%u%b= znZ-nrmzfMxi3EvAg!TRXP>RJM2+n<7vDswDwi%8_c{4H5QQRj8tY))JB@!I9T70S3 zL#YK2J<sF3KD2F~6^rax7Q@jfZzm@ilx1FJvrP5(Q*X6c)^!Ziq#Ks!c>o9t3k!j5 z+uhx#D6GxQFcOR52LYlWP<LIHi$yAy71~UtQYoB~eBbBLwt1oJ9YTQDr4oi|5*Fih zy^`ZNq3$#miSRs==@0@u9Ute())uw@3>Ps70=jin6j{sVxN+qQHOJxc<|aQ(lWXxf z@8{;w6ooK2LGU|qyRNrS5O|l%G5d$`QK7(gt;WMb0pkp@D$5t=-n)Z?%&ICi$6+a- z=X<k>=Xq35PFTw4F-()|@i_NJMnb!{YdEYM2K|!6r-K8G<Kw?(KP`&~8ynnDr}<DW zhyGJxettgG$y`MFzE7jk;8FwMvMf@m6w+B&^-`hhx|pU(I-UL~?e6aOT%jz>Xqv|8 f=;*dA%b$M%T(f&~eoKz-00000NkvXXu0mjfO!iH# diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/default-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/default-icon.png deleted file mode 100644 index a90779f02a090f925796852ade5478ed33f22cda..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 341 zcmV-b0jmCqP)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r0000PbVXQnQ*UN; zcVTj606}DLVr3vnZDD6+Qe|Oed2z{QJOBUy_en%SRCwB?lsgiHAPk0gXS|EOm1AQ~ z<q2#(lf7O*8%xH<(%zf+LXFD|8$nqXQaI7@e<mUDF3a-eX5O}KzVBP>hhgv-WBa~a zBS3y4AQ30Tx~>Az_r0Mq2m<ba{DJ`A5P>BZ#Ih`w2&jj@&-0AeMNuUDuIr>0d=c<x zft;oZucMT5CywJV4BNI<vjDjcAqj9)Mu@D&aa8q$5LnPO&21qk0=H8|BuN6%s;YGD z)Mvp%Pv4CSc{+rT2(_JQn!>XviXRBgj;MQavm>~j(rAI@dH&yYnh*G8I&l_Rmbo4? n3p)|)W3IPWUDqzx?;*ed!{Rpa=`bfP00000NkvXXu0mjfBNC9Q diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/downArrow.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/downArrow.png deleted file mode 100644 index b92cb987b96dff53705b445144ade2e01770b53e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 855 zcmV-d1E~CoP)<h;3K|Lk000e1NJLTq000mG001Be1^@s68;SVL00009a7bBm000id z000id0mpBsWB>pF1am@3R0s$N2z&@+hyVZp8FWQhbW?9;ba!ELWdL_~cP?peYja~^ zaAhuUa%Y?FJQ@H10@O)FK~zXft(9#^Q&AYlk2;;rIa{0CMAM~_FPWvH&do|AQfZ+n zQxr7|G|@h2&1qRdAle6s8od}vU!szTASzO`Ec;egMwppIL|RFqDdNnxf9D=`Hk}Y$ zA2^qD?>+bT|3BwE=N<>pAd5ng;XuYG2yqh$iN*4VI64zDcx%b9*{?Xj;_x&OxTg@P zvV`zRC6Lnl<-+C-p##+i#E2|cL0=b$%=$3wtoBDp$r`9Kg^<_*tsFp+D#ZGO5)?E> z!}u^BrU$!FdS?d;uIrF>c@vUO`@<*K719)eO*U2sya3!>1{8{6Y>7eT6D`V{<Iq3c z%alG2yg|;DaHN}qkyN9GGQ$NVY$0>j;|=iL?}n_a!Kiu`gQIO4m|ArB`ul^`L0$uO zaE>~tRU^tMhb(nr9+(5(fRGX?Dj&zuriJNIEL{a1z6`x*4tjpPMt1#X>^&2R#A-FR zRw?1d&BI&`G6%c?TMjE=Y>LOpRz2$4^HFwp8$SJd#~gHjdj*3z6h#e*(ANe-TOo%Z ztq0eD*_B{dUH~zzZ_P0uRJUg1=V%|sC&zH1y&T=&JD5UO-%A{C+=o%i2zvV8BKgz? z1QohN6h7yGH-J+KDwg6<V*+{yI+^P9^b|%cL##hMHi*fo3D$q!)r9yeZ>V!u!A17Z z9PkGC<-5UfJ_Om9BGB>qDN|b<_g~yVT!n(If>*lGwhnj$lm-DbCMDf%en_tIM|0<G z8w1zc%!n<QLu-;FqEw32iB7f-cmue)R%SXQmgc9c^kjM7Y`=(^nHiYxonXqW(dUXZ zXArTS{{b%mm$1j~Sr<`9WL6h>XSXv|u0<PVP#J`@0v)aSTld0>05}MDpvck$Seqln z#v%zK%VY>G_JA+Fm+f(az?;~p+c;Pe!2IG%Gz6jqdZg){AfkPjbxW1!$J#ygcmwQi hhGiZuf9(Dz<u9vpVNa|PvRD8B002ovPDHLkV1lF=cGCa= diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/expression.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/expression.png deleted file mode 100644 index 3dc2e44b3a3a8a9553363293f6b858970d0e6bf0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 517 zcmV+g0{Z=lP)<h;3K|Lk000e1NJLTq000gE000gM1^@s6A4o0H00001b5ch_0Itp) z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FZT01FZU(%pXi00007bV*G`2igG} z3?V!5hiPO000D(bL_t(2&wZ1<s_H-#h1bZz&f0)liG?rV52mpZt;83wwGaYU_G0T3 z7_{~;XlG*;un~ieBN!E|Y!$?a2<vvaC*0%?Y#3(m1>gQ)KoUV!uh&TutJR8~PKUpH zAq1SsWWsj4jp=ksMNtrs$36YP;BL2b?@~%+vsp+fsp~ocz!%XpP44%58iwKGjmKkd zw_7%wO$MT#&u2J}gU{#VdB5N9ux%RvAV~V6_If>5Dis_K2LM1iody7yrin(QA%1=j zce`B{3I!C4MWL!H-tRZU;V_cPB<AxuY}>|gI28ZLiN#`wMx!tcgONxC*XtF!uH*T9 z;&!{aAprORfWctEd_Ip{F6W{NAz)b+7K?=dfJ`Ri-GwAHO`~O59F0b<#o25|DJ9qI zHT}$o0N{8$;_-MO6#7g4{eJO!y>L36eB}v}==b|nRTTg{7MIH<TCJ7{43<hICK3sx zQYlocRa`C?D2f8daiFTIZ_vZ7X&N`14QsU;%jGiv_W}L@T5lzalI=V000000NkvXX Hu0mjfXnNQ# diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/extended.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/extended.png deleted file mode 100644 index 82587ae0ecc4d29e2fa6213874d4b32698ccb63f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^Vj#@H1SGw${mubWk|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5Xj(fT|hE&|T6LOpLh=RZ#?r%w~O=mg6o=sO>!f}x6QrE{q zW$8Wf<{!1WXN8uv%{=<%diDQGu|?OkmhS1b?{l6KbfC$(XCiBuS0a1O;jFc-0$j!n zi~^k}EFU+^PKkQ$$$4Nh3xhRlj{vLXtj@sy%Pr1Nb~SvZ&-G%Vwu(;IX%4;<L0&pt zf&4#|xFQy<{u$Tv%g=G|j<t_M_eLy8I(Rwi^MT{}&*mie@-XG49Fdqjlkr4qiyNQD p+O0aAEw7Z>v+sXbfBaqj0K?*wmyWp|GX{By!PC{xWt~$(698>GbOZnZ diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/grid-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/grid-icon.png deleted file mode 100644 index 113e14c00a05aa7e0e13e65ce2b01226dacb6406..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 369 zcmV-%0gnEOP)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r00009a7bBm000XU z000XU0RWnu7ytkPBS}O-R5%f}R67cTKom@Zcku>_ja|UbF4zg)O0cvLynv0h=ncGz z-^^x~hk>x!B;*y3o#@P)H!eAsWqJCooNe1&*Zo>#97kte*L~lIVfaGD^E}X%1dO2j zzW<R*-}fXs%d+6a-gTX*1VLbiLcGX{Lhyo;AI*>y?P8v1V0IX>hZv?L5Ck~vZQF7e z8;Ez51P4yj1Q%f#N)~S+DWE?|G)*HCQ52b>NL;uAFkGQuA7u%-td5hC>@Z>vbrzh@ zUe~q62_ZAoE{==DaV%Nju^D2(3yG?#L?THNGZYCGC%&I7e|wZA<Zb-J?JSBy;)Fpn zL>Bsj!w*jAX_`tFZy_m95_z5r-}1oO>MsYCWtk=I_!_zA<HtWfwm;tiNpHy#4g1N~ P00000NkvXXu0mjfX?T|? diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_gradient.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_gradient.png deleted file mode 100644 index 4360c8496582de42b0524fb2389e8348f70bfde9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|k|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5X>^)r^Ln>}1O-WMV-M~;7=FKfFEp2UW&CbrQuC6XFF5c3@ z;Ag<##VESs;|GI@8H|Tlv<32BxpcrI>k}J?0mC<a=1?u2XJ3IvF?hQAxvX<aXaWH3 CEi428 diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_none.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_none.png deleted file mode 100644 index 8fa7a86dc88ce403cf3ec8e8a6514e71888f841b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 310 zcmV-60m=S}P)<h;3K|Lk000e1NJLTq000mG000mO1^@s6AM^iV0000PbVXQnQ*UN; zcVTj606}DLVr3vnZDD6+Qe|Oed2z{QJOBUy*hxe|RCwB?Q(+5&Fch58ujtnaeG$VD z1hLFLW?3Q#l4OR6{!v{jCg!vz9y~S%_ins*Cu|U+XaUykDew}md5)`t)c2z(b`7}T zWErNElK$I@mwZlBT$UxN3bkc(Hy}yEkge?&`ZJgWj$>RDMgQBjElDsO;wVm0)F}7K z7g>g}EigEQA)|a#6qs7$7xW-t$eyagFCTQ!e4iovng;)j)Ijw-h8*ZR@Hi3eU6&cy z-7tX5$~(tllpm%E+*ueZKP?Mpg{gMehx`J7Ir$Kl#`!J40C`7uje%rg{r~^~07*qo IM6N<$f?Q60?EnA( diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_solid.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_solid.png deleted file mode 100644 index 0cf124e72e86313967eaf5384c5a06b160f0d33e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|k|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5XG(BA$Ln>}1O-WMV-M~;7<;*;BRl2E(!Nd&4!z<bXd9PeL f;F0x-jl+Q9ra5!yAq^#<9tH+aS3j3^P6<r_`f(<6 diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/image-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/image-icon.png deleted file mode 100644 index 4dfcae7d472d50acfc50098e28788edec8adee0d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 292 zcmV+<0o(qGP)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r0000PbVXQnQ*UN; zcVTj606}DLVr3vnZDD6+Qe|Oed2z{QJOBUy#z{m$RCwB~l<f(_AP|OI$Sy7*IFF+V zj^Gl43pk43Jvm8jX{aCZ$Au&JKJnh@J*AY7y>;ZA2_egRYweLz0?IN1<P}j$fy5Xy zC8m@%M2rz0n9P13BFHNO8wnvmWQ_e4Ypo%o>IY)Pm%g$ga7*}Nq@BL9A|S`aIX8&t zD?$E7c<%=hePu&nSI8dmqOYuo(~Gr6?)G8}vFpXx9}z-K9q<o3@xa`0N5<FX9a%)+ qmN@5&jhrKAYicQ_cE;~ZfB^u@$4`MW06mES0000<MNUMnLSTZgpLJjW diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/italic-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/italic-h-icon.png deleted file mode 100644 index 397ccd18ee45b4df9521b641c934b6b345483ed7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 382 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eL!3HGH8OdY;DaPU;cPEB*=VV?2Ic!PZ?k)`f zL2$v|<&%LToCO|{#S9GG!XV7ZFl&wkP>{XE)7O>#7K;cUhsL6cKaxNp$r9Iy66gHf z+|;}h2Ir#G#FEq$h4Rdj3<Y;j-+=H&K5?L;o1QL?Ar`0aPO|4ZWFXSM|613B1?n6t zx>uKdlu&x2V%g^GH|c0#jO?5cftWd7GBI<OXo#%w)>3l3?OP*o=(p<q-^ZKhZ+;Lv z;TD_2;qNy!3b}26vFxZi=b0t_qrp<4VdZD>bMK{9Kb@Ft#u~IT_qwO{;v*X?`0c-l z@2>u<RmHe6SNerz`Damvw!EhF#V$c?9kmxvGrV4P;5$#yZM6&QCnY}k!d;-jEb=s` zSEy1n;c>R!8l#2JtGsiS7cgIGkPTozc0kUfM<|j}<g_`{wETl<2V^rCCF@i875<uA U$jMag0(z3c)78&qol`;+0NVnJasU7T diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/italic-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/italic-icon.png deleted file mode 100644 index 0c3c7a3b201aa1e0ce7c2d3295ee2aa950348a9a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eL!3HGH8OdY;DaPU;cPEB*=VV?2Ic!PZ?k)`f zL2$v|<&%LToCO|{#S9GG!XV7ZFl&wkP>{XE)7O>#7K;eCnoJ+V;cTFgWQl7;iF1B# zZfaf$gL6@8Vo7R>LV0FMhJw4NZ$Nk>pEyv_X-^l&5R21y0}Z*D9C_ySayNxX+~Uyc zXq|fF)(_VCPp8*3Ud_x`jfmh7E7F+Zol|snS4H)Wj>ZjdR5lx*WU?36V~M!Jm~niT z?M`;r526j#D(Ao5nC*0IQLR|)<`tV>9D8TW@Imk<lf%J9%FWy6-C4Qna{JF`WzV+G zPPnMo-4!XdL}1#r8qVyH<n-%PCe*JL_<TR{;-$11OEk{#>}RxCBA{hm?e8~RV9~#o zFZrvbuP{q6WiZZ&dV6Y7GK0JSJITDX#AwdVDHnO_#q`V0HJ{qG*Y7ycTMVAAelF{r G5}E*Jq=?-B diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/item-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/item-icon.png deleted file mode 100644 index 82587ae0ecc4d29e2fa6213874d4b32698ccb63f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^Vj#@H1SGw${mubWk|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5Xj(fT|hE&|T6LOpLh=RZ#?r%w~O=mg6o=sO>!f}x6QrE{q zW$8Wf<{!1WXN8uv%{=<%diDQGu|?OkmhS1b?{l6KbfC$(XCiBuS0a1O;jFc-0$j!n zi~^k}EFU+^PKkQ$$$4Nh3xhRlj{vLXtj@sy%Pr1Nb~SvZ&-G%Vwu(;IX%4;<L0&pt zf&4#|xFQy<{u$Tv%g=G|j<t_M_eLy8I(Rwi^MT{}&*mie@-XG49Fdqjlkr4qiyNQD p+O0aAEw7Z>v+sXbfBaqj0K?*wmyWp|GX{By!PC{xWt~$(698>GbOZnZ diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/layout.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/layout.png deleted file mode 100644 index 113e14c00a05aa7e0e13e65ce2b01226dacb6406..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 369 zcmV-%0gnEOP)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r00009a7bBm000XU z000XU0RWnu7ytkPBS}O-R5%f}R67cTKom@Zcku>_ja|UbF4zg)O0cvLynv0h=ncGz z-^^x~hk>x!B;*y3o#@P)H!eAsWqJCooNe1&*Zo>#97kte*L~lIVfaGD^E}X%1dO2j zzW<R*-}fXs%d+6a-gTX*1VLbiLcGX{Lhyo;AI*>y?P8v1V0IX>hZv?L5Ck~vZQF7e z8;Ez51P4yj1Q%f#N)~S+DWE?|G)*HCQ52b>NL;uAFkGQuA7u%-td5hC>@Z>vbrzh@ zUe~q62_ZAoE{==DaV%Nju^D2(3yG?#L?THNGZYCGC%&I7e|wZA<Zb-J?JSBy;)Fpn zL>Bsj!w*jAX_`tFZy_m95_z5r-}1oO>MsYCWtk=I_!_zA<HtWfwm;tiNpHy#4g1N~ P00000NkvXXu0mjfX?T|? diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/leftArrow.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/leftArrow.png deleted file mode 100644 index 45187cf0474680b59419c26f1bd308c52f316820..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 885 zcmV-*1B(2KP)<h;3K|Lk000e1NJLTq001BW000mO1^@s6cL04^00009a7bBm000id z000id0mpBsWB>pF1am@3R0s$N2z&@+hyVZp8FWQhbW?9;ba!ELWdL_~cP?peYja~^ zaAhuUa%Y?FJQ@H10`f^jK~zXfrPX^#Q&AiT@auCnO<U7V(R6CyE3GBEIStG*2U+=G z4n-p$S!hA(e3U)@@e%Z(EXph*vOgsMFzB@;&4@(kkAkun6%sxCBUB3Arqk0o-+3*z z#teV(;f#Ckz2|$*z4y$C(Bc+Rk~}AzWt_I0>?stWH5g22o!u<Q$8Ij_c7H}>0sd8- zh9iuu#0%nU{UP&Y1ZdmiU~^L#L|3i^f2{z#>9vfbvN=PNB_Pb|J>IapD-m?}Q=#Tg z8dUdehLX-i$iEZ|>f>P$ROA7o9j;(^qI?Hk6Sj6Fyxa?Py$WdPS3&KA6u9@c1HMjt zfU52-P<UAmxouIPZjpgB&mFipdVk8g7LEiLdlDx9Y7{g+R=~kWO6VSL1-|Cy<_L3c zpaynckwflT8h}!_(g0L~&KJa4u3$Gnbft(sLlJ4{OPNP!-lrnhUev+toEiAK_3|QN z%C0M*pnWZ5pN@cxCK+sKltKVq1%_Ygg_Y-jtgDs~MyIFGnz}Hw52npV;LA8;Ak4Fo zhcNW97oNV?!;?36Vc^wm*xnoqA@qG<Ji<A!37|X_M3^J`Y?zw<1xu}hQ!2tlmM;gP zoCBKxkrg7sly)Y7e)tAhmubdGm~Uev@O}I<jE;YSA3sN7VsZ?$ClnwnS_bZ74r~I1 z?D8ax=6v+L7}~~={?|RgmwDDqm}6aKkajo-lItaqRO<_>x_R}qr2=vVVD}x6YFr7U ztdoMeCB&jR6b9e*0$)?6Nx~GL*#!K+)&bTZ5D{iYh6~sYz;{TsZiGpqshQ*kKS*s1 zgy)|I!C;z#(zbM1n6cH&B{^<{;k@WRK-v8a`3|409AWq%2{mHE@Ilg#h7x9fM>eqK z{ad0=Oc;L+-I6Jx+!?HAZu1UUC-bBGI3v!X8wj<kPyjJ|y&=9z3~MTUAei<s;%zSA z8pwgYfgJ|04&<$*e=d}8qlGBb1%&Jv<sNF`Xh4ULV5#5z|6czaV45(~v{^}300000 LNkvXXu0mjfO_Pdd diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/list-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/list-icon.png deleted file mode 100644 index 9c96743f0e4f3fd22a160864382f2dbf05c6de0d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 424 zcmV;Z0ayNsP)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r00009a7bBm000XU z000XU0RWnu7ytkPT1iAfR5%f(k~^w{U=W3Gz`bM#O0ZS169ns^yRr&`UBKGHRwVAg zt(d4ea>6kA)tmbWDDyhs9L5}qqWJpX&zh#`cs%|Y()YbJj^jMfM08#ELzZpZoP>Nq zz=-6I<9wvtZZ|El9*>9QjN7&a<#amju?)!u0uvCE+cb>^xvq=!JH-8dhm!k=FubtH zF`|K6T;Lqc(UVv&H)1`uAT)9q2JETp8XC{@45g$TV+#2O0uyM{b5&KML=Xf4-Wv!p zj~-&*_c6yJW1+CfF%}mW`n(!1vUQ-xUbiq@lw}E76h&(>E2ay5UiR?DD7n|`RfFO< zM*11S{X`gEwr{cisCw;Y3>W-f=$hvwF3)rH&gb){o-#o!=forD<X!N_9E+FBMT3$g zAwncCghnFfeijWcEJCIwZ~qJQvMkeU_u@AMEQzZ$P4_fLT_gw&VHg_i-=<G@KFMKo S#%xLe0000<MNUMnLSTZ5i?|p7 diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/mouse-area-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/mouse-area-icon.png deleted file mode 100644 index 8c23b6c0fce201d1621cf30a0c259021ca4f5812..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 511 zcmV<b0RaAqP)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r0000PbVXQnQ*UN; zcVTj606}DLVr3vnZDD6+Qe|Oed2z{QJOBUzp-DtRRCwB?luOHkP!NW{PmQRgD1!(J zC8#J`w1_|w`m_FomhKGd7YMp>BhdwlF3{b2<G`W3be)BcI`cU5&N=5_Rn@=WjB{PL zTCIMaZ<;1|KA%DP8iDj1;&Qp*VLTqk<MCuN`7z>jI^l+g-EQYNP9~En6bdZMzKKBk z4M7?K2>x_BozLgRViBy55pa&jBOF{U%SxqEk|af=(YFw!5o8_?2l{O`n~`$z`TPq6 zGAUxe-}`4a8jZ^3aw3rkL?G)00*05Q9Q4I7OfZ6Ifi5tVCrb$Ps@LltnQsWH#d8Fi zx~}V@DAsB<j^hHf2t%aPX-tRs>-BmvnXFc;Mx(*=yjP2R1g3zX!C<i2Y!-_}yWRFr zmnz5*Enq}Wu)E!Er_;foTdfwj%jL4)@4F%PP(>^jlVusL(m$YuQmJGZhHcwW5p@L* zmC8xBJn^YDn@!}Skl}C$N-mf4FD-^F@GwJ=q9}+#N1CQ>w_8uZ!yXAUK@iX&oNP85 zi9|fX4}0W^RVtPHDR>d|$oc8i>h*fR9KTlq1^_E;urd8Sacuwq002ovPDHLkV1h8m B<2L{R diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/placeholder.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/placeholder.png deleted file mode 100644 index d2b333fdbd7e7edd8cfb90a7d740625ed8f989f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xa#^NA%Cx&(BWL^R}oCO|{#S9GG zLLkg|>2BR0pdfpRr>`sfEfyX@0l~i;%S(Ym>7Fi*AsXlJPBP>=V8Fxt^pd7x|JKjV zHVSn)2Uc5~PG+CH_Ns=3O5=&Ug^Re`e+g8$s~J~k^JeR=&{`_wdW12d$C2Se^>>j7 zubY~yytZDu<7Uik{5$&Q8K()0m^)6~vv|J5<i}=a8~vr)UO(!e9t2v+;OXk;vd$@? F2>^;=M~(mh diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/rect-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/rect-icon.png deleted file mode 100644 index 4555d886fbc35cf63ca9408cd0aa25a08a16dc20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^Vj#@H1SGw${mubWk|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5X`aNA7Ln?0FnR1$!L6L*CT)288)9Vea-J7MgH;C^4%@g+F z!4|m-r+pd}^3VOeD7*dIr+b%c)?PhpnW(u`poW9-N8p>if}E`lc|DEX69YIZL^N80 zIVwc=mQQ8+S<n^Dk+3H!dk)i%iA<`6T$zvFvd%razAAA->%okhJUb4WU#=^QwA56s jdb-EZ?dh+-ED{Xcx@D98J(G(9I*q~8)z4*}Q$iB}?8jRa diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/reset-button.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/reset-button.png deleted file mode 100644 index bf53422b9e8db442bfc50c249ca1b0e5fd874871..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 741 zcmV<B0vi2^P)<h;3K|Lk000e1NJLTq000mG000gM1^@s6CNG?d00007bV*G`2iXh` z4J8CSjQZFB000SaNLh0L03N~s03N~tZqRi;00004XF*Lt006O%3;baP0007XNkl<Z zc-m!>OK1~O6o&tqNtiTgGU;Q|NR1UzR|U~paN$C_(H5=fPWNs^LANcXv@5&Njo{Xe zAXq3=1d&oS7{r35(jv4H4c2MXN7`g2P3Aol?+xk1*aK&C@BP1X{(BB12m)kT#!-yM zPlwuiPEGN_;H6-Dw4GrXwp=I`OkMk0%x1?Q@BH>2N25_N{{p7^E)2DI$DiG~{~#&+ z*=5yV5==*fUyQ-*>crgKY<54lJvz3sICBgz(c9O5e)#J9YnQKx)z$AXl?n{YK-IRu z+D@$i7wf>1aadgZuyA{PWoe!Q*m~P79f`!Np^;mnwf+-UMT2cwO=23(-T?+8oo%s1 z_j95V=vfUAhzi$lJbZM9U0DaCC@?ewhGT(o8)6S4<uE*QGZ~4;?|OhpmpBsRd6voV z!_rN-RR=!DC4gqJPR?nDRf`D-kwJRqt5JOZUf*^ehGD`YmEqW^k|YzT2~F39tZQId z1_90odv6bXYm4Z0;M$gC^Zq8^Y+YP53`klDIvVY8q6o86kv%}Upu9WK^{Q<fo^O{_ z&6W>|xC{qOlNB|{L$By*51{7rZ{E(l-teF72C<I3R>3zpj|07Y>=Ris%7t`lLy<OL zcmTRxh1}M?&!wGWT2ruGEI=hz{tqtL3Q3HVx7XGti6-X(XgrlN^UJB!q^#?kiHqmJ z2SbgjEdfOO&tlOo<vz~NJ(<q_czJYJ+e8X?94EkWTwuT->KRNXr^7<Dr}IRtjb;4U z-Pux9Mag~2WX8T&YKFYmsB^j&-YS!|q(4QItEaDz4~03n+^Ru*0d_s<I9#Hs(pCNo Xbw4;3r8NWD00000NkvXXu0mjfMIlcL diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/rightArrow.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/rightArrow.png deleted file mode 100644 index 118436bbcc96aba355c3f4f581e41d01a3fb54af..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 871 zcmV-t1DO1YP)<h;3K|Lk000e1NJLTq001BW000mO1^@s6cL04^00009a7bBm000id z000id0mpBsWB>pF1am@3R0s$N2z&@+hyVZp8FWQhbW?9;ba!ELWdL_~cP?peYja~^ zaAhuUa%Y?FJQ@H10^~_VK~zXfrPXUlQ(+hf@S{#=(`IYBP4cp|@K%zEI;V-1<RB$c zrWlGPXrX;boogyV!LTGN3O{uBgAfs-9||nZNrBOaD5K927MdW<E_lh5xA*zav*4^T z!v}txao%(JKkqr`ogd>RtfMsLemH7r*>!M;LXPd?;xBCd16})_57%|Mzjven|0=;O zFru#wh4fY(6m=&+#f?-bu*X4i<5tjB$U(`^CBDkz2u+EcksT+LQ1>7cEJOLw^7sHW z4;DaeUnW%E+zqCSaS&A<45}kC@Y<+2z~_YKj>Xr9f@L@hYz`x|KFtNY!wg^NXW;J3 zb5M0V4a%-3fvHmu+VUU}Qu*~cX}R~r91mfn@?H{jJkNr*F#}kKbD;lyH;A>e`kRqU zPa2`@8V|skF7N<ch9w--B{J|DAh}V+pP`D`MswHj&PR>RI+6{Rp&V#>lm{<941!oo z%L|NH@0+2}u7`acT8QMcK*X7L&%F3!PqT)RtK)U>?#mcVOgrH1l*^mXWAJ*?0jsMk zAlCN<CnGgI`CvQ~4zc`wAi?nhcmy!CM=^5il?^sp)6Pjo^4cRIv3@fs(gg4bkl3JN z<npsq@N;Pn=H_Q%_Qw>=eES4b&X2IdyC>4>9<VYZ&Vasp6C*)t0Xzc49t&Z_+>^W} zg>O^bZ*|F)1V)Oxc0$k4S&-J9;VwpuRzCG)?GZ$l$r<tb4rt9XMhsRhm^x$Oklp3r z`DkeGs{v`}{o{8T$!-k?F~Hu_Dn_;x27uQ9;()dykdbVjoaERdK<vcYTg8YNU}R!| z5qHOu&NZchj0mB89pJovhT=fjVSy1bNJfjA5or)h?@>nb+H@cW%(SQ((V6*@%qi0R zLE5>;J0MLK!Pjx3F69dd7hNTXl#@zGZ&JgqhA@cXV?<pX0J3cYc)PLB0MbB81OId3 x6#HFNMFF6oeO%CX7hgB@`3N@p{r~Uze*k!nGNlS?lPUlJ002ovPDHLkV1oDji#PxP diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/standard.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/standard.png deleted file mode 100644 index 7c0911d63df28d558f10438cf19f1d21d3638df2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 340 zcmV-a0jvIrP)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r0000PbVXQnQ*UN; zcVTj606}DLVr3vnZDD6+Qe|Oed2z{QJOBUy_DMuRRCwC7R7(nkFbtiAcku**xbYnB zJX>++)(Z$Cf+z4Qe&@+6H58^(>r56kt$EMnnI@{L>h;W`ec$6a4#rQ@6m8oEmT??C zF-elhE#N1`aU57ZDG+Q^tm}#gR_xO>b%2LqAVwYncv7GcQozC5_q~It>pJ6SS$0t@ z%VH?#`xw8i3n7e2($DkU0dCut@h1fU@aB0o6w?1>CI;{yQJ^FqQ48t2DJY`WA~=gb zXi?X-Y`YLGtbgvSh0MZge%~x)Ye`c|eeF&yCmXydid$g2!L71+<!;}RFbZ7=M~-|^ mmZksr(Nn8wnkVD;Ex-U*=!rfoJ#hyB0000<MNUMnLSTY0S&k_H diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/strikeout-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/strikeout-h-icon.png deleted file mode 100644 index 9e40e7dfe4b8a8ec81036528f9e7dd6a32150f09..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 514 zcmV+d0{#7oP)<h;3K|Lk000e1NJLTq000sI000;W1^@s6_f@Si00001b5ch_0Itp) z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igP_ z4haVkvhV=_000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}00049Nkl<Z zILqzRv1?R85C-tyX&Mv7LM#k<h1F>%Xk}@q*a&MAf;LH^SUs>Ze}IXym0)M1HnO0N zNE$`KKx~33C5>z$s2~<z<H6Z%aXen$<*f5H!_G1vGv7DE0Vbi>OoW(caSPXQ7RNEb zSL|RD8>y~#$LnSqB&YBW^SFms_=Y*0FS$o;P0TbJdVoHzr@BgG`QLaOV*Y^lxY(TJ zP~&~2#Mf;)q`Dent?jQ#G*{w@4qZP^6g$McjdMktrBqjc{>!xx^CF&?=MOx=3v8#l z8cl2e4LrojhS;C*22WF6{cI%)F^{I$y#Zz$CiHsysSGjC<0@8gp`>r8x_Z3lX!{^t z$6b6$b=7aRKg2u=F&~@2b-%>ZU3+A#^}X<S%+*e!)e!UH4x*bSzU;a+xK!?H9b5Q? zBRGR4+$pQD+C|jI<#Lp3Sin&X@g1MBjA!NU4lo7&0jW`1Jc9-otpET307*qoM6N<$ Eg4{sWRR910 diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/strikeout-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/strikeout-icon.png deleted file mode 100644 index 94278fa6b451410c319bd3fae85bcd9c9599de79..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 494 zcmV<K0TKR*P)<h;3K|Lk000e1NJLTq000sI000;W1^@s6_f@Si00001b5ch_0Itp) z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igP_ z3>OZ*tD_VE000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0003=Nkl<Z zILqynF-u%Q6otRH`<kd>Lt<lytq|;FtCZ=2APA`}Oc&T9g?)a2SotHim8}!7NMRtP z2uT&e##SK&3kyA*lV$>&#eHw1trv#N%v`=XGxyGgduy|5azV}<FaS1z=Rgm*1Wth; zz-Qn?-KkEdQspek`6=f@&O15Fa%wp}IWOfL%88sb%9ArJfv>0R*K&?#0sShV2MsYB zH-S16^ZDYRG@N(T`towV6-6UC^S4f+oUOl)Dd$YiuADVF)oozg1(LDxTh2#0J8~AM z)=_H~{<TYBZhWEcRMo61pUQbF=j)it!JWQ>oV@}%ZVHN=hb^GTCGM)JjsW^CqOOZS zZv(xT(`^8~DSp&;waED-XI;*soUWV&Iej_%awO-AoJUjJh@2JR74QOB1)c#5fPgdL kJ8%FD>rSQnF8qJ?2PNSVDQxt3P5=M^07*qoM6N<$f^s*<kpKVy diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/submenu.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/submenu.png deleted file mode 100644 index a91a6a98a123f7f38a0dd618c5f256f21c092a03..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 389 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xa#^NA%Cx&(BWL^R}Y)RhkE)4%c zaKYZ?lYt_f1s;*b3=G^tAk28_ZrvZCAbW|YuPgg4MrmFK^U|EC*+5fRJzX3_G|tbR z<lEKkAkex$i$|#Ny_d=B7{}>)Hr>8QCby_OahZ2;?=v1pk=AqPei#d<eVTUk_pVjD z=1C;~aO=`fUCSMnEzH8W?)9e{yGk3mJ9*}jzf<g9eXTOxeK+s(F9V)Ae(FC3_r&NO z+x9lz{q^s8Hs@0}F243lnI+-2SycAs8y^cS7y_oLhKA-Yc>K{r=J@3NS3B;%XY5$i zVZb9EAkpR$c;t?GW9)TBC5@#XlUUAw77(;Kuk0x_C8&cV_PXxDUF+_D->7rR<mmTW zAhGG5`0U@y;`iQvpOzPuE#tmPXR>b*kSLV-&yvf;5FpaZ*~D<XFyr>LWtkT9&(ELy cS$;1=u2{nE^89K~U>GrYy85}Sb4q9e05l(*!2kdN diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/text-edit-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/text-edit-icon.png deleted file mode 100644 index 6a064ab07c1fb301161797f48b611106f371fc9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmV-$0gwKPP)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r0000PbVXQnQ*UN; zcVTj606}DLVr3vnZDD6+Qe|Oed2z{QJOBUz5=lfsRCwB?lsyteKoEs@%j~*_Od?fs zmk@~sBm^W95`mIPgaVG>GS1>}+m59QI~pB~!1Sm4_0!L?EFbrR^nEXi;^q9hu1VK* zK)H;7^bs)(gX1_H#}Pta-+2Fm=lS`hK`+2fMNuY1+qUqC<M_h&;e_-N0gZT`x2?jm ztV7U(h@xow8l%yKfRcRQ-&SE51`5$M4IqLb_}48vAbmoFVThcFEXz9x=ouP84q_$H zh@e`4oa`!8RXxzcbzO`LSXv}Wa>|{8Agr~pZTplpXGNAO(llLFp=lb1wa96jCbD^5 z*NdXqF?g0`hgwLIw4LjMz<8Nv=6Sw@z!;hJkI<EKcWYHub!Yv41Q-Bn0{hY{$1xKC O0000<MNUMnLSTXi!Jl3L diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/text-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/text-icon.png deleted file mode 100644 index 9ce62037ba3c7700e9f06dfdb48fcd61eda8f7f8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 582 zcmV-M0=fN(P)<h;3K|Lk000e1NJLTq000&M000&U0ssI2OV;~r0000PbVXQnQ*UN; zcVTj606}DLVr3vnZDD6+Qe|Oed2z{QJOBUz=t)FDRCwB~lufItQ546o$MOD_w<HMz zDHA5XfHLp}d_n^sz`#HmiHVdlz(7$%DX)3w{@itXIOo)L<L>fUd#}Cz>%abM@2$z_ z^S|C3AD7D|7K^<c-|2Kd&gU~IFGCQ1gScL=Z$X?+C;ncBAp8dLw2*GMdpI1(q}6K8 zX0zApwb^Vcgdz}sAIs&EV*P%<+wI=%c1XBbEX4K6;%OmJFdB_crxTm}tyXJ19z*A| zkmK<v5Wo)xgUx1xVX;_3p^(Gj5QzPLFNOS^60QgYW4&HOk5s{6kWGz7V?LjYYrEaD zg2A`f>oIk?T;d}9#zN#IXEK?TJSLN=UayZvqi8hBbo*y86>mHqXR}1zScn#nW3^gI z%yc?cS!gsG;KJdsUav=s$z&p~FIr$Ab-&-oP-_+!5U3ak1hDy*N~LDAnNFuA>JCw> z)rP}iDwXp2d{(QqP$;0Q3ZdGHqEIFsQ4`;_;QY|`NF*ZN5edchXwwTsft0Gnodv7- zU`Vx8^w>G<*=*Ksw^^Z5#DeUdg?h9ynM}D{u2!pdyFHOepdW1(7v~CyN~K~j7(5;i zJ5fYjU+#!br^{xu>WP#`L|nOC?%R1)uhqX^v*$PU-OK(To*aI~V)32l_qPB80NSV? U4A;*g`~Uy|07*qoM6N<$f~({b82|tP diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/underline-h-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/underline-h-icon.png deleted file mode 100644 index 02ea8c81a8ea6d1b17a74c49f9749d12c9e47f36..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 367 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*O%l>?NMQuI#s1MEE!rw(fAv0t!i%xJHyX=jZ08 z=9Mrw7o{eaq^2m8XO?6rxO@5rgg5eu0~MX}ba4#vIR193BHtkck+%J39gG^Crg<+o zq1U)VRq-K%cNqiEK6MAjfHw*gbSg?%Ie7T482IZ(-!frT`!?G?GyeD9KaXr*e9d?L z%AA{XH6-H6sny$7t_!?%V-@eS+aeBs-gZ<u@c&?Rke0T5_c-7{v`yic2@LB64*14c zG6+AAW70Sp%&x$yr`WK!Vp*^3mM8WsMh_m?`ew`LG>R6mnH}J)U{X$CTho|5akZ;} zgF<lvr%&U?J(V6hyOqL^ztfSq|MR`_`=ggDYZ*!(8(*{N&`byViow&>&t;ucLK6TP CyMd_y diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/underline-icon.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/underline-icon.png deleted file mode 100644 index 5d86d7c0e95bca2ae75b485a6102b7cc561e22a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 359 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*O%l>?NMQuI#s1M7VWzZM39j0fi(>Tq8=H^K)}k z^GX<;i&7IyQd1PlGfOfQ+&z5*!W;R-fr<`!x;Tb-9Dh62k?W9wh)cb<<3jK2RTJeL z1qJuawboat;1n!Wp6B4wf8mh9V>NA0&z=>rC1%Vg5Bye{|Nm^&-{_mK88v=3xz2M< zt+ib5u##6Sddkeme{a=aG1@+0X9$RVVCT<ja_+PP@6wr9H5+z+E@Ut;-0aTv;Kd#; z1}$Ujy?-qiJj;`t>&P2r<QyO#aC!+J!`8A1wktGO2(CEvljjQKm1m31n71-)Wi4e5 uZO(GI>+sfL?XIl_Nzdzh7K!^m|H|^%r$%6+xQ;i_Hw>PxelF{r5}E)2_I=|3 diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/upArrow.png b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/upArrow.png deleted file mode 100644 index e689de743eb571040e0bc07bbfe83071796e78a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 849 zcmV-X1FrmuP)<h;3K|Lk000e1NJLTq000mG001Be1^@s68;SVL00009a7bBm000id z000id0mpBsWB>pF1am@3R0s$N2z&@+hyVZp8FWQhbW?9;ba!ELWdL_~cP?peYja~^ zaAhuUa%Y?FJQ@H10?tW9K~zXft(9#^Q&AYlk2;;rIa||hlDegVZz-9ma~jyILWV<` zLsBUvEiEXWb0uYxRv#=-3XC!cDWn&Y3bdjZKUhSWW?&{%ND6(b2y!~Lf9Ia*?CJ#J z`oOvOT<&vz&;NPubMA2iHL}2zxo%{_PKb|0Ol-DE;_gYvk6Vk}9IH6MLJKew_+}BP z^ThBo5XkBCQpS5jsH3(>iufuuG8@BTYKg`6`cOobuYuYmhRg+M<p4^980$-A*x#NA zb7vYVA8y5=JE<sYOGMt~7-XCaMNok^<XIwKHckbC09-A@N~AD9PJ;EB9#xN0(cE(o z-+m3_<O37(uf!pzIT9IXv{2=GfyB;d&SruEA^UugcP$b%-AOq1T!+@)3QSIovs`~q z{6uZX9^^Dp1!uKLF#AJcn6Cp<AQ%u;E{FALDjj;<{7{SOnJHeSZT3Gnb+-uV^;&GM zQ6Z44!)y;S1%d$^E0i#IrJ-Z62{V6ZTz0K}+K$t=%b~CKhlcipcbMZ#u&W?|l=ipo zco5EampY@r8F_-??|m%7$FW{?^|!ORZE_r04Kau)@r5LAR)JsuM~*0yqqr>rmtI(K z|9vY8uf}0;>@ABrF!CBZ>NIHSY{22m*{lZIf>rQR{8t0P0L@+>7%xWA5zTtua3LH+ zV~!g1e|?3NY9*4Z{GqqdK@|k%i1~dW7@#tWptGpxZqs0Ay$0Lrf-yAO&lJ4-+{2>J zDcE#Gj@9WNd<B95Twkk9o=B$orC0-4o}Wesn1a49FCDqh=C9251d+P<9|!_)k^FW! zR3ua?n2HlOiqUw_0_*icrYO;@fZ8ag9q8`N-?<l71i(SK14WT7LU6tq(FbIRKdQin zGCzdSXT@$0h}IHbbe@700kE=Dlj#T~Tj-IN=>Z9yd#zg>dCu46p(hwHM_<l;>0@^} btEtaF<Gx*e*xMfi00000NkvXXu0mjfN^f|e diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/layoutWidget.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/layoutWidget.css deleted file mode 100644 index 85f3d8efda1..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/layoutWidget.css +++ /dev/null @@ -1,35 +0,0 @@ -QPushButton::checked - { - border-radius: 4px; - border: 4px solid #4f4f41; - border-image: none; - background-color: #9a9b9e; - } - - QPushButton:pressed - { - border: 1px solid #5f5f51; - background-color: #dadbde; - background: none; - color: white; - } - - QPushButton:flat { - border: 1px solid #5f5f51; - background-color: #eadbde; - color: white; - } - - QPushButton:default { - border-color: 1px solid black; - background-color: #eadbde; - color: white; - } - - -QFrame{ - border: 2px solid black; - border-radius: 4px; - padding: 2px; - background: #aaabae; - } \ No newline at end of file diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/propertyEditor.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/propertyEditor.css deleted file mode 100644 index e621398dd2c..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/propertyEditor.css +++ /dev/null @@ -1,456 +0,0 @@ -QFrame, QSpinBox { - background-color: #4f4f4f; - font-size: 11px; -} - -QFrame -{ - border-radius: 0px; -} - -WidgetFrame { - border: 0px; - background-color: #4f4f4f; -} - - QComboBox QAbstractItemView { - border: 2px solid darkgray; - background-color: White; - } - -QLabel { - border: none; - border-image: none; - padding: 0; - background: none; - color: #dedede; - font: bold; - font-size: 11px; -} - -QScrollArea { - border: 0px; - border-radius: 0px; - background-color: #4f4f4f; -} - -QGroupBox -{ - background-color: #4f4f4f; - border: 1px solid #4F4F4F; - color: white; - font: bold ; -} - -QLineEdit -{ - color: white; - font-size: 11px; - border: 2px solid #0F0F0F; - border-radius: 6px; - border-width: 1; - max-height: 20px; - min-height: 20px; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #2c2c2c, stop: 1 #333333); -} - -QPlainTextEdit -{ - border: 2px solid #0F0F0F; - font-size: 11px; - border-radius: 6px; - color: white; - padding: 8 8px; - background-color: white; - selection-background-color: lightgray; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #2c2c2c, stop: 1 #333333); -} - -QTextEdit -{ - border: 1px solid #0F0F0F; - font-size: 11px; - border-radius: 6px; - color: white; - padding: 8 8px; - selection-background-color: lightgray; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #2c2c2c, stop: 1 #333333); -} - - - - QSpinBox - { - font-size: 11px; - color: white; - padding-right: 2px; - padding-top: 2px; - padding-bottom: 2px; - padding-left: 12px; - border: 2px solid #0F0F0F; - border-radius: 6px; - border-width: 1; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #2c2c2c, stop: 1 #333333); - - - max-height: 16px; - min-height: 16px; - } - - QDoubleSpinBox - { - font-size: 11px; - color: white; - padding-right: 2px; - padding-top: 2px; - padding-bottom: 2px; - padding-left: 12px; - border: 2px solid #0F0F0F; - border-radius: 6px; - border-width: 1; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #2c2c2c, stop: 1 #333333); - max-height: 16px; - min-height: 16px; - } - - QSpinBox::down-button { - subcontrol-origin: border; - subcontrol-position: bottom right; - border-image: url(:/qmldesigner/images/spindown.png) 1; - - width: 16px; - border-width: 1px; - border-top-width: 0; - } - -QSpinBox::down-button:hover { - border-image: url(:/qmldesigner/images/spindown_hover.png) 1; -} - -QSpinBox::down-button:pressed { - border-image: url(:/qmldesigner/images/spindown_pressed.png) 1; -} - - - QSpinBox::up-button { - subcontrol-origin: border; - subcontrol-position: top right; /* position at bottom right corner */ - border-image: url(:/qmldesigner/images/spinup.png) 1; - - width: 16px; - border-width: 1px; - } - -QSpinBox::up-button:hover { - border-image: url(:/qmldesigner/images/spinup_hover.png) 1; -} - -QSpinBox::up-button:pressed { - border-image: url(:/qmldesigner/images/spinup_pressed.png) 1; -} - - - QDoubleSpinBox::down-button { - subcontrol-origin: border; - subcontrol-position: bottom right; - border-image: url(:/qmldesigner/images/spindown.png) 1; - - width: 16px; - border-width: 1px; - } - -QDoubleSpinBox::down-button:hover { - border-image: url(:/qmldesigner/images/spindown_hover.png) 1; -} - -QDoubleSpinBox::down-button:pressed { - border-image: url(:/qmldesigner/images/spindown_pressed.png) 1; -} - -QDoubleSpinBox::up-button { - subcontrol-origin: border; - subcontrol-position: top right; - border-image: url(:/qmldesigner/images/spinup.png) 1; - - width: 16px; - border-width: 1px; -} - -QDoubleSpinBox::up-button:hover { - border-image: url(:/qmldesigner/images/spinup_hover.png) 1; -} - -QDoubleSpinBox::up-button:pressed { - border-image: url(:/qmldesigner/images/spinup_pressed.png) 1; -} - -QToolButton -{ - background: none; - border: none; - background-color: none; - color: #dedede; -} - -QToolButton::pressed -{ - background: none; - border: none; - background-color: none; -} - -QToolButton::checked -{ - background: none; - border: none; -} - -QPushButton { - padding: 0px; - font-size: 11px; - color: #dedede; -} - -QPushButton, QComboBox[editable="false"], -QComboBox[editable="true"] { - border-image: url(:/qmldesigner/images/combobox-normal.png) 4; - border-width: 3; - font-size: 11px; -} - -QPushButton:hover, QComboBox[editable="false"]:hover, -QComboBox[editable="true"]:hover, QMenuBar::item:hover { - border-image: url(:/qmldesigner/images/combobox-normal.png) 4; - border-width: 3; -} - -QPushButton:pressed, QComboBox[editable="false"]:on, -QComboBox[editable="true"]:on, QMenuBar::item:on { - border-image: url(:/qmldesigner/images/combobox-pressed.png) 4; - border-width: 3; -} - -QComboBox -{ - font-size: 11px; - color: white; - min-width: 60px; -} - -QComboBox[editable="false"] { - padding-left: 16px; - padding-right: 0px; - spacing: 2px; -} - -QFontComboBox { - padding-left: 16px; -} - -QComboBox[editable="false"]::drop-down { - subcontrol-origin: padding; - subcontrol-position: top right; - width: 12px; - border-left-style: solid; - border-left-color: black; - border-left-width: 0px; -} - -QComboBox[editable="false"]::down-arrow { - subcontrol-origin: content; - subcontrol-position: center; - position: relative; - right: 3px; -} - -QComboBox[editable="false"]::down-arrow:on { - position: relative; - top: 1px; -} - -QComboBox[editable="true"] { - padding-right: 10px; -} - -QComboBox[editable="true"]::drop-down { - subcontrol-origin: border; - subcontrol-position: top right; - width: 13px; - position: absolute; - top: 2px; - bottom: 2px; - right: 2px; -} - -QComboBox[editable="true"]::drop-down, -QComboBox[editable="true"]::drop-down:hover, -QComboBox[editable="true"]::drop-down:on { - border-width: 0px; - border-left-width: 3px; -} - -QComboBox[editable="true"]::down-arrow:on { - position: relative; - top: 1px; - left: 1px; -} - -QComboBox::disabled { - color: gray; -} - - QRadioButton { - spacing: 5px; -} - -QRadioButton::indicator { - width: 13px; - height: 13px; -} - -QRadioButton::indicator::unchecked { - image: url(:/qmldesigner/images/radiobutton_unchecked.png); -} - -QRadioButton::indicator:unchecked:hover { - image: url(:/qmldesigner/images/radiobutton_unchecked_hover.png); -} - -QRadioButton::indicator:unchecked:pressed { - image: url(:/qmldesigner/images/radiobutton_unchecked_pressed.png); -} - -QRadioButton::indicator::checked { - image: url(:/qmldesigner/images/radiobutton_checked.png); -} - -QRadioButton::indicator:checked:hover { - image: url(:/qmldesigner/images/radiobutton_checked_hover.png); -} - -QRadioButton::indicator:checked:pressed { - image: url(:/qmldesigner/images/radiobutton_checked_pressed.png); -} - -QSpinBox::down-arrow, QSpinBox::menu-indicator, QDoubleSpinBox::down-arrow, QDoubleSpinBox::menu-indicator , QComboBox::menu-indicator, QComboBox::down-arrow { - image: url(:/qmldesigner/images/down_arrow.png); - width: 7px; - height: 7px; -} - -QSpinBox::down-arrow:disabled, QSpinBox::down-arrow:off, QDoubleSpinBox::down-arrow:disabled, QDoubleSpinBox::down-arrow:off { - image: url(:/qmldesigner/images/down_arrow_disabled.png); -} - -QSpinBox::up-arrow, QDoubleSpinBox::up-arrow { - image: url(:/qmldesigner/images/up_arrow.png); - width: 7px; - height: 7px; -} - -QSpinBox::up-arrow:disabled, QSpinBox::up-arrow:off, QDoubleSpinBox::up-arrow:disabled, QDoubleSpinBox::up-arrow:off { - image: url(:/qmldesigner/images/up_arrow_disabled.png); -} - -QCheckBox { - spacing: 4px; - font-size: 11px; -} - -QCheckBox::indicator { - width: 20px; - height: 20px; -} - -QCheckBox::indicator:unchecked { - image: url(:/qmldesigner/images/checkbox_unchecked.png); -} - -QCheckBox::indicator:unchecked:hover { - image: url(:/qmldesigner/images/checkbox_unchecked_hover.png); -} - -QCheckBox::indicator:unchecked:pressed { - image: url(:/qmldesigner/images/checkbox_unchecked_pressed.png); -} - -QCheckBox::indicator:checked { - image: url(:/qmldesigner/images/checkbox_checked.png); -} - -QCheckBox::indicator:checked:hover { - image: url(:/qmldesigner/images/checkbox_checked_hover.png); -} - -QCheckBox::indicator:checked:pressed { - image: url(:/qmldesigner/images/checkbox_checked_pressed.png); -} - -QMenu { - background-color: #494949; - border: 1px solid black; - margin: 0px; - color: #dadada; - } - - QMenu::item { - background-color: transparent; - padding: 2px 25px 2px 20px; - } - - QMenu::item:selected { - background-color: #d2d2d2; - padding: 2px; - color: #404040; - border-radius: 4px; - padding: 2px 25px 2px 20px; - } - - QMenu::item:disabled { - color: #aaaaaa; - } -QMenu::separator { - height: 1px; - background: #404040; - margin-left: 5px; - margin-right: 5px; - } - - QComboBox QAbstractItemView { - show-decoration-selected: 1; - background-color: #494949; - border: 1px solid black; - margin: 0px; - color: #cacaca; - selection-background-color: #d2d2d2; - selection-color: #404040; - } - - QSlider::groove:horizontal { - height: 2px; - border-image: url(:/qmldesigner/images/slider_line.png) 0; - margin: 5px 0; - } - - QSlider::handle:horizontal { - background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #b4b4b4, stop:1 #8f8f8f); - width: 16px; - height: 16px; - border: 1px solid #5c5c5c; - width: 18px; - margin: -4px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ - border-radius: 3px; - } - -QToolTip { - color: #333333; - background-color: #eeeeee; - border-color: #333333; - border-width: 1px; -} - diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/specialCheckBox.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/specialCheckBox.css deleted file mode 100644 index da6ca9ec022..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/specialCheckBox.css +++ /dev/null @@ -1,26 +0,0 @@ -QCheckBox { - spacing: 2px; - border-width: 2px; - border-radius: 2px; - color: white; - } - - QToolButton { - color: white; - font: bold; - background: #707070; - } - - QCheckBox::indicator { - width: 13px; - height: 13px; - } - QLabel { - border : 2px solid gray; - border-radius: 10px; - padding: 0 8px; - background: yellow; - selection-background-color: darkgray; - } - - diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonleft.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonleft.css deleted file mode 100644 index 086b0d71d0d..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonleft.css +++ /dev/null @@ -1,11 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/button-normal-left.png); - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/button-pressed-left.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/button-pressed-left.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonmiddle.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonmiddle.css deleted file mode 100644 index 0c6608ad258..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonmiddle.css +++ /dev/null @@ -1,12 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/button-normal-middle.png); - padding: 6px; - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/button-pressed-middle.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/button-pressed-middle.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonright.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonright.css deleted file mode 100644 index a7f748579cc..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonright.css +++ /dev/null @@ -1,12 +0,0 @@ -QPushButton { - border-image: url(:/qmldesigner/images/button-normal-right.png); - padding: 6px; - } - - QPushButton:pressed { - border-image: url(:/qmldesigner/images/button-pressed-right.png); - } - - QPushButton:checked { - border-image: url(:/qmldesigner/images/button-pressed-right.png); - } diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/switch.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/switch.css deleted file mode 100644 index 80bd9f04e56..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/switch.css +++ /dev/null @@ -1,50 +0,0 @@ -QPushButton { - border-image: none; - min-width: 40px; - min-height: 20px; - margin: 0px 0 0px 0; - border: 1px solid #0F0F0F; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #3c3c3c, stop: 1 #444444); - - color: #EEEEEE; - font: bold; - font-size: 11px; -} - -QPushButton:hover { - /*border: none; no border for a flat push button */ - - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #3c3c3c, stop: 1 #666666); -} - -QPushButton::checked -{ - border: none; /* no border for a flat push button */ - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #EFEFEF, stop: 1 #EEEEEE); - color: #3c3c3c; -} - -QPushButton::checked :hover -{ - border: none; /* no border for a flat push button */ - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #FFFFFF, stop: 1 #FEFEFE); -} - - -QPushButton:pressed { - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #3f3f3f, stop: 1 #3f3f3f); -} - -QPushButton:flat { - border: none; /* no border for a flat push button */ -} - -QPushButton:default { - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #2c2c2c, stop: 1 #333333); -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/typeLabel.css b/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/typeLabel.css deleted file mode 100644 index b332ad7b645..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/typeLabel.css +++ /dev/null @@ -1,10 +0,0 @@ -QLineEdit { - color: lightGray; - border: 2px solid #0F0F0F; - border-radius: 6px; - border-width: 2; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, - stop: 0 #2c2c2c, stop: 1 #333333); - max-height: 16px; - min-height: 16px; -} \ No newline at end of file diff --git a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/BooleanEditorTemplate.template b/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/BooleanEditorTemplate.template deleted file mode 100644 index f3432a91616..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/BooleanEditorTemplate.template +++ /dev/null @@ -1,14 +0,0 @@ -QWidget { - layout: HorizontalLayout { - Label { - text: "%1" - toolTip: "%1" - } - CheckBox { - text: backendValues.%2.value - backendValue: backendValues.%2 - baseStateFlag: isBaseState - checkable: true - } - } -} \ No newline at end of file diff --git a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/ColorEditorTemplate.template b/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/ColorEditorTemplate.template deleted file mode 100644 index e8e4f17d727..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/ColorEditorTemplate.template +++ /dev/null @@ -1,5 +0,0 @@ -ColorGroupBox { - caption: "%1" - finished: finishedNotify - backendColor: backendValues.%2 -} \ No newline at end of file diff --git a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/IntEditorTemplate.template b/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/IntEditorTemplate.template deleted file mode 100644 index c3c35be70c6..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/IntEditorTemplate.template +++ /dev/null @@ -1,6 +0,0 @@ -IntEditor { - backendValue: backendValues.%2 - caption: "%1" - baseStateFlag: isBaseState - slider: false -} \ No newline at end of file diff --git a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/RealEditorTemplate.template b/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/RealEditorTemplate.template deleted file mode 100644 index cdae8e7ff81..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/RealEditorTemplate.template +++ /dev/null @@ -1,5 +0,0 @@ -DoubleSpinBoxAlternate { - text: "%1" - backendValue: backendValues.%2 - baseStateFlag: isBaseState -} \ No newline at end of file diff --git a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/StringEditorTemplate.template b/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/StringEditorTemplate.template deleted file mode 100644 index 625d9224ddf..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/StringEditorTemplate.template +++ /dev/null @@ -1,13 +0,0 @@ -QWidget { - layout: HorizontalLayout { - Label { - text: "%1" - toolTip: "%1" - } - LineEdit { - backendValue: backendValues.%2 - baseStateFlag: isBaseState - translation: true - } - } -} \ No newline at end of file diff --git a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/TemplateTypes.qml b/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/TemplateTypes.qml deleted file mode 100644 index c7078850753..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/TemplateTypes.qml +++ /dev/null @@ -1,29 +0,0 @@ - -AutoTypes { - imports: [ "import HelperWidgets 1.0", "import QtQuick 1.0", "import Bauhaus 1.0" ] - - Type { - typeNames: ["int"] - sourceFile: "IntEditorTemplate.template" - } - Type { - typeNames: ["real", "double", "qreal"] - sourceFile: "RealEditorTemplate.template" - } - Type { - typeNames: ["string", "QString"] - sourceFile: "StringEditorTemplate.template" - } - Type { - typeNames: ["QUrl", "url"] - sourceFile: "UrlEditorTemplate.template" - } - Type { - typeNames: ["bool", "boolean"] - sourceFile: "BooleanEditorTemplate.template" - } - Type { - typeNames: ["color", "QColor"] - sourceFile: "ColorEditorTemplate.template" - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/UrlEditorTemplate.template b/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/UrlEditorTemplate.template deleted file mode 100644 index 39e401b18e2..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/UrlEditorTemplate.template +++ /dev/null @@ -1,12 +0,0 @@ -QWidget { - layout: HorizontalLayout { - Label { - text: "%1" - toolTip: "%1" - } - UrlEdit { - backendValue: backendValues.%2 - baseStateFlag: isBaseState - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/BorderImageSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/BorderImageSpecifics.qml deleted file mode 100644 index 3488e61f9d3..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/BorderImageSpecifics.qml +++ /dev/null @@ -1,115 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - - - GroupBox { - maximumHeight: 240; - - finished: finishedNotify; - caption: qsTr("BorderImage"); - - layout: VerticalLayout { - - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Source") - } - - FileWidget { - enabled: isBaseState || backendValues.id.value != ""; - fileName: backendValues.source.value; - onFileNameChanged: { - backendValues.source.value = fileName; - } - itemNode: anchorBackend.itemNode - filter: "*.png *.gif *.jpg *.bmp *.jpeg *.svg" - showComboBox: true - } - } - } - - - IntEditor { - id: pixelSize; - backendValue: backendValues.border_left; - caption: qsTr("Left") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: backendValues.sourceSize_width.value; - } - - IntEditor { - backendValue: backendValues.border_right; - caption: qsTr("Right") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: backendValues.sourceSize_width.value; - } - - IntEditor { - backendValue: backendValues.border_top; - caption: qsTr("Top") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: backendValues.sourceSize_height.value; - } - - IntEditor { - backendValue: backendValues.border_bottom; - caption: qsTr("Bottom") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: backendValues.sourceSize_height.value; - } - } - } - - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableGroupBox.qml deleted file mode 100644 index 578b06af84d..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableGroupBox.qml +++ /dev/null @@ -1,160 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -GroupBox { - finished: finishedNotify; - caption: qsTr("Flickable") - layout: VerticalLayout { - QWidget { // 1 - layout: HorizontalLayout { - - Label { - text: qsTr("Content size") - } - - DoubleSpinBox { - text: "W" - alignRight: false - spacing: 4 - singleStep: 1; - backendValue: backendValues.contentWidth - minimum: 0; - maximum: 8000; - baseStateFlag: isBaseState; - } - - DoubleSpinBox { - singleStep: 1; - text: "H" - alignRight: false - spacing: 4 - backendValue: backendValues.contentHeight - minimum: 0; - maximum: 8000; - baseStateFlag: isBaseState; - } - - - } - } //QWidget //1 - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Flick direction") - toolTip: qsTr("Flickable direction") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["AutoFlickDirection", "HorizontalFlick", "VerticalFlick", "HorizontalAndVerticalFlick"] } - currentText: backendValues.flickableDirection.value; - onItemsChanged: { - currentText = backendValues.flickableDirection.value; - } - backendValue: backendValues.flickableDirection - } - } - } //QWidget - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Behavior") - toolTip: qsTr("Bounds behavior") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["StopAtBounds", "DragOverBounds", "DragAndOvershootBounds"] } - currentText: backendValues.boundsBehavior.value; - onItemsChanged: { - currentText = backendValues.boundsBehavior.value; - } - backendValue: backendValues.boundsBehavior - } - } - } //QWidget - QWidget { - layout: HorizontalLayout { - Label { - text:qsTr("Interactive") - } - CheckBox { - text: "" - backendValue: backendValues.interactive; - baseStateFlag: isBaseState; - checkable: true; - } - } - }// QWidget - QWidget { - layout: HorizontalLayout { - - Label { - text: qsTr("Max. velocity") - toolTip: qsTr("Maximum flick velocity") - } - - DoubleSpinBox { - text: "" - alignRight: false - spacing: 4 - singleStep: 1; - backendValue: backendValues.maximumFlickVelocity - minimum: 0; - maximum: 8000; - baseStateFlag: isBaseState; - } - } - } //QWidget - QWidget { - layout: HorizontalLayout { - - Label { - text: qsTr("Deceleration") - toolTip: qsTr("Flick deceleration") - } - - DoubleSpinBox { - text: "" - alignRight: false - spacing: 4 - singleStep: 1; - backendValue: backendValues.flickDeceleration - minimum: 0; - maximum: 8000; - baseStateFlag: isBaseState; - } - } - } //QWidget - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableSpecifics.qml deleted file mode 100644 index 5e03d64f022..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableSpecifics.qml +++ /dev/null @@ -1,44 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - FlickableGroupBox { - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlipableSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlipableSpecifics.qml deleted file mode 100644 index 6f9c400cd4b..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlipableSpecifics.qml +++ /dev/null @@ -1,35 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlowSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlowSpecifics.qml deleted file mode 100644 index 8bfc6aea3b1..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlowSpecifics.qml +++ /dev/null @@ -1,91 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - GroupBox { - finished: finishedNotify; - caption: qsTr("Flow") - layout: VerticalLayout { - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Flow") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["LeftToRight", "TopToBottom"] } - currentText: backendValues.flow.value; - onItemsChanged: { - currentText = backendValues.flow.value; - } - backendValue: backendValues.flow - } - } - } //QWidget - - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Layout direction") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["LeftToRight", "RightToLeft"] } - currentText: backendValues.layoutDirection.value; - onItemsChanged: { - currentText = backendValues.layoutDirection.value; - } - backendValue: backendValues.layoutDirection - } - } - } //QWidget - IntEditor { - backendValue: backendValues.spacing - caption: qsTr("Spacing") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 100; - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridSpecifics.qml deleted file mode 100644 index ec835f4b6a1..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridSpecifics.qml +++ /dev/null @@ -1,110 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - GroupBox { - finished: finishedNotify; - caption: qsTr("Grid") - layout: VerticalLayout { - IntEditor { - backendValue: backendValues.columns - caption: qsTr("Columns") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 100; - } - IntEditor { - backendValue: backendValues.rows - caption: qsTr("Rows") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 100; - } - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Flow") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["LeftToRight", "TopToBottom"] } - currentText: backendValues.flow.value; - onItemsChanged: { - currentText = backendValues.flow.value; - } - backendValue: backendValues.flow - } - } - } //QWidget - //Qt namespace enums not supported by the rewriter - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Layout direction") - } - - ComboBox { - id: alignmentBox - baseStateFlag: isBaseState - items : { ["LeftToRight", "RightToLeft"] } - currentText: backendValues.layoutDirection.value; - onItemsChanged: { - alignmentBox.currentText = backendValues.layoutDirection.value; - print("blab"); - print(alignmentBox.currentText); - } - backendValue: backendValues.layoutDirection - } - } - } //QWidget - IntEditor { - backendValue: backendValues.spacing - caption: qsTr("Spacing") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 100; - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridViewSpecifics.qml deleted file mode 100644 index 956d797e9fa..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridViewSpecifics.qml +++ /dev/null @@ -1,218 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - FlickableGroupBox { - } - GroupBox { - finished: finishedNotify; - caption: qsTr("Grid View") - layout: VerticalLayout { - IntEditor { - backendValue: backendValues.cacheBuffer - caption: qsTr("Cache") - toolTip: qsTr("Cache buffer") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.cellHeight - caption: qsTr("Cell height") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 200; - } - IntEditor { - backendValue: backendValues.cellWidth - caption: qsTr("Cell width") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Flow") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["LeftToRight", "TopToBottom"] } - currentText: backendValues.flow.value; - onItemsChanged: { - currentText = backendValues.flow.value; - } - backendValue: backendValues.flow - } - } - } //QWidget - - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Navigation wraps") - } - CheckBox { - backendValue: backendValues.keyNavigationWraps - toolTip: qsTr("Determines whether the grid wraps key navigation.") - baseStateFlag: isBaseState; - checkable: True - } - } - } - // Qt namespace enums not supported by the rewriter - // QWidget { - // layout: HorizontalLayout { - // Label { - // text: qsTr("Layout direction") - // } - - // ComboBox { - // baseStateFlag: isBaseState - // items : { ["LeftToRight", "RightToLeft"] } - // currentText: backendValues.layoutDirection.value; - // onItemsChanged: { - // currentText = backendValues.layoutDirection.value; - // } - // backendValue: backendValues.layoutDirection - // } - // } - // } //QWidget - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Snap mode") - toolTip: qsTr("Determines how the view scrolling will settle following a drag or flick.") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["NoSnap", "SnapToRow", "SnapOneRow"] } - currentText: backendValues.snapMode.value; - onItemsChanged: { - currentText = backendValues.snapMode.value; - } - backendValue: backendValues.snapMode - } - } - } //QWidget - } - } - GroupBox { - finished: finishedNotify; - caption: qsTr("Grid View Highlight") - layout: VerticalLayout { - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Range") - toolTip: qsTr("Highlight range") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["NoHighlightRange", "ApplyRange", "StrictlyEnforceRange"] } - currentText: backendValues.highlightRangeMode.value; - onItemsChanged: { - currentText = backendValues.highlightRangeMode.value; - } - backendValue: backendValues.highlightRangeMode - } - } - } //QWidget - IntEditor { - backendValue: backendValues.highlightMoveDuration - caption: qsTr("Move duration") - toolTip: qsTr("Move animation duration of the highlight delegate.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.highlightMoveSpeed - caption: qsTr("Move speed") - toolTip: qsTr("Move animation speed of the highlight delegate.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.preferredHighlightBegin - caption: qsTr("Preferred begin") - toolTip: qsTr("Preferred highlight begin - must be smaller than Preferred end.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.preferredHighlightEnd - caption: qsTr("Preferred end") - toolTip: qsTr("Preferred highlight end - must be larger than Preferred begin.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - QWidget { // 1 - layout: HorizontalLayout { - - Label { - text: qsTr("Follows current") - } - CheckBox { - backendValue: backendValues.highlightFollowsCurrentItem - toolTip: qsTr("Determines whether the highlight is managed by the view.") - baseStateFlag: isBaseState; - checkable: True - } - } - } - } - } - QScrollArea { - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/ImageSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/ImageSpecifics.qml deleted file mode 100644 index 835c698934a..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/ImageSpecifics.qml +++ /dev/null @@ -1,126 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - GroupBox { - maximumHeight: 240; - - finished: finishedNotify; - caption: qsTr("Image") - - layout: VerticalLayout { - - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Source") - } - - FileWidget { - enabled: isBaseState || backendValues.id.value != ""; - fileName: backendValues.source.value; - onFileNameChanged: { - backendValues.source.value = fileName; - } - itemNode: anchorBackend.itemNode - filter: "*.png *.gif *.jpg *.bmp *.jpeg *.svg" - showComboBox: true - } - } - } - - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Fill mode") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["Stretch", "PreserveAspectFit", "PreserveAspectCrop", "Tile", "TileVertically", "TileHorizontally"] } - currentText: backendValues.fillMode.value; - onItemsChanged: { - currentText = backendValues.fillMode.value; - } - backendValue: backendValues.fillMode - } - } - } - - QWidget { // 1 - layout: HorizontalLayout { - - Label { - text: qsTr("Source size") - } - - DoubleSpinBox { - text: "W" - alignRight: false - spacing: 4 - singleStep: 1; - enabled: anchorBackend.hasParent; - backendValue: backendValues.sourceSize_width - minimum: -2000; - maximum: 2000; - baseStateFlag: isBaseState; - } - - DoubleSpinBox { - singleStep: 1; - text: "H" - alignRight: false - spacing: 4 - backendValue: backendValues.sourceSize_height - enabled: anchorBackend.hasParent; - minimum: -2000; - maximum: 2000; - baseStateFlag: isBaseState; - } - - - } - } //QWidget //1 - - } - } - - QScrollArea {} - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/ItemPane.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/ItemPane.qml deleted file mode 100644 index f179a925140..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/ItemPane.qml +++ /dev/null @@ -1,111 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -PropertyFrame { - id: frame; - x: 0 - y: 0 - - ExpressionEditor { - id: expressionEdit - } - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - spacing: 0; - - Type { - } - - Geometry { - } - - Visibility { - - } - - HorizontalWhiteLine { - maximumHeight: 4; - styleSheet: "QLineEdit {border: 2px solid #707070; min-height: 0px; max-height: 0px;}"; - } - - Switches { - } - - HorizontalWhiteLine { - } - - ScrollArea { - styleSheetFile: ":/qmldesigner/scrollbar.css"; - widgetResizable: true; - - finished: finishedNotify; - - horizontalScrollBarPolicy: "Qt::ScrollBarAlwaysOff"; - id: standardPane; - QFrame { - //minimumHeight: 1100 - id: properyEditorStandard - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - spacing: 0; - - WidgetLoader { - id: specificsTwo; - baseUrl: globalBaseUrl; - qmlData: specificQmlData; - } - - WidgetLoader { - id: specificsOne; - source: specificsUrl; - } - - QScrollArea { - } - } // layout - } //QWidget - } //QScrollArea - ExtendedPane { - id: extendedPane; - } - LayoutPane { - id: layoutPane; - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/ListViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/ListViewSpecifics.qml deleted file mode 100644 index 862241d93c0..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/ListViewSpecifics.qml +++ /dev/null @@ -1,231 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - FlickableGroupBox { - finished: finishedNotify; - } - GroupBox { - finished: finishedNotify; - caption: qsTr("List View") - layout: VerticalLayout { - IntEditor { - backendValue: backendValues.cacheBuffer - caption: qsTr("Cache") - toolTip: qsTr("Cache buffer") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Navigation wraps") - } - CheckBox { - backendValue: backendValues.keyNavigationWraps - toolTip: qsTr("Determines whether the grid wraps key navigation.") - baseStateFlag: isBaseState; - checkable: True - } - } - } - // Qt namespace enums not supported by the rewriter - // QWidget { - // layout: HorizontalLayout { - // Label { - // text: qsTr("Layout direction") - // } - - // ComboBox { - // baseStateFlag: isBaseState - // items : { ["LeftToRight", "TopToBottom"] } - // currentText: backendValues.layoutDirection.value; - // onItemsChanged: { - // currentText = backendValues.layoutDirection.value; - // } - // backendValue: backendValues.layoutDirection - // } - // } - // } //QWidget - - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Orientation") - toolTip: qsTr("Orientation of the list.") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["Horizontal", "Vertical"] } - currentText: backendValues.orientation.value; - onItemsChanged: { - currentText = backendValues.orientation.value; - } - backendValue: backendValues.orientation - } - } - } //QWidget - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Snap mode") - toolTip: qsTr("Determines how the view scrolling will settle following a drag or flick.") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["NoSnap", "SnapToItem", "SnapOneItem"] } - currentText: backendValues.snapMode.value; - onItemsChanged: { - currentText = backendValues.snapMode.value; - } - backendValue: backendValues.snapMode - } - } - } //QWidget - IntEditor { - backendValue: backendValues.spacing - caption: qsTr("Spacing") - toolTip: qsTr("Spacing between items.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - } - } - GroupBox { - finished: finishedNotify; - caption: qsTr("List View Highlight") - layout: VerticalLayout { - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Range") - toolTip: qsTr("Highlight range") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["NoHighlightRange", "ApplyRange", "StrictlyEnforceRange"] } - currentText: backendValues.highlightRangeMode.value; - onItemsChanged: { - currentText = backendValues.highlightRangeMode.value; - } - backendValue: backendValues.highlightRangeMode - } - } - } //QWidget - IntEditor { - backendValue: backendValues.highlightMoveDuration - caption: qsTr("Move duration") - toolTip: qsTr("Move animation duration of the highlight delegate.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.highlightMoveSpeed - caption: qsTr("Move speed") - toolTip: qsTr("Move animation speed of the highlight delegate.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.highlightResizeDuration - caption: qsTr("Resize duration") - toolTip: qsTr("Resize animation duration of the highlight delegate.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.highlightResizeSpeed - caption: qsTr("Resize speed") - toolTip: qsTr("Resize animation speed of the highlight delegate.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.preferredHighlightBegin - caption: qsTr("Preferred begin") - toolTip: qsTr("Preferred highlight begin - must be smaller than Preferred end.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.preferredHighlightEnd - caption: qsTr("Preferred end") - toolTip: qsTr("Preferred highlight end - must be larger than Preferred begin.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - QWidget { // 1 - layout: HorizontalLayout { - - Label { - text: qsTr("Follows current") - } - CheckBox { - backendValue: backendValues.highlightFollowsCurrentItem - toolTip: qsTr("Determines whether the highlight is managed by the view.") - baseStateFlag: isBaseState; - checkable: True - } - } - } - } - } - QScrollArea { - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/MouseAreaSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/MouseAreaSpecifics.qml deleted file mode 100644 index ae5c98024a2..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/MouseAreaSpecifics.qml +++ /dev/null @@ -1,83 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - GroupBox { - finished: finishedNotify; - caption: qsTr("MouseArea") - - layout: VerticalLayout { - - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Enabled") - toolTip: qsTr("This property holds whether the item accepts mouse events.") - } - - CheckBox { - text: "" - toolTip: qsTr("This property holds whether the item accepts mouse events.") - backendValue: backendValues.enabled - baseStateFlag: isBaseState - checkable: true - } - } - } //QWidget - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Hover Enabled") - toolTip: qsTr("This property holds whether hover events are handled.") - } - - CheckBox { - text: "" - toolTip: qsTr("This property holds whether hover events are handled.") - backendValue: backendValues.hoverEnabled - baseStateFlag: isBaseState - checkable: true - } - } - } //QWidget - } - } - } -} - diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/PathViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/PathViewSpecifics.qml deleted file mode 100644 index a4a8243b155..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/PathViewSpecifics.qml +++ /dev/null @@ -1,190 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - GroupBox { - finished: finishedNotify; - caption: qsTr("Path View") - layout: VerticalLayout { - QWidget { // 1 - layout: HorizontalLayout { - - Label { - text: qsTr("Drag margin") - } - - DoubleSpinBox { - alignRight: false - spacing: 4 - singleStep: 1; - backendValue: backendValues.dragMargin - minimum: -100; - maximum: 100; - baseStateFlag: isBaseState; - } - } - } - QWidget { // 1 - layout: HorizontalLayout { - - Label { - text: qsTr("Flick deceleration") - } - - DoubleSpinBox { - alignRight: false - spacing: 4 - singleStep: 1; - backendValue: backendValues.flickDeceleration - minimum: 0; - maximum: 1000; - baseStateFlag: isBaseState; - } - } - } - QWidget { // 1 - layout: HorizontalLayout { - Label { - text: qsTr("Follows current") - toolTip: qsTr("A user cannot drag or flick a PathView that is not interactive.") - } - CheckBox { - backendValue: backendValues.interactive - baseStateFlag: isBaseState; - checkable: True - } - } - } - QWidget { // 1 - layout: HorizontalLayout { - - Label { - text: qsTr("Offset") - toolTip: qsTr("Specifies how far along the path the items are from their initial positions. This is a real number that ranges from 0.0 to the count of items in the model.") - } - DoubleSpinBox { - alignRight: false - spacing: 4 - singleStep: 1; - backendValue: backendValues.offset - minimum: 0; - maximum: 100; - baseStateFlag: isBaseState; - } - } - } - IntEditor { - backendValue: backendValues.pathItemCount - caption: qsTr("Item count") - toolTip: qsTr("pathItemCount: number of items visible on the path at any one time.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: -1; - maximumValue: 1000; - } - } - } - GroupBox { - finished: finishedNotify; - caption: qsTr("Path View Highlight") - layout: VerticalLayout { - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Highlight range") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["NoHighlightRange", "ApplyRange", "StrictlyEnforceRange"] } - currentText: backendValues.highlightRangeMode.value; - onItemsChanged: { - currentText = backendValues.highlightRangeMode.value; - } - backendValue: backendValues.highlightRangeMode - } - } - } //QWidget - IntEditor { - backendValue: backendValues.highlightMoveDuration - caption: qsTr("Move duration") - toolTip: qsTr("Move animation duration of the highlight delegate.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.preferredHighlightBegin - caption: qsTr("Preferred begin") - toolTip: qsTr("Preferred highlight begin - must be smaller than Preferred end.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - IntEditor { - backendValue: backendValues.preferredHighlightEnd - caption: qsTr("Preferred end") - toolTip: qsTr("Preferred highlight end - must be larger than Preferred begin.") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 1000; - } - QWidget { // 1 - layout: HorizontalLayout { - - Label { - text: qsTr("Follows current") - } - CheckBox { - backendValue: backendValues.highlightFollowsCurrentItem - toolTip: qsTr("Determines whether the highlight is managed by the view.") - baseStateFlag: isBaseState; - checkable: True - } - } - } - } - } - QScrollArea { - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/QtObjectPane.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/QtObjectPane.qml deleted file mode 100644 index 1d66c9d36d8..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/QtObjectPane.qml +++ /dev/null @@ -1,95 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -PropertyFrame { - id: frame; - x: 0 - y: 0 - - ExpressionEditor { - id: expressionEdit - } - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - spacing: 0; - - Type { - } - - HorizontalWhiteLine { - maximumHeight: 4; - styleSheet: "QLineEdit {border: 2px solid #707070; min-height: 0px; max-height: 0px;}"; - } - - HorizontalWhiteLine { - } - - ScrollArea { - styleSheetFile: ":/qmldesigner/scrollbar.css"; - widgetResizable: true; - - finished: finishedNotify; - - horizontalScrollBarPolicy: "Qt::ScrollBarAlwaysOff"; - id: standardPane; - QFrame { - //minimumHeight: 1100 - id: properyEditorStandard - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - spacing: 0; - - WidgetLoader { - id: specificsTwo; - baseUrl: globalBaseUrl; - qmlData: specificQmlData; - } - - WidgetLoader { - id: specificsOne; - source: specificsUrl; - } - - QScrollArea { - } - } // layout - } //QWidget - } //QScrollArea - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleColorGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleColorGroupBox.qml deleted file mode 100644 index 4455e4f5589..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleColorGroupBox.qml +++ /dev/null @@ -1,221 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -GroupBox { - id: rectangleColorGroupBox - - caption: qsTr("Colors") - - - property bool selectionFlag: selectionChanged - - property bool isSetup; - - property bool hasBorder - - property variant colorAlpha: colorGroupBox.alpha - property bool hasGradient: backendValues.gradient.isInModel - - property bool gradientIsBinding: backendValues.gradient.isBound - - onHasGradientChanged: { - print("onGradientInModelChanged") - if (backendValues.gradient.isInModel) { - print("inmodel") - colorGroupBox.setGradientButtonChecked = true; - } else { - print("else") - if (colorGroupBox.alpha == 0) - colorGroupBox.setNoneButtonChecked = true; - else - colorGroupBox.setSolidButtonChecked = true; - } - } - - onColorAlphaChanged: { - if (backendValues.gradient.isInModel) - return - if (colorGroupBox.alpha == 0) - colorGroupBox.setNoneButtonChecked = true; - else - colorGroupBox.setSolidButtonChecked = true; - } - - onSelectionFlagChanged: { - isSetup = true; - gradientLine.active = false; - colorGroupBox.setSolidButtonChecked = true; - if (backendValues.gradient.isInModel && !gradientIsBinding) { - colorGroupBox.setGradientButtonChecked = true; - gradientLine.active = true; - gradientLine.setupGradient(); - } - if (colorGroupBox.alpha == 0) { - colorGroupBox.setNoneButtonChecked = true; - //borderColorBox.collapseBox = true - } - - if (backendValues.border_color.isInModel || backendValues.border_width.isInModel) { - borderColorBox.setSolidButtonChecked = true; - hasBorder = true; - } else { - borderColorBox.setNoneButtonChecked = true; - hasBorder = false - //borderColorBox.collapseBox = true - } - - isSetup = false - } - - layout: VerticalLayout { - - QWidget { - visible: colorGroupBox.gradientButtonChecked - layout: HorizontalLayout { - spacing: 2 - Label { - text: qsTr("Stops") - toolTip: qsTr("Gradient stops") - } - - GradientLine { - id: gradientLine; - activeColor: colorGroupBox.color - itemNode: anchorBackend.itemNode - } - } - } - - ColorGroupBox { - enabled: !gradientIsBinding - opacity: gradientIsBinding ? 0.7 : 1 - id: colorGroupBox - caption: qsTr("Rectangle") - finished: finishedNotify - backendColor: backendValues.color - //gradientEditing: true; - gradientColor: gradientLine.activeColor; - showButtons: true; - showGradientButton: true; - - onGradientButtonCheckedChanged: { - if (isSetup) - return; - if (gradientButtonChecked) { - gradientLine.active = true - gradientLine.setupGradient(); - backendValues.color.resetValue(); - } else { - gradientLine.active = false - if (backendValues.gradient.isInModel) - gradientLine.deleteGradient(); - - } - } - - onNoneButtonCheckedChanged: { - if (isSetup) - return; - if (noneButtonChecked) { - backendValues.color.value = "transparent"; - collapseBox = false - } else { - alpha = 255; - } - } - - onSolidButtonCheckedChanged: { - if (isSetup) - return; - if (solidButtonChecked) { - backendValues.color.resetValue(); - } - } - } - - ColorGroupBox { - id: borderColorBox - caption: qsTr("Border") - finished: finishedNotify - showButtons: true; - - backendColor: backendValues.border_color - - property bool backendColorValue: backendValues.border_color.isInModel - enabled: isBaseState || hasBorder - - onBackendColorValueChanged: { - if (backendValues.border_color.isInModel) { - borderColorBox.setSolidButtonChecked = true; - hasBorder = true; - } else { - borderColorBox.setNoneButtonChecked = true; - hasBorder = false; - } - } - - onNoneButtonCheckedChanged: { - if (isSetup) - return; - if (noneButtonChecked) { - transaction.start(); - backendValues.border_color.resetValue(); - backendValues.border_width.resetValue(); - transaction.end(); - hasBorder = false - collapseBox = false - } else { - transaction.start(); - backendValues.border_color.value = "blue" - backendValues.border_color.value = "#000000"; - transaction.end(); - hasBorder = true - } - } - - onSolidButtonCheckedChanged: { - if (isSetup) - return; - if (solidButtonChecked) { - transaction.start(); - backendValues.border_color.value = "blue" - backendValues.border_color.value = "#000000"; - transaction.end(); - hasBorder = true - } - } - } - - } - -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleSpecifics.qml deleted file mode 100644 index ec0343d368c..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleSpecifics.qml +++ /dev/null @@ -1,86 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - - RectangleColorGroupBox { - id: colorsBox - finished: finishedNotify; - } - - GroupBox { - - finished: finishedNotify; - caption: qsTr("Rectangle") - - layout: VerticalLayout { - rightMargin: 24 - - IntEditor { - editorEnabled: colorsBox.hasBorder - opacity: enabled ? 1 : 0.6 - toolTip: enabled ? qsTr("Border width") : qsTr("Border has to be solid to change width") - id: borderWidth; - backendValue: backendValues.border_width === undefined ? 0 : backendValues.border_width - - caption: qsTr("Border") - baseStateFlag: isBaseState; - - step: 1; - minimumValue: 0; - maximumValue: 100; - } - - IntEditor { - property int border: backendValues.border_width.value === undefined ? 0 : backendValues.border_width.value - backendValue: backendValues.radius - caption: qsTr("Radius") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: Math.max(1, (Math.min(backendValues.width.value,backendValues.height.value) - border) / 2) - } - - } - } - - QScrollArea { - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/RowSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/RowSpecifics.qml deleted file mode 100644 index 8f532729997..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/RowSpecifics.qml +++ /dev/null @@ -1,73 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - GroupBox { - finished: finishedNotify; - caption: qsTr("Row") - layout: VerticalLayout { - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Layout direction") - } - - ComboBox { - baseStateFlag: isBaseState - items : { ["LeftToRight", "RightToLeft"] } - currentText: backendValues.layoutDirection.value; - onItemsChanged: { - currentText = backendValues.layoutDirection.value; - } - backendValue: backendValues.layoutDirection - } - } - } //QWidget - IntEditor { - backendValue: backendValues.spacing - caption: qsTr("Spacing") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 100; - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextEditSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextEditSpecifics.qml deleted file mode 100644 index b04cb2bf3f6..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextEditSpecifics.qml +++ /dev/null @@ -1,91 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - id: textSpecifics; - - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - - StandardTextGroupBox { - finished: finishedNotify; - showIsWrapping: true - useLineEdit: true - } - StandardTextColorGroupBox { - finished: finishedNotify; - showSelectionColor: true; - showSelectedTextColor: true; - } - GroupBox { - caption: qsTr("Text Edit") - finished: finishedNotify; - layout: VerticalLayout { - - QWidget { - layout: HorizontalLayout { - rightMargin: 12 - Label { - text: qsTr("Format") - } - ComboBox { - baseStateFlag: isBaseState - minimumHeight: 22; - items : { ["PlainText", "RichText", "AutoText"] } - currentText: backendValues.textFormat.value; - onItemsChanged: { - currentText = backendValues.textFormat.value; - } - - backendValue: backendValues.textFormat - } - } - } - - } - } - FontGroupBox { - finished: finishedNotify; - - } - TextInputGroupBox { - finished: finishedNotify; - } - QScrollArea { - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextInputSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextInputSpecifics.qml deleted file mode 100644 index 3da3ad00e26..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextInputSpecifics.qml +++ /dev/null @@ -1,66 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - id: textSpecifics; - - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - - StandardTextGroupBox { - finished: finishedNotify; - } - - StandardTextColorGroupBox { - finished: finishedNotify; - showSelectionColor: true; - showSelectedTextColor: true; - } - - FontGroupBox { - finished: finishedNotify; - - } - - TextInputGroupBox { - finished: finishedNotify - isTextInput: true - } - QScrollArea { - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextSpecifics.qml deleted file mode 100644 index c9d4946e084..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextSpecifics.qml +++ /dev/null @@ -1,64 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - id: textSpecifics; - - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - - - StandardTextColorGroupBox { - showStyleColor: true - finished: finishedNotify; - } - - StandardTextGroupBox { - showIsWrapping: true - showVerticalAlignment: true - finished: finishedNotify; - } - - FontGroupBox { - finished: finishedNotify; - showStyle: true - } - - QScrollArea { - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/Window/WindowPane.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/Window/WindowPane.qml deleted file mode 100644 index a6abc73237a..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/Window/WindowPane.qml +++ /dev/null @@ -1,141 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -PropertyFrame { - id: frame; - x: 0 - y: 0 - - ExpressionEditor { - id: expressionEdit - } - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - spacing: 0; - - Type { - } - - Geometry { - } - - HorizontalWhiteLine { - maximumHeight: 4; - styleSheet: "QLineEdit {border: 2px solid #707070; min-height: 0px; max-height: 0px;}"; - } - - HorizontalWhiteLine { - } - - Switches { - showLayoutModeButton: false - showExtendedModeButton: false - } - - ScrollArea { - styleSheetFile: ":/qmldesigner/scrollbar.css"; - widgetResizable: true; - - finished: finishedNotify; - - horizontalScrollBarPolicy: "Qt::ScrollBarAlwaysOff"; - id: standardPane; - QFrame { - //minimumHeight: 1100 - id: properyEditorStandard - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - spacing: 0; - - QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - GroupBox { - finished: finishedNotify; - caption: qsTr("Window") - layout: VerticalLayout { -// Qt namespace enums not supported by the rewriter -// QWidget { -// layout: HorizontalLayout { -// Label { -// text: qsTr("Modality") -// } - -// ComboBox { -// baseStateFlag: isBaseState -// items : { ["Qt.NonModal", "Qt.WindowModal", "Qt.ApplicationModal"] } -// currentText: backendValues.modality.value; -// onItemsChanged: { -// currentText = backendValues.modality.value; -// } -// backendValue: backendValues.modality -// } -// } -// } //QWidget - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Title") - } - LineEdit { - backendValue: backendValues.title - baseStateFlag: isBaseState; - translation: true - } - } - } - } - } - } - } - - QScrollArea { - } - } // layout - } //QWidget - } //QScrollArea - - ScrollArea { - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/emptyPane.qml b/share/qtcreator/qmldesigner/propertyeditor/QtQuick/emptyPane.qml deleted file mode 100644 index e52ab9386fb..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtQuick/emptyPane.qml +++ /dev/null @@ -1,77 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -PropertyFrame { - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - spacing: 0; - - Switches { - } - - HorizontalWhiteLine { - } - - ScrollArea { - styleSheetFile: ":/qmldesigner/scrollbar.css"; - widgetResizable: true; - content: QFrame { - maximumHeight: 38; - layout: QVBoxLayout { - topMargin: 0; - bottomMargin: 0; - leftMargin: 0; - rightMargin: 0; - QExtGroupBox { - font.bold: true; - maximumHeight: 100; - minimumWidth: 280; - minimumHeight: 32; - layout: QHBoxLayout { - topMargin: 6; - bottomMargin: 2; - QLabel { - minimumHeight: 20; - text: qsTr("None or multiple items selected."); - alignment: "AlignHCenter"; - } - } - } - } - } - } - } -} diff --git a/share/qtcreator/qmldesigner/propertyeditor/QtWebKit/WebViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/QtWebKit/WebViewSpecifics.qml deleted file mode 100644 index aafe95d1d35..00000000000 --- a/share/qtcreator/qmldesigner/propertyeditor/QtWebKit/WebViewSpecifics.qml +++ /dev/null @@ -1,121 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -** Contact: http://www.qt-project.org/legal -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Digia. For licensing terms and -** conditions see http://qt.digia.com/licensing. For further information -** use the contact form at http://qt.digia.com/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Digia gives you certain additional -** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ - -import QtQuick 1.0 -import Bauhaus 1.0 -import HelperWidgets 1.0 - -QWidget { - layout: QVBoxLayout { - topMargin: 0 - bottomMargin: 0 - leftMargin: 0 - rightMargin: 0 - spacing: 0 - - GroupBox { - maximumHeight: 200; - - finished: finishedNotify; - caption: qsTr("WebView") - id: webViewSpecifics; - - layout: VerticalLayout { - QWidget { - layout: HorizontalLayout { - leftMargin: 0; - rightMargin: 0; - Label { - text: qsTr("URL") - } - LineEdit { - backendValue: backendValues.url - baseStateFlag: isBaseState; - } - } - } - - IntEditor { - id: preferredWidth; - backendValue: backendValues.preferredWidth; - caption: qsTr("Pref Width") - toolTip: qsTr("Preferred Width") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 2000; - } - - IntEditor { - id: webPageWidth; - backendValue: backendValues.preferredHeight; - caption: qsTr("Pref Height") - toolTip: qsTr("Preferred Height") - baseStateFlag: isBaseState; - step: 1; - minimumValue: 0; - maximumValue: 2000; - } - - QWidget { - layout: HorizontalLayout { - - Label { - text: qsTr("Scale") - toolTip: qsTr("Contents Scale") - } - DoubleSpinBox { - id: zoomSpinBox; - minimumWidth: 60; - text: "" - backendValue: backendValues.contentsScale; - minimum: 0.01 - maximum: 10 - singleStep: 0.1 - baseStateFlag: isBaseState; - onBackendValueChanged: { - zoomSlider.value = backendValue.value * 10; - } - } - QSlider { - id: zoomSlider; - orientation: "Qt::Horizontal"; - minimum: 1; - maximum: 100; - singleStep: 1; - onValueChanged: { - backendValues.contentsScale.value = value / 10; - } - } - } - } - } - } - } -} -- GitLab From 86a91be426f56784914f7596e80da8754972b77a Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Fri, 29 Nov 2013 18:39:08 +0100 Subject: [PATCH 29/42] Debugger: Don't check unused QXmlAttributed::vptr in auto tests Change-Id: I333c407e293a806a63ff30153864530df6a32e47 Reviewed-by: hjk <hjk121@nokiamail.com> --- tests/auto/debugger/tst_dumpers.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index bf6cc915d00..7dfe6afc86d 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -2568,7 +2568,6 @@ void tst_Dumpers::dumper_data() % CoreProfile() % Profile("QT += xml\n") % Check("atts", "", "@QXmlAttributes") - % CheckType("atts.[vptr]", "") % Check("atts.attList", "<3 items>", "@QXmlAttributes::AttributeList") % Check("atts.attList.0", "[0]", "", "@QXmlAttributes::Attribute") % Check("atts.attList.0.localname", "\"localPart1\"", "@QString") -- GitLab From 1178a048fc48f1679e23344962400556b516261a Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@digia.com> Date: Mon, 6 Jan 2014 15:20:54 +0100 Subject: [PATCH 30/42] QmlDesigner.ItemLibrary: Start drag using QTimer::singleShot() A drag might change the imports which invalidates the model exposed to qml. Since QObjects are deleted when the model is reseted this did lead to a crash in the qml engine, because the object emitting the signal was deleted. To avoid this we call startDragAndDrop() asynchronously using QTimer::singleShot(). Now the object is always deleted after the signal is emitted not during the emit. Task-number: QTCREATORBUG-11139 Change-Id: I92e7f9dfff33697b9ff0da148dc9da629723ab7e Reviewed-by: Marco Bubke <marco.bubke@digia.com> --- .../itemlibrary/itemlibrarywidget.cpp | 18 +++++++++++++----- .../components/itemlibrary/itemlibrarywidget.h | 4 +++- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.cpp b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.cpp index 99e92d88ea2..e715e9800ec 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.cpp +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.cpp @@ -48,6 +48,7 @@ #include <QWheelEvent> #include <QMenu> #include <QApplication> +#include <QTimer> #include <QQuickItem> @@ -64,7 +65,8 @@ ItemLibraryWidget::ItemLibraryWidget(QWidget *parent) : m_resIconSize(24, 24), m_itemsView(new QQuickView()), m_resourcesView(new Internal::ItemLibraryTreeView(this)), - m_filterFlag(QtBasic) + m_filterFlag(QtBasic), + m_itemLibraryId(-1) { Internal::registerQmlTypes(); @@ -91,7 +93,7 @@ ItemLibraryWidget::ItemLibraryWidget(QWidget *parent) : QQuickItem *rootItem = qobject_cast<QQuickItem*>(m_itemsView->rootObject()); connect(rootItem, SIGNAL(itemSelected(int)), this, SLOT(showItemInfo(int))); - connect(rootItem, SIGNAL(itemDragged(int)), this, SLOT(startDragAndDrop(int))); + connect(rootItem, SIGNAL(itemDragged(int)), this, SLOT(startDragAndDropDelayed(int))); connect(this, SIGNAL(scrollItemsView(QVariant)), rootItem, SLOT(scrollView(QVariant))); connect(this, SIGNAL(resetItemsView()), rootItem, SLOT(resetView())); @@ -363,12 +365,18 @@ void ItemLibraryWidget::setResourcePath(const QString &resourcePath) updateSearch(); } -void ItemLibraryWidget::startDragAndDrop(int itemLibId) +void ItemLibraryWidget::startDragAndDropDelayed(int itemLibraryId) { - QMimeData *mimeData = m_itemLibraryModel->getMimeData(itemLibId); + m_itemLibraryId = itemLibraryId; + QTimer::singleShot(0, this, SLOT(startDragAndDrop())); +} + +void ItemLibraryWidget::startDragAndDrop() +{ + QMimeData *mimeData = m_itemLibraryModel->getMimeData(m_itemLibraryId); QDrag *drag = new QDrag(this); - drag->setPixmap(m_itemLibraryModel->getIcon(itemLibId).pixmap(32, 32)); + drag->setPixmap(m_itemLibraryModel->getIcon(m_itemLibraryId).pixmap(32, 32)); drag->setMimeData(mimeData); drag->exec(); diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.h b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.h index 0369771d12e..8b121472aa9 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.h +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.h @@ -94,7 +94,8 @@ public slots: void setResourcePath(const QString &resourcePath); - void startDragAndDrop(int itemLibId); + void startDragAndDropDelayed(int itemLibId); + void startDragAndDrop(); void showItemInfo(int itemLibId); void setModel(Model *model); @@ -137,6 +138,7 @@ private: QWeakPointer<Model> m_model; FilterChangeFlag m_filterFlag; + int m_itemLibraryId; }; } -- GitLab From 4e7657321165d183d96c738d9732d56fee85fc6d Mon Sep 17 00:00:00 2001 From: Sergey Belyashov <Sergey.Belyashov@gmail.com> Date: Mon, 16 Dec 2013 12:16:35 +0400 Subject: [PATCH 31/42] Separate shadow build directory suffixes and build configuration name Task-number: QTCREATORBUG-11113 Change-Id: Idbf1a52d550a76128bb06ccc65029555fe001078 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com> Reviewed-by: Daniel Teske <daniel.teske@digia.com> --- .../qmakeprojectmanager/qmakebuildconfiguration.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.cpp b/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.cpp index da00fc54a8c..d69f090e916 100644 --- a/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.cpp +++ b/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.cpp @@ -553,18 +553,24 @@ QmakeBuildInfo *QmakeBuildConfigurationFactory::createBuildInfo(const Kit *k, { QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(k); QmakeBuildInfo *info = new QmakeBuildInfo(this); - if (type == BuildConfiguration::Release) + QString suffix; + if (type == BuildConfiguration::Release) { //: The name of the release build configuration created by default for a qmake project. info->displayName = tr("Release"); - else + //: Non-ASCII characters in directory suffix may cause build issues. + suffix = tr("Release", "Shadow build directory suffix"); + } else { //: The name of the debug build configuration created by default for a qmake project. info->displayName = tr("Debug"); + //: Non-ASCII characters in directory suffix may cause build issues. + suffix = tr("Debug", "Shadow build directory suffix"); + } info->typeName = tr("Build"); // Leave info->buildDirectory unset; info->kitId = k->id(); info->supportsShadowBuild = (version && version->supportsShadowBuilds()); info->buildDirectory - = defaultBuildDirectory(info->supportsShadowBuild, projectPath, k, info->displayName); + = defaultBuildDirectory(info->supportsShadowBuild, projectPath, k, suffix); info->type = type; return info; } -- GitLab From 85f1a0310c77d96e1b3d81af1d5b5ee7305485f7 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@digia.com> Date: Mon, 6 Jan 2014 16:13:17 +0100 Subject: [PATCH 32/42] Squish: Simplify runAndCloseApp() - remove one signal handler - make one variable local Change-Id: Idff589c243cbd324b1b37478d77f28446d23490b Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- tests/system/shared/project.py | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py index 0b784304f98..f05b81cda14 100644 --- a/tests/system/shared/project.py +++ b/tests/system/shared/project.py @@ -30,13 +30,8 @@ import __builtin__ import re -processStarted = False processExited = False -def __handleProcessStarted__(*args): - global processStarted - processStarted = True - def __handleProcessExited__(*args): global processExited processExited = True @@ -388,6 +383,16 @@ def __chooseTargets__(targets=Targets.DESKTOP_474_GCC, availableTargets=None): test.warning("Target '%s' is not set up correctly." % Targets.getStringForTarget(current)) return checkedTargets +def waitForProcessStarted(): + outputButton = waitForObject(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton") + if not waitFor("outputButton.checked", 10000): + ensureChecked(outputButton) + waitFor("object.exists(':Qt Creator.ReRun_QToolButton')", 20000) + reRunButton = findObject(":Qt Creator.ReRun_QToolButton") + waitFor("object.exists(':Qt Creator.Stop_QToolButton')", 20000) + stopButton = findObject(":Qt Creator.Stop_QToolButton") + return waitFor("not reRunButton.enabled and stopButton.enabled", 10000) + # run and close an application # withHookInto - if set to True the function tries to attach to the sub-process instead of simply pressing Stop inside Creator # executable - must be defined when using hook-into @@ -399,22 +404,21 @@ def __chooseTargets__(targets=Targets.DESKTOP_474_GCC, availableTargets=None): # by yourself (or use the function parameter) # ATTENTION! Make sure this function won't fail and the sub-process will end when the function returns def runAndCloseApp(withHookInto=False, executable=None, port=None, function=None, sType=None, userDefinedType=None): - global processStarted, processExited - processStarted = processExited = False + global processExited + processExited = False overrideInstallLazySignalHandler() - installLazySignalHandler("{type='QProcess'}", "started()", "__handleProcessStarted__") installLazySignalHandler("{type='QProcess'}", "finished(int,QProcess::ExitStatus)", "__handleProcessExited__") runButton = waitForObject(":*Qt Creator.Run_Core::Internal::FancyToolButton") clickButton(runButton) if sType != SubprocessType.QT_QUICK_UI: waitForSignal("{type='ProjectExplorer::BuildManager' unnamed='1'}", "buildQueueFinished(bool)", 300000) buildSucceeded = checkLastBuild() + ensureChecked(waitForObject(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton")) if not buildSucceeded: test.fatal("Build inside run wasn't successful - leaving test") invokeMenuItem("File", "Exit") return False - waitFor("processStarted==True", 10000) - if not processStarted: + if not waitForProcessStarted(): test.fatal("Couldn't start application - leaving test") invokeMenuItem("File", "Exit") return False @@ -489,11 +493,9 @@ def __closeSubprocessByHookingInto__(executable, port, function, sType, userDefT "unnamed='1' visible='1'} type='QComboBox' unnamed='1' " "visible='1'}"), selectConfig) switchViewTo(ViewConstants.EDIT) - global processStarted - processStarted = False runButton = waitForObject(":*Qt Creator.Run_Core::Internal::FancyToolButton") clickButton(runButton) - if not waitFor("processStarted == True", 10000): + if not waitForProcessStarted(): test.fatal("Something seems to be really wrong.", "Application output:" % str(output.plainText)) return False -- GitLab From 56691bcd6048dd7d3bab1fb693de813a7c21f237 Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Mon, 6 Jan 2014 17:35:15 +0100 Subject: [PATCH 33/42] Debugger: Fix display of std::array<some_struct> Change-Id: Ib2aa41d6a059246e15d1f42831bdec96c235161e Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- share/qtcreator/debugger/gdbbridge.py | 2 +- tests/auto/debugger/tst_dumpers.cpp | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py index 03656e123ed..4284a1fd31c 100644 --- a/share/qtcreator/debugger/gdbbridge.py +++ b/share/qtcreator/debugger/gdbbridge.py @@ -1187,7 +1187,7 @@ class Dumper(DumperBase): def putArrayData(self, type, base, n, childNumChild = None, maxNumChild = 10000): if not self.tryPutArrayContents(type, base, n): - base = base.cast(type.pointer()) + base = self.createPointerValue(base, type) with Children(self, n, type, childNumChild, maxNumChild, base, type.sizeof): for i in self.childRange(): diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index 7dfe6afc86d..ad40bd988d9 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -2595,7 +2595,9 @@ void tst_Dumpers::dumper_data() % Cxx11Profile() % MacLibCppProfile() % Check("a", "<4 items>", Pattern("std::array<int, 4.*>")) - % Check("b", "<4 items>", Pattern("std::array<@QString, 4.*>")); + % Check("a.0", "[0]", "1", "int") + % Check("b", "<4 items>", Pattern("std::array<@QString, 4.*>")) + % Check("b.0", "[0]", "\"1\"", "@QString"); QTest::newRow("StdComplex") << Data("#include <complex>\n", -- GitLab From ab10ac13cb54ce7385d5a1c6f9b99deb9b3064a9 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh <orgad.shaneh@audiocodes.com> Date: Tue, 24 Dec 2013 23:28:45 +0200 Subject: [PATCH 34/42] EditorManager: Add a soft assertion for editor existence Change-Id: Ieb1e13a25dd2ac4fbe2c1dba0adbbe93dcc6b4e7 Reviewed-by: hjk <hjk121@nokiamail.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com> --- src/plugins/coreplugin/editormanager/editormanager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/coreplugin/editormanager/editormanager.cpp b/src/plugins/coreplugin/editormanager/editormanager.cpp index b10cf3d2b2d..e11b14398a0 100644 --- a/src/plugins/coreplugin/editormanager/editormanager.cpp +++ b/src/plugins/coreplugin/editormanager/editormanager.cpp @@ -1261,6 +1261,7 @@ Core::IEditor *EditorManager::placeEditor(Core::Internal::EditorView *view, Core void EditorManager::activateEditor(Core::IEditor *editor, OpenEditorFlags flags) { + QTC_ASSERT(editor, return); EditorView *view = viewForEditor(editor); // an IEditor doesn't have to belong to a view, it might be kept in storage by the editor model if (!view) -- GitLab From 8cbcc3f0441d656802fab61969040fd0ce2cf429 Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Mon, 6 Jan 2014 18:08:01 +0100 Subject: [PATCH 35/42] Debugger: Fix std::{shared,unique}_ptr display Regression in 3.0. Change-Id: I8772176dc6ed75fb0f9c976632defacebe9d3589 Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- share/qtcreator/debugger/stdtypes.py | 4 ++-- tests/auto/debugger/tst_dumpers.cpp | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/share/qtcreator/debugger/stdtypes.py b/share/qtcreator/debugger/stdtypes.py index 512255a00a1..53f4e43af56 100644 --- a/share/qtcreator/debugger/stdtypes.py +++ b/share/qtcreator/debugger/stdtypes.py @@ -337,7 +337,7 @@ def qdump__std__shared_ptr(d, value): if d.isSimpleType(d.templateArgument(value.type, 0)): d.putValue("%s @0x%x" % (i.dereference(), d.pointerValue(i))) else: - i = expensiveDowncast(i) + i = d.expensiveDowncast(i) d.putValue("@0x%x" % d.pointerValue(i)) d.putNumChild(3) @@ -376,7 +376,7 @@ def qdump__std__unique_ptr(d, value): if d.isSimpleType(d.templateArgument(value.type, 0)): d.putValue("%s @0x%x" % (i.dereference(), d.pointerValue(i))) else: - i = expensiveDowncast(i) + i = d.expensiveDowncast(i) d.putValue("@0x%x" % d.pointerValue(i)) d.putNumChild(1) diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index ad40bd988d9..a01f47db157 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -2905,7 +2905,9 @@ void tst_Dumpers::dumper_data() % Cxx11Profile() % MacLibCppProfile() % Check("pi", Pointer("32"), "std::unique_ptr<int, std::default_delete<int> >") - % Check("pf", Pointer(), "std::unique_ptr<Foo, std::default_delete<Foo> >"); + % Check("pi.data", "32", "int") + % Check("pf", Pointer(), "std::unique_ptr<Foo, std::default_delete<Foo> >") + % CheckType("pf.data", "Foo"); QTest::newRow("StdSharedPtr") << Data("#include <memory>\n" + fooData, @@ -2915,7 +2917,11 @@ void tst_Dumpers::dumper_data() % Cxx11Profile() % MacLibCppProfile() % Check("pi", Pointer("32"), "std::shared_ptr<int>") - % Check("pf", Pointer(), "std::shared_ptr<Foo>"); + % Check("pi.data", "32", "int").setForGdbOnly() + % Check("pi.data", "32", "std::shared_ptr<int>::element_type").setForLldbOnly() + % Check("pf", Pointer(), "std::shared_ptr<Foo>") + % CheckType("pf.data", "Foo").setForGdbOnly() + % CheckType("pf.data", "std::shared_ptr<Foo>::element_type").setForLldbOnly(); QTest::newRow("StdSetInt") << Data("#include <set>\n", -- GitLab From 7176a8ee6485b7cd8c4248cd4cb7b6f38dca8396 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Date: Mon, 16 Dec 2013 16:27:26 +0100 Subject: [PATCH 36/42] make sure Xlib is in our dependencies Task-number: QTCREATORBUG-11107 Change-Id: I5d0bc2cb34a1c02e2c310df4bd40fa9df198292d Reviewed-by: Daniel Teske <daniel.teske@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com> --- src/libs/utils/utils.pro | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libs/utils/utils.pro b/src/libs/utils/utils.pro index 382f8f4e108..2b3c85bfac3 100644 --- a/src/libs/utils/utils.pro +++ b/src/libs/utils/utils.pro @@ -10,6 +10,7 @@ lessThan(QT_MAJOR_VERSION, 5) { } else:linux-* { !isEmpty(QT.x11extras.name) { QT += x11extras + CONFIG += x11 DEFINES += QTC_USE_QX11INFO } else { warning("x11extras module not found, raising the main window might not work. " \ -- GitLab From 6de1958af295336c86d883200cfeeb6f1a57876b Mon Sep 17 00:00:00 2001 From: David Schulz <david.schulz@digia.com> Date: Mon, 25 Nov 2013 08:33:33 +0100 Subject: [PATCH 37/42] Debugger: Use more direct breakpoint setting in dumper auto test Change-Id: Ibb24ded55ba02b908b63d71f1f872c73ee7b011b Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- share/qtcreator/debugger/lldbbridge.py | 5 ---- tests/auto/debugger/tst_dumpers.cpp | 32 +++++++++++++++----------- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/share/qtcreator/debugger/lldbbridge.py b/share/qtcreator/debugger/lldbbridge.py index 064930ceb75..1f9c94a2dd2 100644 --- a/share/qtcreator/debugger/lldbbridge.py +++ b/share/qtcreator/debugger/lldbbridge.py @@ -1492,17 +1492,12 @@ def testit(): db.passExceptions = True db.setupInferior({'cmd':'setupInferior','executable':sys.argv[2],'token':1}) - db.handleBreakpoints({'cmd':'handleBreakpoints','bkpts':[{'operation':'add', - 'modelid':'1','type':2,'ignorecount':0,'condition':'','function':'breakHere', - 'oneshot':0,'enabled':1,'file':'','line':0}]}) error = lldb.SBError() listener = db.debugger.GetListener() db.process = db.target.Launch(listener, None, None, None, None, None, None, 0, False, error) - db.currentThread().SetSelectedFrame(1) - db.report = savedReport db.reportVariables() #db.report("DUMPER=%s" % qqDumpers) diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index a01f47db157..fe87b9fc4f1 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -822,9 +822,16 @@ void tst_Dumpers::dumper() QFile source(t->buildPath + QLatin1Char('/') + QLatin1String(mainFile)); QVERIFY(source.open(QIODevice::ReadWrite)); - QByteArray fullCode = + QByteArray fullCode = QByteArray() + "\n\nvoid unused(const void *first,...) { (void) first; }" - "\n\nvoid breakHere() {}" + "\n\n#if defined(_MSC_VER)" + (data.useQt ? + "\n#include <qt_windows.h>" : + "\n#include <Windows.h>") + + "\n#define BREAK DebugBreak();" + "\n#else" + "\n#define BREAK asm(\"int $3\");" + "\n#endif" + "\n" "\n\n" + data.includes + "\n\n" + (data.useQHash ? "\n#include <QByteArray>" @@ -847,7 +854,7 @@ void tst_Dumpers::dumper() "\n#endif\n" : "") + "\n unused(&argc, &argv, &qtversion, &gccversion);\n" "\n" + data.code + - "\n breakHere();" + "\n BREAK;" "\n return 0;" "\n}\n"; source.write(fullCode); @@ -923,7 +930,6 @@ void tst_Dumpers::dumper() cmds = "set confirm off\n" "file doit\n" - "break breakHere\n" "set print object on\n" "set auto-load python-scripts no\n"; @@ -932,7 +938,6 @@ void tst_Dumpers::dumper() "python sys.path.append('" + uninstalledData + "')\n" "python from gdbbridge import *\n" "run " + nograb + "\n" - "up\n" "python print('@%sS@%s@' % ('N', theDumper.qtNamespace()))\n" "bb options:fancy,autoderef,dyntype,pe vars: expanded:" + expanded + " typeformats:\n"; } else { @@ -956,7 +961,6 @@ void tst_Dumpers::dumper() << QLatin1String("debug\\doit.exe"); cmds = "l+t\n" "l+s\n" - "bu `doit!" + source.fileName().toLatin1() + ":5`\n" "sxi 0x4000001f\n" "g\n" "gu\n" @@ -3404,7 +3408,7 @@ void tst_Dumpers::dumper_data() QTest::newRow("QString3") << Data("#include <QString>\n" - "void stringRefTest(const QString &refstring) { breakHere(); unused(&refstring); }\n", + "void stringRefTest(const QString &refstring) { BREAK; unused(&refstring); }\n", "stringRefTest(QString(\"Ref String Test\"));\n") % CoreProfile() % Check("refstring", "\"Ref String Test\"", "@QString &"); @@ -3514,7 +3518,7 @@ void tst_Dumpers::dumper_data() " void run()\n" " {\n" " if (m_id == 3)\n" - " breakHere();\n" + " BREAK;\n" " }\n" " int m_id;\n" "};\n", @@ -3659,7 +3663,7 @@ void tst_Dumpers::dumper_data() "var.setValue(my);\n" "int t = QMetaType::type(\"MyType\");\n" "const char *s = QMetaType::typeName(t);\n" - "breakHere();\n" + "BREAK;\n" "unused(&var, &t, &s);\n") % CoreProfile() % Check("my", "<2 items>", "MyType") @@ -4402,7 +4406,7 @@ void tst_Dumpers::dumper_data() " QString n = \"2\";\n" " {\n" " double n = 3.5;\n" - " breakHere();\n" + " BREAK;\n" " unused(&n);\n" " }\n" " unused(&n);\n" @@ -4805,7 +4809,7 @@ void tst_Dumpers::dumper_data() // "void g(int c, int d)\n" // "{\n" // "qDebug() << c << d;\n" -// "breakHere()"\n" +// "BREAK"\n" //\n" // "void f(int a, int b)\n" // "{\n" @@ -4915,18 +4919,18 @@ void tst_Dumpers::dumper_data() QTest::newRow("valist") << Data("#include <stdarg.h>\n" - "void breakHere();\n" "void test(const char *format, ...)\n" "{\n" " va_list arg;\n" " va_start(arg, format);\n" " int i = va_arg(arg, int);\n" " double f = va_arg(arg, double);\n" - " unused(&i, &f);\n" " va_end(arg);\n" - " breakHere();\n" + " BREAK;\n" + " unused(&i, &f);\n" "}\n", "test(\"abc\", 1, 2.0);\n") + % Check("format", "\"abc\"", "char *") % Check("i", "1", "int") % Check("f", "2", "double"); -- GitLab From 1362d9d262cb18f53a7d55717852ad63d501e480 Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar <nikolai.kosjar@digia.com> Date: Tue, 7 Jan 2014 11:54:45 +0100 Subject: [PATCH 38/42] CppTools: Fix test_modelmanager_defines_per_project The example project parts had no project file set and thus the "right" project part could not be determined in cppeditor.cpp:718. Change-Id: I088571e9d3c3c8790670bbdd8e68190835a85ad5 Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com> --- src/plugins/cpptools/cppmodelmanager_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/cpptools/cppmodelmanager_test.cpp b/src/plugins/cpptools/cppmodelmanager_test.cpp index a7a6aa222e0..3e9f3aafe3c 100644 --- a/src/plugins/cpptools/cppmodelmanager_test.cpp +++ b/src/plugins/cpptools/cppmodelmanager_test.cpp @@ -806,6 +806,7 @@ void CppToolsPlugin::test_modelmanager_defines_per_project() Project *project = helper.createProject(_("test_modelmanager_defines_per_project")); ProjectPart::Ptr part1(new ProjectPart); + part1->projectFile = QLatin1String("project1.projectfile"); part1->files.append(ProjectFile(main1File, ProjectFile::CXXSource)); part1->files.append(ProjectFile(header, ProjectFile::CXXHeader)); part1->cxxVersion = ProjectPart::CXX11; @@ -814,6 +815,7 @@ void CppToolsPlugin::test_modelmanager_defines_per_project() part1->includePaths = QStringList() << testDataDirectory.includeDir(false); ProjectPart::Ptr part2(new ProjectPart); + part2->projectFile = QLatin1String("project1.projectfile"); part2->files.append(ProjectFile(main2File, ProjectFile::CXXSource)); part2->files.append(ProjectFile(header, ProjectFile::CXXHeader)); part2->cxxVersion = ProjectPart::CXX11; @@ -878,6 +880,7 @@ void CppToolsPlugin::test_modelmanager_defines_per_project_pch() Project *project = helper.createProject(_("test_modelmanager_defines_per_project_pch")); ProjectPart::Ptr part1(new ProjectPart); + part1->projectFile = QLatin1String("project1.projectfile"); part1->files.append(ProjectFile(main1File, ProjectFile::CXXSource)); part1->files.append(ProjectFile(header, ProjectFile::CXXHeader)); part1->cxxVersion = ProjectPart::CXX11; @@ -886,6 +889,7 @@ void CppToolsPlugin::test_modelmanager_defines_per_project_pch() part1->includePaths = QStringList() << testDataDirectory.includeDir(false); ProjectPart::Ptr part2(new ProjectPart); + part2->projectFile = QLatin1String("project2.projectfile"); part2->files.append(ProjectFile(main2File, ProjectFile::CXXSource)); part2->files.append(ProjectFile(header, ProjectFile::CXXHeader)); part2->cxxVersion = ProjectPart::CXX11; -- GitLab From f5ec3f4237c0279ab5f9fc7ae4e4d36f884e1447 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@digia.com> Date: Tue, 7 Jan 2014 14:30:39 +0100 Subject: [PATCH 39/42] Squish: Make some variables local Change-Id: I1687ae59c6327616ee18f6120dca9d0d0ce40bcf Reviewed-by: Christian Stenger <christian.stenger@digia.com> --- tests/system/shared/build_utils.py | 11 ++++++----- tests/system/suite_editors/tst_qml_editor/test.py | 2 -- tests/system/suite_editors/tst_revert_changes/test.py | 1 - tests/system/suite_qtquick/tst_qml_outline/test.py | 2 +- 4 files changed, 7 insertions(+), 9 deletions(-) diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py index 5a2ff968cc7..c2755e710e5 100644 --- a/tests/system/shared/build_utils.py +++ b/tests/system/shared/build_utils.py @@ -35,10 +35,6 @@ installedSignalHandlers = {} overridenInstallLazySignalHandlers = False # flag to indicate whether a tasks file should be created when building ends with errors createTasksFileOnError = True -# currently used directory for tasks files -tasksFileDir = None -# counter for written tasks files -tasksFileCount = 0 # call this function to override installLazySignalHandler() def overrideInstallLazySignalHandler(): @@ -117,9 +113,14 @@ def dumpBuildIssues(listModel): range(Qt.UserRole, Qt.UserRole + 6))]) return issueDump +# counter for written tasks files +tasksFileCount = 0 + # helper method that writes a tasks file def createTasksFile(buildIssues): - global tasksFileDir, tasksFileCount + # currently used directory for tasks files + tasksFileDir = None + global tasksFileCount if tasksFileDir == None: tasksFileDir = os.getcwd() + "/tasks" tasksFileDir = os.path.abspath(tasksFileDir) diff --git a/tests/system/suite_editors/tst_qml_editor/test.py b/tests/system/suite_editors/tst_qml_editor/test.py index 2e48fbb8b79..c030ec25561 100644 --- a/tests/system/suite_editors/tst_qml_editor/test.py +++ b/tests/system/suite_editors/tst_qml_editor/test.py @@ -29,11 +29,9 @@ source("../../shared/qtcreator.py") -templateDir = None searchFinished = False def main(): - global templateDir sourceExample = os.path.abspath(sdkPath + "/Examples/4.7/declarative/keyinteraction/focus") proFile = "focus.pro" if not neededFilePresent(os.path.join(sourceExample, proFile)): diff --git a/tests/system/suite_editors/tst_revert_changes/test.py b/tests/system/suite_editors/tst_revert_changes/test.py index b08ec394a53..f2be87c6bc5 100644 --- a/tests/system/suite_editors/tst_revert_changes/test.py +++ b/tests/system/suite_editors/tst_revert_changes/test.py @@ -43,7 +43,6 @@ def init(): endShortCut = "<Ctrl+End>" def main(): - global cppEditorStr folder = prepareTemplate(originalSources) if folder == None: test.fatal("Could not prepare test files - leaving test") diff --git a/tests/system/suite_qtquick/tst_qml_outline/test.py b/tests/system/suite_qtquick/tst_qml_outline/test.py index 2580fcf6de8..f09f03394b0 100644 --- a/tests/system/suite_qtquick/tst_qml_outline/test.py +++ b/tests/system/suite_qtquick/tst_qml_outline/test.py @@ -75,7 +75,7 @@ def processChildren(model, startIndex, level): return children def testModify(): - global qmlEditor, outline + global qmlEditor if not openDocument("focus.QML.qml.focus\\.qml"): test.fatal("Failed to open file focus.qml") return -- GitLab From 1a7b8654e5cb2e1078aa6a185d6502ed18e6a06f Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Tue, 7 Jan 2014 15:19:09 +0100 Subject: [PATCH 40/42] Debugger: Fix importing plain dumpers with newer gdbs Change-Id: Id0441ed8bb4ca1a116157e033bd711ece0e2b2ed Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com> --- share/qtcreator/debugger/gdbbridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py index 4284a1fd31c..8308028a9a2 100644 --- a/share/qtcreator/debugger/gdbbridge.py +++ b/share/qtcreator/debugger/gdbbridge.py @@ -307,7 +307,7 @@ class PlainDumper: self.printer = printer def __call__(self, d, value): - printer = self.printer.gen_printer(value) + printer = self.printer.invoke(value) lister = getattr(printer, "children", None) children = [] if lister is None else list(lister()) d.putType(self.printer.name) -- GitLab From 839a383aa3495c54f970db030aa254f4d915a276 Mon Sep 17 00:00:00 2001 From: hjk <hjk121@nokiamail.com> Date: Tue, 7 Jan 2014 15:42:26 +0100 Subject: [PATCH 41/42] Debugger: Change default to use c++11 in manual tests Change-Id: Id995ee20b231dc4179eed0b03b139fdcb9ffb60a Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> --- tests/manual/debugger/simple/simple_test_app.pro | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/manual/debugger/simple/simple_test_app.pro b/tests/manual/debugger/simple/simple_test_app.pro index ffe5812f964..5bccc3b6ab4 100644 --- a/tests/manual/debugger/simple/simple_test_app.pro +++ b/tests/manual/debugger/simple/simple_test_app.pro @@ -37,10 +37,8 @@ maemo5 { INSTALLS += target } -#*g++* { -# DEFINES += USE_CXX11 -# QMAKE_CXXFLAGS += -std=c++0x -#} +CONFIG += c++11 +DEFINES += USE_CXX11 exists($$QMAKE_INCDIR_QT/QtCore/private/qobject_p.h):DEFINES += USE_PRIVATE exists(/usr/include/boost/optional.hpp): DEFINES += USE_BOOST -- GitLab From 746c5d886395f66d3f7af1461555a75300201db6 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@digia.com> Date: Tue, 7 Jan 2014 13:27:11 +0100 Subject: [PATCH 42/42] Incremented year in copyright info Change-Id: Ib5423fdd064e4546f848c0b640b0ed0514c26d3a Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Kai Koehne <kai.koehne@digia.com> --- README | 4 ++-- dist/copyright_template.txt | 2 +- .../meta/installscript.qs | 2 +- doc/addressbook-sdk.qdoc | 2 +- doc/api/coding-style.qdoc | 2 +- doc/api/creating-plugins.qdoc | 2 +- doc/api/external-tool-spec.qdoc | 2 +- doc/api/first-plugin.qdoc | 2 +- doc/api/getting-and-building.qdoc | 2 +- doc/api/plugin-lifecycle.qdoc | 2 +- doc/api/plugin-specifications.qdoc | 2 +- doc/api/pluginmanager.qdoc | 2 +- doc/api/qtcreator-api.qdoc | 2 +- doc/api/qtcreator-dev-wizards.qdoc | 2 +- doc/api/qtcreator-dev.qdoc | 2 +- doc/api/qtcreator-documentation.qdoc | 2 +- doc/api/qtcreator-ui-text.qdoc | 2 +- doc/config/qt-html-templates-online.qdocconf | 2 +- doc/config/qt-html-templates.qdocconf | 2 +- doc/examples/accelbubble/main.qml | 2 +- doc/examples/addressbook-sdk/part1/addressbook.cpp | 2 +- doc/examples/addressbook-sdk/part1/addressbook.h | 2 +- doc/examples/addressbook-sdk/part1/main.cpp | 2 +- doc/examples/addressbook-sdk/part2/addressbook.cpp | 2 +- doc/examples/addressbook-sdk/part2/addressbook.h | 2 +- doc/examples/addressbook-sdk/part2/main.cpp | 2 +- doc/examples/addressbook-sdk/part3/addressbook.cpp | 2 +- doc/examples/addressbook-sdk/part3/addressbook.h | 2 +- doc/examples/addressbook-sdk/part3/main.cpp | 2 +- doc/examples/addressbook-sdk/part4/addressbook.cpp | 2 +- doc/examples/addressbook-sdk/part4/addressbook.h | 2 +- doc/examples/addressbook-sdk/part4/main.cpp | 2 +- doc/examples/addressbook-sdk/part5/addressbook.cpp | 2 +- doc/examples/addressbook-sdk/part5/addressbook.h | 2 +- doc/examples/addressbook-sdk/part5/finddialog.cpp | 2 +- doc/examples/addressbook-sdk/part5/finddialog.h | 2 +- doc/examples/addressbook-sdk/part5/main.cpp | 2 +- doc/examples/addressbook-sdk/part6/addressbook.cpp | 2 +- doc/examples/addressbook-sdk/part6/addressbook.h | 2 +- doc/examples/addressbook-sdk/part6/finddialog.cpp | 2 +- doc/examples/addressbook-sdk/part6/finddialog.h | 2 +- doc/examples/addressbook-sdk/part6/main.cpp | 2 +- doc/examples/addressbook-sdk/part7/addressbook.cpp | 2 +- doc/examples/addressbook-sdk/part7/addressbook.h | 2 +- doc/examples/addressbook-sdk/part7/finddialog.cpp | 2 +- doc/examples/addressbook-sdk/part7/finddialog.h | 2 +- doc/examples/addressbook-sdk/part7/main.cpp | 2 +- doc/examples/batterystatus/main.cpp | 2 +- doc/examples/doc_src_plugins.qdoc | 2 +- doc/examples/textfinder/main.cpp | 2 +- doc/examples/textfinder/textfinder.cpp | 2 +- doc/examples/textfinder/textfinder.h | 2 +- doc/src/analyze/creator-analyze.qdoc | 2 +- doc/src/analyze/creator-valgrind-overview.qdoc | 2 +- doc/src/analyze/creator-valgrind.qdoc | 2 +- doc/src/analyze/qtquick-profiler.qdoc | 2 +- doc/src/android/androiddev.qdoc | 2 +- doc/src/android/creator-android-app-tutorial.qdoc | 2 +- doc/src/android/deploying-android.qdoc | 2 +- doc/src/baremetal/creator-baremetal-dev.qdoc | 2 +- doc/src/debugger/creator-debugger-example.qdoc | 2 +- doc/src/debugger/creator-debugger-setup.qdoc | 2 +- doc/src/debugger/creator-debugger.qdoc | 2 +- doc/src/debugger/qtquick-debugger-example.qdoc | 2 +- doc/src/debugger/qtquick-debugging.qdoc | 2 +- doc/src/editors/creator-coding-edit-mode.qdoc | 2 +- doc/src/editors/creator-coding.qdoc | 2 +- doc/src/editors/creator-diff-editor.qdoc | 2 +- doc/src/editors/creator-editors-options-text.qdoc | 2 +- doc/src/editors/creator-editors-options.qdoc | 2 +- doc/src/editors/creator-editors-writing-code.qdoc | 2 +- doc/src/editors/creator-editors.qdoc | 2 +- doc/src/editors/creator-finding.qdoc | 2 +- doc/src/editors/creator-mime-types.qdoc | 2 +- doc/src/howto/creator-cli.qdoc | 2 +- doc/src/howto/creator-external-tools.qdoc | 2 +- doc/src/howto/creator-help.qdoc | 2 +- doc/src/howto/creator-keyboard-shortcuts.qdoc | 2 +- doc/src/howto/creator-sessions.qdoc | 2 +- doc/src/howto/creator-task-lists.qdoc | 2 +- doc/src/howto/creator-tips.qdoc | 2 +- doc/src/howto/creator-ui.qdoc | 2 +- doc/src/howto/creator-vcs.qdoc | 2 +- doc/src/howto/qtcreator-faq.qdoc | 2 +- doc/src/ios/creator-ios-dev.qdoc | 2 +- doc/src/linux-mobile/creator-deployment-madde.qdoc | 2 +- doc/src/linux-mobile/linuxdev.qdoc | 2 +- doc/src/overview/creator-acknowledgements.qdoc | 2 +- doc/src/overview/creator-advanced.qdoc | 2 +- doc/src/overview/creator-configuring.qdoc | 2 +- doc/src/overview/creator-deployment-overview.qdoc | 2 +- doc/src/overview/creator-design-overview.qdoc | 2 +- doc/src/overview/creator-getting-started.qdoc | 2 +- doc/src/overview/creator-glossary.qdoc | 2 +- doc/src/overview/creator-help-overview.qdoc | 2 +- doc/src/overview/creator-issues.qdoc | 2 +- doc/src/overview/creator-mobile-targets.qdoc | 2 +- doc/src/overview/creator-overview.qdoc | 2 +- doc/src/overview/creator-supported-platforms.qdoc | 2 +- doc/src/overview/creator-tech-support.qdoc | 2 +- doc/src/overview/creator-testing.qdoc | 2 +- doc/src/overview/creator-tutorials.qdoc | 2 +- doc/src/overview/mobile-app-design.qdoc | 2 +- doc/src/projects/creator-projects-autotools.qdoc | 2 +- doc/src/projects/creator-projects-build-run-tutorial.qdoc | 2 +- doc/src/projects/creator-projects-building-running.qdoc | 2 +- doc/src/projects/creator-projects-building.qdoc | 2 +- doc/src/projects/creator-projects-builds-customizing.qdoc | 2 +- doc/src/projects/creator-projects-cmake.qdoc | 2 +- doc/src/projects/creator-projects-compilers.qdoc | 2 +- doc/src/projects/creator-projects-creating.qdoc | 2 +- doc/src/projects/creator-projects-custom-wizards.qdoc | 2 +- doc/src/projects/creator-projects-debuggers.qdoc | 2 +- doc/src/projects/creator-projects-generic.qdoc | 2 +- doc/src/projects/creator-projects-libraries.qdoc | 2 +- doc/src/projects/creator-projects-opening.qdoc | 2 +- doc/src/projects/creator-projects-other.qdoc | 2 +- doc/src/projects/creator-projects-overview.qdoc | 2 +- doc/src/projects/creator-projects-qbs.qdoc | 2 +- doc/src/projects/creator-projects-qt-versions.qdoc | 2 +- doc/src/projects/creator-projects-running.qdoc | 2 +- doc/src/projects/creator-projects-settings-build.qdoc | 2 +- doc/src/projects/creator-projects-settings-code-style.qdoc | 2 +- .../projects/creator-projects-settings-dependencies.qdoc | 2 +- doc/src/projects/creator-projects-settings-editor.qdoc | 2 +- doc/src/projects/creator-projects-settings-overview.qdoc | 2 +- doc/src/projects/creator-projects-settings-run.qdoc | 2 +- doc/src/projects/creator-projects-settings-sharing.qdoc | 2 +- doc/src/projects/creator-projects-targets.qdoc | 2 +- doc/src/qnx/creator-deployment-bb10.qdoc | 2 +- doc/src/qnx/creator-deployment-qnx.qdoc | 2 +- doc/src/qnx/creator-developing-bb10.qdoc | 2 +- doc/src/qnx/creator-developing-qnx.qdoc | 2 +- doc/src/qtcreator.qdoc | 2 +- doc/src/qtquick/qtquick-app-development.qdoc | 2 +- doc/src/qtquick/qtquick-app-tutorial.qdoc | 2 +- doc/src/qtquick/qtquick-buttons.qdoc | 2 +- doc/src/qtquick/qtquick-components.qdoc | 2 +- doc/src/qtquick/qtquick-creating.qdoc | 2 +- doc/src/qtquick/qtquick-designer.qdoc | 2 +- doc/src/qtquick/qtquick-exporting-qml.qdoc | 2 +- doc/src/qtquick/qtquick-modules-with-plugins.qdoc | 2 +- doc/src/qtquick/qtquick-screens.qdoc | 2 +- doc/src/qtquick/qtquick-toolbars.qdoc | 2 +- doc/src/widgets/qtdesigner-app-tutorial.qdoc | 2 +- doc/src/widgets/qtdesigner-overview.qdoc | 2 +- doc/src/widgets/qtdesigner-plugins.qdoc | 2 +- doc/templates/scripts/jquery.js | 4 ++-- doc/titlecase/to-title-case.js | 2 +- scripts/dependencyinfo.py | 2 +- scripts/deployqt.py | 2 +- scripts/packageIfw.py | 2 +- scripts/unixdeployqt.sh | 2 +- share/qtcreator/debugger/boosttypes.py | 2 +- share/qtcreator/debugger/creatortypes.py | 2 +- share/qtcreator/debugger/dumper.cpp | 2 +- share/qtcreator/debugger/dumper.h | 2 +- share/qtcreator/debugger/dumper.py | 2 +- share/qtcreator/debugger/dumper_p.h | 2 +- share/qtcreator/debugger/lldbbridge.py | 2 +- share/qtcreator/debugger/misctypes.py | 2 +- share/qtcreator/debugger/qttypes.py | 2 +- share/qtcreator/debugger/stdtypes.py | 2 +- share/qtcreator/debugger/test/main.cpp | 2 +- share/qtcreator/glsl/glsl_120.frag | 2 +- share/qtcreator/glsl/glsl_120.vert | 2 +- share/qtcreator/glsl/glsl_120_common.glsl | 2 +- share/qtcreator/glsl/glsl_es_100.frag | 2 +- share/qtcreator/glsl/glsl_es_100.vert | 2 +- share/qtcreator/glsl/glsl_es_100_common.glsl | 2 +- share/qtcreator/qml/qmldump/Info.plist.in | 2 +- share/qtcreator/qml/qmldump/main.cpp | 2 +- share/qtcreator/qml/qmldump/qmlstreamwriter.cpp | 2 +- share/qtcreator/qml/qmldump/qmlstreamwriter.h | 2 +- .../qml/qmlpuppet/commands/changeauxiliarycommand.cpp | 2 +- .../qml/qmlpuppet/commands/changeauxiliarycommand.h | 2 +- .../qml/qmlpuppet/commands/changebindingscommand.cpp | 2 +- .../qml/qmlpuppet/commands/changebindingscommand.h | 2 +- .../qml/qmlpuppet/commands/changefileurlcommand.cpp | 2 +- .../qtcreator/qml/qmlpuppet/commands/changefileurlcommand.h | 2 +- share/qtcreator/qml/qmlpuppet/commands/changeidscommand.cpp | 2 +- share/qtcreator/qml/qmlpuppet/commands/changeidscommand.h | 2 +- .../qml/qmlpuppet/commands/changenodesourcecommand.cpp | 2 +- .../qml/qmlpuppet/commands/changenodesourcecommand.h | 2 +- .../qtcreator/qml/qmlpuppet/commands/changestatecommand.cpp | 2 +- share/qtcreator/qml/qmlpuppet/commands/changestatecommand.h | 2 +- .../qml/qmlpuppet/commands/changevaluescommand.cpp | 2 +- .../qtcreator/qml/qmlpuppet/commands/changevaluescommand.h | 2 +- .../qml/qmlpuppet/commands/childrenchangedcommand.cpp | 2 +- .../qml/qmlpuppet/commands/childrenchangedcommand.h | 2 +- .../qtcreator/qml/qmlpuppet/commands/clearscenecommand.cpp | 2 +- share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.h | 2 +- .../qml/qmlpuppet/commands/completecomponentcommand.cpp | 2 +- .../qml/qmlpuppet/commands/completecomponentcommand.h | 2 +- .../qml/qmlpuppet/commands/componentcompletedcommand.cpp | 2 +- .../qml/qmlpuppet/commands/componentcompletedcommand.h | 2 +- .../qml/qmlpuppet/commands/createinstancescommand.cpp | 2 +- .../qml/qmlpuppet/commands/createinstancescommand.h | 2 +- .../qtcreator/qml/qmlpuppet/commands/createscenecommand.cpp | 2 +- share/qtcreator/qml/qmlpuppet/commands/createscenecommand.h | 2 +- .../qtcreator/qml/qmlpuppet/commands/debugoutputcommand.cpp | 2 +- share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.h | 2 +- share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.cpp | 2 +- share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.h | 2 +- .../qml/qmlpuppet/commands/informationchangedcommand.cpp | 2 +- .../qml/qmlpuppet/commands/informationchangedcommand.h | 2 +- .../qml/qmlpuppet/commands/pixmapchangedcommand.cpp | 2 +- .../qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.h | 2 +- .../qml/qmlpuppet/commands/removeinstancescommand.cpp | 2 +- .../qml/qmlpuppet/commands/removeinstancescommand.h | 2 +- .../qml/qmlpuppet/commands/removepropertiescommand.cpp | 2 +- .../qml/qmlpuppet/commands/removepropertiescommand.h | 2 +- .../qml/qmlpuppet/commands/removesharedmemorycommand.cpp | 2 +- .../qml/qmlpuppet/commands/removesharedmemorycommand.h | 2 +- .../qml/qmlpuppet/commands/reparentinstancescommand.cpp | 2 +- .../qml/qmlpuppet/commands/reparentinstancescommand.h | 2 +- .../qmlpuppet/commands/statepreviewimagechangedcommand.cpp | 2 +- .../qmlpuppet/commands/statepreviewimagechangedcommand.h | 2 +- .../qtcreator/qml/qmlpuppet/commands/synchronizecommand.cpp | 2 +- share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.h | 2 +- share/qtcreator/qml/qmlpuppet/commands/tokencommand.cpp | 2 +- share/qtcreator/qml/qmlpuppet/commands/tokencommand.h | 2 +- .../qml/qmlpuppet/commands/valueschangedcommand.cpp | 2 +- .../qtcreator/qml/qmlpuppet/commands/valueschangedcommand.h | 2 +- .../qml/qmlpuppet/container/addimportcontainer.cpp | 2 +- .../qtcreator/qml/qmlpuppet/container/addimportcontainer.h | 2 +- share/qtcreator/qml/qmlpuppet/container/idcontainer.cpp | 2 +- share/qtcreator/qml/qmlpuppet/container/idcontainer.h | 2 +- share/qtcreator/qml/qmlpuppet/container/imagecontainer.cpp | 2 +- share/qtcreator/qml/qmlpuppet/container/imagecontainer.h | 2 +- .../qml/qmlpuppet/container/informationcontainer.cpp | 2 +- .../qml/qmlpuppet/container/informationcontainer.h | 2 +- .../qtcreator/qml/qmlpuppet/container/instancecontainer.cpp | 2 +- share/qtcreator/qml/qmlpuppet/container/instancecontainer.h | 2 +- .../qml/qmlpuppet/container/propertyabstractcontainer.cpp | 2 +- .../qml/qmlpuppet/container/propertyabstractcontainer.h | 2 +- .../qml/qmlpuppet/container/propertybindingcontainer.cpp | 2 +- .../qml/qmlpuppet/container/propertybindingcontainer.h | 2 +- .../qml/qmlpuppet/container/propertyvaluecontainer.cpp | 2 +- .../qml/qmlpuppet/container/propertyvaluecontainer.h | 2 +- .../qtcreator/qml/qmlpuppet/container/reparentcontainer.cpp | 2 +- share/qtcreator/qml/qmlpuppet/container/reparentcontainer.h | 2 +- .../qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp | 2 +- .../qml/qmlpuppet/instances/nodeinstanceclientproxy.h | 2 +- share/qtcreator/qml/qmlpuppet/interfaces/commondefines.h | 2 +- .../qml/qmlpuppet/interfaces/nodeinstanceclientinterface.h | 2 +- .../qmlpuppet/interfaces/nodeinstanceserverinterface.cpp | 2 +- .../qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h | 2 +- share/qtcreator/qml/qmlpuppet/qml2puppet/Info.plist.in | 2 +- .../qml2puppet/instances/anchorchangesnodeinstance.cpp | 2 +- .../qml2puppet/instances/anchorchangesnodeinstance.h | 2 +- .../qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp | 2 +- .../qmlpuppet/qml2puppet/instances/behaviornodeinstance.h | 2 +- .../qml2puppet/instances/childrenchangeeventfilter.cpp | 2 +- .../qml2puppet/instances/childrenchangeeventfilter.h | 2 +- .../qml2puppet/instances/componentnodeinstance.cpp | 2 +- .../qmlpuppet/qml2puppet/instances/componentnodeinstance.h | 2 +- .../qmlpuppet/qml2puppet/instances/dummycontextobject.cpp | 2 +- .../qml/qmlpuppet/qml2puppet/instances/dummycontextobject.h | 2 +- .../qmlpuppet/qml2puppet/instances/dummynodeinstance.cpp | 2 +- .../qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.h | 2 +- .../qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp | 2 +- .../qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.h | 2 +- .../qml2puppet/instances/nodeinstancemetaobject.cpp | 2 +- .../qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.h | 2 +- .../qmlpuppet/qml2puppet/instances/nodeinstanceserver.cpp | 2 +- .../qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.h | 2 +- .../qml2puppet/instances/nodeinstancesignalspy.cpp | 2 +- .../qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.h | 2 +- .../qmlpuppet/qml2puppet/instances/objectnodeinstance.cpp | 2 +- .../qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.h | 2 +- .../qml2puppet/instances/positionernodeinstance.cpp | 2 +- .../qmlpuppet/qml2puppet/instances/positionernodeinstance.h | 2 +- .../qml2puppet/instances/qmlpropertychangesnodeinstance.cpp | 2 +- .../qml2puppet/instances/qmlpropertychangesnodeinstance.h | 2 +- .../qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.cpp | 2 +- .../qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.h | 2 +- .../qml2puppet/instances/qmltransitionnodeinstance.cpp | 2 +- .../qml2puppet/instances/qmltransitionnodeinstance.h | 2 +- .../instances/qt5informationnodeinstanceserver.cpp | 2 +- .../qml2puppet/instances/qt5informationnodeinstanceserver.h | 2 +- .../qml2puppet/instances/qt5nodeinstanceclientproxy.cpp | 2 +- .../qml2puppet/instances/qt5nodeinstanceclientproxy.h | 2 +- .../qml2puppet/instances/qt5nodeinstanceserver.cpp | 2 +- .../qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.h | 2 +- .../qml2puppet/instances/qt5previewnodeinstanceserver.cpp | 2 +- .../qml2puppet/instances/qt5previewnodeinstanceserver.h | 2 +- .../qml2puppet/instances/qt5rendernodeinstanceserver.cpp | 2 +- .../qml2puppet/instances/qt5rendernodeinstanceserver.h | 2 +- .../qml2puppet/instances/qt5testnodeinstanceserver.cpp | 2 +- .../qml2puppet/instances/qt5testnodeinstanceserver.h | 2 +- .../qml2puppet/instances/quickitemnodeinstance.cpp | 2 +- .../qmlpuppet/qml2puppet/instances/quickitemnodeinstance.h | 2 +- .../qml2puppet/instances/quickwindownodeinstance.cpp | 2 +- .../qml2puppet/instances/quickwindownodeinstance.h | 2 +- .../qmlpuppet/qml2puppet/instances/servernodeinstance.cpp | 2 +- .../qml/qmlpuppet/qml2puppet/instances/servernodeinstance.h | 2 +- share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppetmain.cpp | 2 +- share/qtcreator/qml/qmlpuppet/qmlpuppet/Info.plist.in | 2 +- .../qmlpuppet/instances/anchorchangesnodeinstance.cpp | 2 +- .../qmlpuppet/instances/anchorchangesnodeinstance.h | 2 +- .../qmlpuppet/qmlpuppet/instances/behaviornodeinstance.cpp | 2 +- .../qmlpuppet/qmlpuppet/instances/behaviornodeinstance.h | 2 +- .../qmlpuppet/instances/childrenchangeeventfilter.cpp | 2 +- .../qmlpuppet/instances/childrenchangeeventfilter.h | 2 +- .../qmlpuppet/qmlpuppet/instances/componentnodeinstance.cpp | 2 +- .../qmlpuppet/qmlpuppet/instances/componentnodeinstance.h | 2 +- .../qmlpuppet/qmlpuppet/instances/dummycontextobject.cpp | 2 +- .../qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.h | 2 +- .../qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.cpp | 2 +- .../qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.h | 2 +- .../qmlpuppet/instances/graphicsobjectnodeinstance.cpp | 2 +- .../qmlpuppet/instances/graphicsobjectnodeinstance.h | 2 +- .../qmlpuppet/instances/nodeinstancemetaobject.cpp | 2 +- .../qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.h | 2 +- .../qmlpuppet/qmlpuppet/instances/nodeinstanceserver.cpp | 2 +- .../qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.h | 2 +- .../qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.cpp | 2 +- .../qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.h | 2 +- .../qmlpuppet/qmlpuppet/instances/objectnodeinstance.cpp | 2 +- .../qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.h | 2 +- .../qmlpuppet/instances/positionernodeinstance.cpp | 2 +- .../qmlpuppet/qmlpuppet/instances/positionernodeinstance.h | 2 +- .../qmlpuppet/instances/qmlgraphicsitemnodeinstance.cpp | 2 +- .../qmlpuppet/instances/qmlgraphicsitemnodeinstance.h | 2 +- .../qmlpuppet/instances/qmlpropertychangesnodeinstance.cpp | 2 +- .../qmlpuppet/instances/qmlpropertychangesnodeinstance.h | 2 +- .../qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.cpp | 2 +- .../qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.h | 2 +- .../qmlpuppet/instances/qmltransitionnodeinstance.cpp | 2 +- .../qmlpuppet/instances/qmltransitionnodeinstance.h | 2 +- .../instances/qt4informationnodeinstanceserver.cpp | 2 +- .../qmlpuppet/instances/qt4informationnodeinstanceserver.h | 2 +- .../qmlpuppet/instances/qt4nodeinstanceclientproxy.cpp | 2 +- .../qmlpuppet/instances/qt4nodeinstanceclientproxy.h | 2 +- .../qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.cpp | 2 +- .../qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.h | 2 +- .../qmlpuppet/instances/qt4previewnodeinstanceserver.cpp | 2 +- .../qmlpuppet/instances/qt4previewnodeinstanceserver.h | 2 +- .../qmlpuppet/instances/qt4rendernodeinstanceserver.cpp | 2 +- .../qmlpuppet/instances/qt4rendernodeinstanceserver.h | 2 +- .../qmlpuppet/qmlpuppet/instances/servernodeinstance.cpp | 2 +- .../qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.h | 2 +- share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppetmain.cpp | 2 +- .../HelperWidgets/AligmentHorizontalButtons.qml | 2 +- .../HelperWidgets/AligmentVerticalButtons.qml | 2 +- .../HelperWidgets/AnchorButtons.qml | 2 +- .../HelperWidgets/BoolButtonRowButton.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/Button.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/ButtonRow.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/ButtonRow2.qml | 2 +- .../HelperWidgets/ButtonRowButton.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/CheckBox.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/ColorButton.qml | 2 +- .../HelperWidgets/ColorCheckButton.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/ColorEditor.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/ColorLogic.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/ComboBox.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/Constants.js | 2 +- .../HelperWidgets/CustomComboBoxStyle.qml | 2 +- .../HelperWidgets/CustomSpinBoxStyle.qml | 2 +- .../HelperWidgets/ExpandingSpacer.qml | 2 +- .../HelperWidgets/ExtendedFunctionButton.qml | 2 +- .../HelperWidgets/FlickableSection.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/FontComboBox.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/FontSection.qml | 2 +- .../HelperWidgets/FontStyleButtons.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/GradientLine.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/HueSlider.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/IconLabel.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/Label.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/LineEdit.qml | 2 +- .../HelperWidgets/OriginControl.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/RoundedPanel.qml | 2 +- .../HelperWidgets/SecondColumnLayout.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/Section.qml | 2 +- .../HelperWidgets/SectionLayout.qml | 2 +- .../HelperWidgets/SliderSpinBox.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/SpinBox.qml | 2 +- .../HelperWidgets/StandardTextSection.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/Tab.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/TabView.qml | 2 +- .../propertyEditorQmlSources/HelperWidgets/UrlChooser.qml | 2 +- .../propertyEditorQmlSources/QtQuick/AdvancedSection.qml | 2 +- .../QtQuick/BorderImageSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/FlowSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/GeometrySection.qml | 2 +- .../propertyEditorQmlSources/QtQuick/GridSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/ImageSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/ItemPane.qml | 2 +- .../propertyEditorQmlSources/QtQuick/LayoutSection.qml | 2 +- .../propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/QtObjectPane.qml | 2 +- .../propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/RowSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/TargetComboBox.qml | 2 +- .../propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/TextInputSection.qml | 2 +- .../propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/TextSpecifics.qml | 2 +- .../QtQuick/Window/WindowSpecifics.qml | 2 +- .../propertyEditorQmlSources/QtQuick/emptyPane.qml | 2 +- .../qtcreator/templates/wizards/bb-bardescriptor/wizard.xml | 2 +- .../qtcreator/templates/wizards/bb-cascades-app/wizard.xml | 2 +- .../templates/wizards/bb-qt5-bardescriptor/wizard.xml | 2 +- share/qtcreator/templates/wizards/codesnippet/wizard.xml | 2 +- .../templates/wizards/helloworld/wizard_sample.xml | 2 +- .../qtcreator/templates/wizards/listmodel/wizard_sample.xml | 2 +- .../qtcreator/templates/wizards/plaincapp/cmake/wizard.xml | 2 +- share/qtcreator/templates/wizards/plaincapp/qbs/wizard.xml | 2 +- .../qtcreator/templates/wizards/plaincapp/qmake/wizard.xml | 2 +- .../templates/wizards/plaincppapp/cmake/wizard.xml | 2 +- .../qtcreator/templates/wizards/plaincppapp/qbs/wizard.xml | 2 +- .../templates/wizards/plaincppapp/qmake/wizard.xml | 2 +- .../qtcreator/templates/wizards/qtcreatorplugin/wizard.xml | 2 +- .../templates/wizards/qtquick1-extension/wizard.xml | 2 +- .../templates/wizards/qtquick2-extension/wizard.xml | 2 +- .../templates/wizards/scriptgeneratedproject/generate.pl | 2 +- .../wizards/scriptgeneratedproject/wizard_sample.xml | 2 +- share/qtcreator/translations/check-ts.pl | 2 +- share/qtcreator/welcomescreen/develop.qml | 2 +- share/qtcreator/welcomescreen/dummydata/examplesModel.qml | 2 +- share/qtcreator/welcomescreen/dummydata/pagesModel.qml | 2 +- share/qtcreator/welcomescreen/dummydata/projectList.qml | 2 +- share/qtcreator/welcomescreen/dummydata/sessionList.qml | 2 +- share/qtcreator/welcomescreen/dummydata/tutorialsModel.qml | 2 +- share/qtcreator/welcomescreen/examples.qml | 2 +- share/qtcreator/welcomescreen/tutorials.qml | 2 +- share/qtcreator/welcomescreen/welcomescreen.qml | 2 +- share/qtcreator/welcomescreen/widgets/Button.qml | 2 +- share/qtcreator/welcomescreen/widgets/ComboBox.qml | 2 +- share/qtcreator/welcomescreen/widgets/CustomColors.qml | 2 +- share/qtcreator/welcomescreen/widgets/CustomFonts.qml | 2 +- share/qtcreator/welcomescreen/widgets/CustomTab.qml | 2 +- .../qtcreator/welcomescreen/widgets/CustomizedGridView.qml | 2 +- share/qtcreator/welcomescreen/widgets/Delegate.qml | 2 +- share/qtcreator/welcomescreen/widgets/LeftSideBar.qml | 2 +- share/qtcreator/welcomescreen/widgets/LinkedText.qml | 2 +- share/qtcreator/welcomescreen/widgets/LinksBar.qml | 2 +- share/qtcreator/welcomescreen/widgets/Logo.qml | 2 +- share/qtcreator/welcomescreen/widgets/NativeText.qml | 2 +- share/qtcreator/welcomescreen/widgets/PageCaption.qml | 2 +- share/qtcreator/welcomescreen/widgets/PageLoader.qml | 2 +- share/qtcreator/welcomescreen/widgets/ProjectItem.qml | 2 +- share/qtcreator/welcomescreen/widgets/RecentProjects.qml | 2 +- share/qtcreator/welcomescreen/widgets/SearchBar.qml | 2 +- share/qtcreator/welcomescreen/widgets/SessionItem.qml | 2 +- share/qtcreator/welcomescreen/widgets/Sessions.qml | 2 +- share/qtcreator/welcomescreen/widgets/SideBar.qml | 2 +- share/qtcreator/welcomescreen/widgets/Tabs.qml | 2 +- share/qtcreator/welcomescreen/widgets/ToolTip.qml | 2 +- .../widgets/dummydata/context/ExampleDelegate.qml | 2 +- .../widgets/dummydata/context/ExampleGridView.qml | 2 +- .../welcomescreen/widgets/dummydata/examplesModel.qml | 2 +- .../welcomescreen/widgets/dummydata/mockupTags.qml | 2 +- .../welcomescreen/widgets/dummydata/pagesModel.qml | 2 +- .../qtcreator/welcomescreen/widgets/dummydata/tabsModel.qml | 2 +- src/app/Info.plist.in | 2 +- src/app/app_version.h.in | 4 ++-- src/app/main.cpp | 2 +- src/libs/3rdparty/cplusplus/cppassert.h | 2 +- src/libs/aggregation/aggregate.cpp | 2 +- src/libs/aggregation/aggregate.h | 2 +- src/libs/aggregation/aggregation_global.h | 2 +- src/libs/aggregation/examples/text/main.cpp | 2 +- src/libs/aggregation/examples/text/main.h | 2 +- src/libs/aggregation/examples/text/myinterfaces.h | 2 +- src/libs/cplusplus/ASTParent.cpp | 2 +- src/libs/cplusplus/ASTParent.h | 2 +- src/libs/cplusplus/ASTPath.cpp | 2 +- src/libs/cplusplus/ASTPath.h | 2 +- src/libs/cplusplus/BackwardsScanner.cpp | 2 +- src/libs/cplusplus/BackwardsScanner.h | 2 +- src/libs/cplusplus/CppDocument.cpp | 2 +- src/libs/cplusplus/CppDocument.h | 2 +- src/libs/cplusplus/CppRewriter.cpp | 2 +- src/libs/cplusplus/CppRewriter.h | 2 +- src/libs/cplusplus/DependencyTable.cpp | 2 +- src/libs/cplusplus/DependencyTable.h | 2 +- src/libs/cplusplus/DeprecatedGenTemplateInstance.cpp | 2 +- src/libs/cplusplus/DeprecatedGenTemplateInstance.h | 2 +- src/libs/cplusplus/Dumpers.cpp | 2 +- src/libs/cplusplus/Dumpers.h | 2 +- src/libs/cplusplus/ExpressionUnderCursor.cpp | 2 +- src/libs/cplusplus/ExpressionUnderCursor.h | 2 +- src/libs/cplusplus/FastPreprocessor.cpp | 2 +- src/libs/cplusplus/FastPreprocessor.h | 2 +- src/libs/cplusplus/FindUsages.cpp | 2 +- src/libs/cplusplus/FindUsages.h | 2 +- src/libs/cplusplus/Icons.cpp | 2 +- src/libs/cplusplus/Icons.h | 2 +- src/libs/cplusplus/LookupContext.cpp | 2 +- src/libs/cplusplus/LookupContext.h | 2 +- src/libs/cplusplus/LookupItem.cpp | 2 +- src/libs/cplusplus/LookupItem.h | 2 +- src/libs/cplusplus/Macro.cpp | 2 +- src/libs/cplusplus/Macro.h | 2 +- src/libs/cplusplus/MatchingText.cpp | 2 +- src/libs/cplusplus/MatchingText.h | 2 +- src/libs/cplusplus/NamePrettyPrinter.cpp | 2 +- src/libs/cplusplus/NamePrettyPrinter.h | 2 +- src/libs/cplusplus/Overview.cpp | 2 +- src/libs/cplusplus/Overview.h | 2 +- src/libs/cplusplus/OverviewModel.cpp | 2 +- src/libs/cplusplus/OverviewModel.h | 2 +- src/libs/cplusplus/PPToken.cpp | 2 +- src/libs/cplusplus/PPToken.h | 2 +- src/libs/cplusplus/PreprocessorClient.cpp | 2 +- src/libs/cplusplus/PreprocessorClient.h | 2 +- src/libs/cplusplus/PreprocessorEnvironment.cpp | 2 +- src/libs/cplusplus/PreprocessorEnvironment.h | 2 +- src/libs/cplusplus/ResolveExpression.cpp | 2 +- src/libs/cplusplus/ResolveExpression.h | 2 +- src/libs/cplusplus/SimpleLexer.cpp | 2 +- src/libs/cplusplus/SimpleLexer.h | 2 +- src/libs/cplusplus/SnapshotSymbolVisitor.cpp | 2 +- src/libs/cplusplus/SnapshotSymbolVisitor.h | 2 +- src/libs/cplusplus/SymbolNameVisitor.cpp | 2 +- src/libs/cplusplus/SymbolNameVisitor.h | 2 +- src/libs/cplusplus/TypeOfExpression.cpp | 2 +- src/libs/cplusplus/TypeOfExpression.h | 2 +- src/libs/cplusplus/TypePrettyPrinter.cpp | 2 +- src/libs/cplusplus/TypePrettyPrinter.h | 2 +- src/libs/cplusplus/findcdbbreakpoint.cpp | 2 +- src/libs/cplusplus/findcdbbreakpoint.h | 2 +- src/libs/cplusplus/pp-cctype.h | 2 +- src/libs/cplusplus/pp-engine.cpp | 2 +- src/libs/cplusplus/pp-engine.h | 2 +- src/libs/cplusplus/pp-scanner.cpp | 2 +- src/libs/cplusplus/pp-scanner.h | 2 +- src/libs/cplusplus/pp.h | 2 +- src/libs/extensionsystem/extensionsystem_global.h | 2 +- src/libs/extensionsystem/invoker.cpp | 2 +- src/libs/extensionsystem/invoker.h | 2 +- src/libs/extensionsystem/iplugin.cpp | 2 +- src/libs/extensionsystem/iplugin.h | 2 +- src/libs/extensionsystem/iplugin_p.h | 2 +- src/libs/extensionsystem/optionsparser.cpp | 2 +- src/libs/extensionsystem/optionsparser.h | 2 +- src/libs/extensionsystem/plugincollection.cpp | 2 +- src/libs/extensionsystem/plugincollection.h | 2 +- src/libs/extensionsystem/plugindetailsview.cpp | 2 +- src/libs/extensionsystem/plugindetailsview.h | 2 +- src/libs/extensionsystem/pluginerroroverview.cpp | 2 +- src/libs/extensionsystem/pluginerroroverview.h | 2 +- src/libs/extensionsystem/pluginerrorview.cpp | 2 +- src/libs/extensionsystem/pluginerrorview.h | 2 +- src/libs/extensionsystem/pluginmanager.cpp | 2 +- src/libs/extensionsystem/pluginmanager.h | 2 +- src/libs/extensionsystem/pluginmanager_p.h | 2 +- src/libs/extensionsystem/pluginspec.cpp | 2 +- src/libs/extensionsystem/pluginspec.h | 2 +- src/libs/extensionsystem/pluginspec_p.h | 2 +- src/libs/extensionsystem/pluginview.cpp | 2 +- src/libs/extensionsystem/pluginview.h | 2 +- .../extensionsystem/test/manual/pluginview/plugindialog.cpp | 2 +- .../extensionsystem/test/manual/pluginview/plugindialog.h | 2 +- .../test/manual/pluginview/plugins/plugin1/plugin1.cpp | 2 +- .../test/manual/pluginview/plugins/plugin1/plugin1.h | 2 +- .../test/manual/pluginview/plugins/plugin2/plugin2.cpp | 2 +- .../test/manual/pluginview/plugins/plugin2/plugin2.h | 2 +- .../test/manual/pluginview/plugins/plugin3/plugin3.cpp | 2 +- .../test/manual/pluginview/plugins/plugin3/plugin3.h | 2 +- src/libs/glsl/glsl.g | 6 +++--- src/libs/glsl/glsl.h | 2 +- src/libs/glsl/glslast.cpp | 2 +- src/libs/glsl/glslast.h | 2 +- src/libs/glsl/glslastdump.cpp | 2 +- src/libs/glsl/glslastdump.h | 2 +- src/libs/glsl/glslastvisitor.cpp | 2 +- src/libs/glsl/glslastvisitor.h | 2 +- src/libs/glsl/glslengine.cpp | 2 +- src/libs/glsl/glslengine.h | 2 +- src/libs/glsl/glslkeywords.cpp | 2 +- src/libs/glsl/glsllexer.cpp | 2 +- src/libs/glsl/glsllexer.h | 2 +- src/libs/glsl/glslmemorypool.cpp | 2 +- src/libs/glsl/glslmemorypool.h | 2 +- src/libs/glsl/glslparser.cpp | 2 +- src/libs/glsl/glslparser.h | 2 +- src/libs/glsl/glslparsertable.cpp | 2 +- src/libs/glsl/glslparsertable_p.h | 2 +- src/libs/glsl/glslsemantic.cpp | 2 +- src/libs/glsl/glslsemantic.h | 2 +- src/libs/glsl/glslsymbol.cpp | 2 +- src/libs/glsl/glslsymbol.h | 2 +- src/libs/glsl/glslsymbols.cpp | 2 +- src/libs/glsl/glslsymbols.h | 2 +- src/libs/glsl/glsltype.cpp | 2 +- src/libs/glsl/glsltype.h | 2 +- src/libs/glsl/glsltypes.cpp | 2 +- src/libs/glsl/glsltypes.h | 2 +- src/libs/languageutils/componentversion.cpp | 2 +- src/libs/languageutils/componentversion.h | 2 +- src/libs/languageutils/fakemetaobject.cpp | 2 +- src/libs/languageutils/fakemetaobject.h | 2 +- src/libs/languageutils/languageutils_global.h | 2 +- src/libs/qmldebug/baseenginedebugclient.cpp | 2 +- src/libs/qmldebug/baseenginedebugclient.h | 2 +- src/libs/qmldebug/basetoolsclient.cpp | 2 +- src/libs/qmldebug/basetoolsclient.h | 2 +- src/libs/qmldebug/declarativeenginedebugclient.cpp | 2 +- src/libs/qmldebug/declarativeenginedebugclient.h | 2 +- src/libs/qmldebug/declarativeenginedebugclientv2.h | 2 +- src/libs/qmldebug/declarativetoolsclient.cpp | 2 +- src/libs/qmldebug/declarativetoolsclient.h | 2 +- src/libs/qmldebug/qdebugmessageclient.cpp | 2 +- src/libs/qmldebug/qdebugmessageclient.h | 2 +- src/libs/qmldebug/qmldebug_global.h | 2 +- src/libs/qmldebug/qmldebugclient.cpp | 2 +- src/libs/qmldebug/qmldebugclient.h | 2 +- src/libs/qmldebug/qmldebugconstants.h | 2 +- src/libs/qmldebug/qmlenginedebugclient.h | 2 +- src/libs/qmldebug/qmloutputparser.cpp | 2 +- src/libs/qmldebug/qmloutputparser.h | 2 +- src/libs/qmldebug/qmlprofilereventlocation.h | 2 +- src/libs/qmldebug/qmlprofilereventtypes.h | 2 +- src/libs/qmldebug/qmlprofilertraceclient.cpp | 2 +- src/libs/qmldebug/qmlprofilertraceclient.h | 2 +- src/libs/qmldebug/qmltoolsclient.cpp | 2 +- src/libs/qmldebug/qmltoolsclient.h | 2 +- src/libs/qmldebug/qpacketprotocol.cpp | 2 +- src/libs/qmldebug/qpacketprotocol.h | 2 +- src/libs/qmldebug/qv8profilerclient.cpp | 2 +- src/libs/qmldebug/qv8profilerclient.h | 2 +- src/libs/qmleditorwidgets/colorbox.cpp | 2 +- src/libs/qmleditorwidgets/colorbox.h | 2 +- src/libs/qmleditorwidgets/colorbutton.cpp | 2 +- src/libs/qmleditorwidgets/colorbutton.h | 2 +- src/libs/qmleditorwidgets/contextpanetextwidget.cpp | 2 +- src/libs/qmleditorwidgets/contextpanetextwidget.h | 2 +- src/libs/qmleditorwidgets/contextpanewidget.cpp | 2 +- src/libs/qmleditorwidgets/contextpanewidget.h | 2 +- src/libs/qmleditorwidgets/contextpanewidgetimage.cpp | 2 +- src/libs/qmleditorwidgets/contextpanewidgetimage.h | 2 +- src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp | 2 +- src/libs/qmleditorwidgets/contextpanewidgetrectangle.h | 2 +- src/libs/qmleditorwidgets/customcolordialog.cpp | 2 +- src/libs/qmleditorwidgets/customcolordialog.h | 2 +- src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp | 2 +- src/libs/qmleditorwidgets/easingpane/easingcontextpane.h | 2 +- src/libs/qmleditorwidgets/easingpane/easinggraph.cpp | 2 +- src/libs/qmleditorwidgets/easingpane/easinggraph.h | 2 +- src/libs/qmleditorwidgets/filewidget.cpp | 2 +- src/libs/qmleditorwidgets/filewidget.h | 2 +- src/libs/qmleditorwidgets/fontsizespinbox.cpp | 2 +- src/libs/qmleditorwidgets/fontsizespinbox.h | 2 +- src/libs/qmleditorwidgets/gradientline.cpp | 2 +- src/libs/qmleditorwidgets/gradientline.h | 2 +- src/libs/qmleditorwidgets/huecontrol.cpp | 2 +- src/libs/qmleditorwidgets/huecontrol.h | 2 +- src/libs/qmleditorwidgets/qmleditorwidgets_global.h | 2 +- src/libs/qmljs/consoleitem.cpp | 2 +- src/libs/qmljs/consoleitem.h | 2 +- src/libs/qmljs/consolemanagerinterface.cpp | 2 +- src/libs/qmljs/consolemanagerinterface.h | 2 +- src/libs/qmljs/iscriptevaluator.h | 2 +- src/libs/qmljs/jsoncheck.cpp | 2 +- src/libs/qmljs/jsoncheck.h | 2 +- src/libs/qmljs/parser/qmldirparser.cpp | 2 +- src/libs/qmljs/parser/qmldirparser_p.h | 2 +- src/libs/qmljs/parser/qmlerror.cpp | 2 +- src/libs/qmljs/parser/qmlerror.h | 2 +- src/libs/qmljs/parser/qmljs.g | 6 +++--- src/libs/qmljs/parser/qmljsast.cpp | 2 +- src/libs/qmljs/parser/qmljsast_p.h | 2 +- src/libs/qmljs/parser/qmljsastfwd_p.h | 2 +- src/libs/qmljs/parser/qmljsastvisitor.cpp | 2 +- src/libs/qmljs/parser/qmljsastvisitor_p.h | 2 +- src/libs/qmljs/parser/qmljsengine_p.cpp | 2 +- src/libs/qmljs/parser/qmljsengine_p.h | 2 +- src/libs/qmljs/parser/qmljsglobal_p.h | 2 +- src/libs/qmljs/parser/qmljsgrammar.cpp | 2 +- src/libs/qmljs/parser/qmljsgrammar_p.h | 2 +- src/libs/qmljs/parser/qmljskeywords_p.h | 2 +- src/libs/qmljs/parser/qmljslexer.cpp | 2 +- src/libs/qmljs/parser/qmljslexer_p.h | 2 +- src/libs/qmljs/parser/qmljsmemorypool_p.h | 2 +- src/libs/qmljs/parser/qmljsparser.cpp | 2 +- src/libs/qmljs/parser/qmljsparser_p.h | 2 +- src/libs/qmljs/persistenttrie.cpp | 2 +- src/libs/qmljs/persistenttrie.h | 2 +- src/libs/qmljs/qmljs_global.h | 2 +- src/libs/qmljs/qmljsbind.cpp | 2 +- src/libs/qmljs/qmljsbind.h | 2 +- src/libs/qmljs/qmljsbundle.cpp | 2 +- src/libs/qmljs/qmljsbundle.h | 2 +- src/libs/qmljs/qmljscheck.cpp | 2 +- src/libs/qmljs/qmljscheck.h | 2 +- src/libs/qmljs/qmljscodeformatter.cpp | 2 +- src/libs/qmljs/qmljscodeformatter.h | 2 +- src/libs/qmljs/qmljscompletioncontextfinder.cpp | 2 +- src/libs/qmljs/qmljscompletioncontextfinder.h | 2 +- src/libs/qmljs/qmljsconstants.h | 2 +- src/libs/qmljs/qmljscontext.cpp | 2 +- src/libs/qmljs/qmljscontext.h | 2 +- src/libs/qmljs/qmljsdelta.cpp | 2 +- src/libs/qmljs/qmljsdelta.h | 2 +- src/libs/qmljs/qmljsdocument.cpp | 2 +- src/libs/qmljs/qmljsdocument.h | 2 +- src/libs/qmljs/qmljsevaluate.cpp | 2 +- src/libs/qmljs/qmljsevaluate.h | 2 +- src/libs/qmljs/qmljsicons.cpp | 2 +- src/libs/qmljs/qmljsicons.h | 2 +- src/libs/qmljs/qmljsicontextpane.h | 2 +- src/libs/qmljs/qmljsimportdependencies.cpp | 2 +- src/libs/qmljs/qmljsimportdependencies.h | 2 +- src/libs/qmljs/qmljsindenter.cpp | 2 +- src/libs/qmljs/qmljsindenter.h | 2 +- src/libs/qmljs/qmljsinterpreter.cpp | 2 +- src/libs/qmljs/qmljsinterpreter.h | 2 +- src/libs/qmljs/qmljslineinfo.cpp | 2 +- src/libs/qmljs/qmljslineinfo.h | 2 +- src/libs/qmljs/qmljslink.cpp | 2 +- src/libs/qmljs/qmljslink.h | 2 +- src/libs/qmljs/qmljsmodelmanagerinterface.cpp | 2 +- src/libs/qmljs/qmljsmodelmanagerinterface.h | 2 +- src/libs/qmljs/qmljspropertyreader.cpp | 2 +- src/libs/qmljs/qmljspropertyreader.h | 2 +- src/libs/qmljs/qmljsqrcparser.cpp | 2 +- src/libs/qmljs/qmljsqrcparser.h | 2 +- src/libs/qmljs/qmljsreformatter.cpp | 2 +- src/libs/qmljs/qmljsreformatter.h | 2 +- src/libs/qmljs/qmljsrewriter.cpp | 2 +- src/libs/qmljs/qmljsrewriter.h | 2 +- src/libs/qmljs/qmljsscanner.cpp | 2 +- src/libs/qmljs/qmljsscanner.h | 2 +- src/libs/qmljs/qmljsscopeastpath.cpp | 2 +- src/libs/qmljs/qmljsscopeastpath.h | 2 +- src/libs/qmljs/qmljsscopebuilder.cpp | 2 +- src/libs/qmljs/qmljsscopebuilder.h | 2 +- src/libs/qmljs/qmljsscopechain.cpp | 2 +- src/libs/qmljs/qmljsscopechain.h | 2 +- src/libs/qmljs/qmljssimplereader.cpp | 2 +- src/libs/qmljs/qmljssimplereader.h | 2 +- src/libs/qmljs/qmljsstaticanalysismessage.cpp | 2 +- src/libs/qmljs/qmljsstaticanalysismessage.h | 2 +- src/libs/qmljs/qmljstypedescriptionreader.cpp | 2 +- src/libs/qmljs/qmljstypedescriptionreader.h | 2 +- src/libs/qmljs/qmljsutils.cpp | 2 +- src/libs/qmljs/qmljsutils.h | 2 +- src/libs/qmljs/qmljsvalueowner.cpp | 2 +- src/libs/qmljs/qmljsvalueowner.h | 2 +- src/libs/qmljs/qmljsviewercontext.cpp | 2 +- src/libs/qmljs/qmljsviewercontext.h | 2 +- src/libs/qtcreatorcdbext/base64.cpp | 2 +- src/libs/qtcreatorcdbext/base64.h | 2 +- src/libs/qtcreatorcdbext/common.cpp | 2 +- src/libs/qtcreatorcdbext/common.h | 2 +- src/libs/qtcreatorcdbext/containers.cpp | 2 +- src/libs/qtcreatorcdbext/containers.h | 2 +- src/libs/qtcreatorcdbext/eventcallback.cpp | 2 +- src/libs/qtcreatorcdbext/eventcallback.h | 2 +- src/libs/qtcreatorcdbext/extensioncontext.cpp | 2 +- src/libs/qtcreatorcdbext/extensioncontext.h | 2 +- src/libs/qtcreatorcdbext/gdbmihelpers.cpp | 2 +- src/libs/qtcreatorcdbext/gdbmihelpers.h | 2 +- src/libs/qtcreatorcdbext/iinterfacepointer.h | 2 +- src/libs/qtcreatorcdbext/knowntype.h | 2 +- src/libs/qtcreatorcdbext/outputcallback.cpp | 2 +- src/libs/qtcreatorcdbext/outputcallback.h | 2 +- src/libs/qtcreatorcdbext/qtcreatorcdbextension.cpp | 2 +- src/libs/qtcreatorcdbext/stringutils.cpp | 2 +- src/libs/qtcreatorcdbext/stringutils.h | 2 +- src/libs/qtcreatorcdbext/symbolgroup.cpp | 2 +- src/libs/qtcreatorcdbext/symbolgroup.h | 2 +- src/libs/qtcreatorcdbext/symbolgroupnode.cpp | 2 +- src/libs/qtcreatorcdbext/symbolgroupnode.h | 2 +- src/libs/qtcreatorcdbext/symbolgroupvalue.cpp | 2 +- src/libs/qtcreatorcdbext/symbolgroupvalue.h | 2 +- src/libs/ssh/sftpchannel.cpp | 2 +- src/libs/ssh/sftpchannel.h | 2 +- src/libs/ssh/sftpchannel_p.h | 2 +- src/libs/ssh/sftpdefs.cpp | 2 +- src/libs/ssh/sftpdefs.h | 2 +- src/libs/ssh/sftpfilesystemmodel.cpp | 2 +- src/libs/ssh/sftpfilesystemmodel.h | 2 +- src/libs/ssh/sftpincomingpacket.cpp | 2 +- src/libs/ssh/sftpincomingpacket_p.h | 2 +- src/libs/ssh/sftpoperation.cpp | 2 +- src/libs/ssh/sftpoperation_p.h | 2 +- src/libs/ssh/sftpoutgoingpacket.cpp | 2 +- src/libs/ssh/sftpoutgoingpacket_p.h | 2 +- src/libs/ssh/sftppacket.cpp | 2 +- src/libs/ssh/sftppacket_p.h | 2 +- src/libs/ssh/ssh_global.h | 2 +- src/libs/ssh/sshbotanconversions_p.h | 2 +- src/libs/ssh/sshcapabilities.cpp | 2 +- src/libs/ssh/sshcapabilities_p.h | 2 +- src/libs/ssh/sshchannel.cpp | 2 +- src/libs/ssh/sshchannel_p.h | 2 +- src/libs/ssh/sshchannelmanager.cpp | 2 +- src/libs/ssh/sshchannelmanager_p.h | 2 +- src/libs/ssh/sshconnection.cpp | 2 +- src/libs/ssh/sshconnection.h | 2 +- src/libs/ssh/sshconnection_p.h | 2 +- src/libs/ssh/sshconnectionmanager.cpp | 2 +- src/libs/ssh/sshconnectionmanager.h | 2 +- src/libs/ssh/sshcryptofacility.cpp | 2 +- src/libs/ssh/sshcryptofacility_p.h | 2 +- src/libs/ssh/sshdirecttcpiptunnel.cpp | 2 +- src/libs/ssh/sshdirecttcpiptunnel.h | 2 +- src/libs/ssh/sshdirecttcpiptunnel_p.h | 2 +- src/libs/ssh/ssherrors.h | 2 +- src/libs/ssh/sshexception_p.h | 2 +- src/libs/ssh/sshincomingpacket.cpp | 2 +- src/libs/ssh/sshincomingpacket_p.h | 2 +- src/libs/ssh/sshinit.cpp | 2 +- src/libs/ssh/sshinit_p.h | 2 +- src/libs/ssh/sshkeycreationdialog.cpp | 2 +- src/libs/ssh/sshkeycreationdialog.h | 2 +- src/libs/ssh/sshkeyexchange.cpp | 2 +- src/libs/ssh/sshkeyexchange_p.h | 2 +- src/libs/ssh/sshkeygenerator.cpp | 2 +- src/libs/ssh/sshkeygenerator.h | 2 +- src/libs/ssh/sshkeypasswordretriever.cpp | 2 +- src/libs/ssh/sshkeypasswordretriever_p.h | 2 +- src/libs/ssh/sshoutgoingpacket.cpp | 2 +- src/libs/ssh/sshoutgoingpacket_p.h | 2 +- src/libs/ssh/sshpacket.cpp | 2 +- src/libs/ssh/sshpacket_p.h | 2 +- src/libs/ssh/sshpacketparser.cpp | 2 +- src/libs/ssh/sshpacketparser_p.h | 2 +- src/libs/ssh/sshpseudoterminal.h | 2 +- src/libs/ssh/sshremoteprocess.cpp | 2 +- src/libs/ssh/sshremoteprocess.h | 2 +- src/libs/ssh/sshremoteprocess_p.h | 2 +- src/libs/ssh/sshremoteprocessrunner.cpp | 2 +- src/libs/ssh/sshremoteprocessrunner.h | 2 +- src/libs/ssh/sshsendfacility.cpp | 2 +- src/libs/ssh/sshsendfacility_p.h | 2 +- src/libs/utils/QtConcurrentTools | 2 +- src/libs/utils/annotateditemdelegate.cpp | 2 +- src/libs/utils/annotateditemdelegate.h | 2 +- src/libs/utils/ansiescapecodehandler.cpp | 2 +- src/libs/utils/ansiescapecodehandler.h | 2 +- src/libs/utils/appmainwindow.cpp | 2 +- src/libs/utils/appmainwindow.h | 2 +- src/libs/utils/basetreeview.cpp | 2 +- src/libs/utils/basetreeview.h | 2 +- src/libs/utils/basevalidatinglineedit.cpp | 2 +- src/libs/utils/basevalidatinglineedit.h | 2 +- src/libs/utils/bracematcher.cpp | 2 +- src/libs/utils/bracematcher.h | 2 +- src/libs/utils/buildablehelperlibrary.cpp | 2 +- src/libs/utils/buildablehelperlibrary.h | 2 +- src/libs/utils/changeset.cpp | 2 +- src/libs/utils/changeset.h | 2 +- src/libs/utils/checkablemessagebox.cpp | 2 +- src/libs/utils/checkablemessagebox.h | 2 +- src/libs/utils/classnamevalidatinglineedit.cpp | 2 +- src/libs/utils/classnamevalidatinglineedit.h | 2 +- src/libs/utils/codegeneration.cpp | 2 +- src/libs/utils/codegeneration.h | 2 +- src/libs/utils/completingtextedit.cpp | 2 +- src/libs/utils/completingtextedit.h | 2 +- src/libs/utils/consoleprocess.cpp | 2 +- src/libs/utils/consoleprocess.h | 2 +- src/libs/utils/consoleprocess_p.h | 2 +- src/libs/utils/consoleprocess_unix.cpp | 2 +- src/libs/utils/consoleprocess_win.cpp | 2 +- src/libs/utils/crumblepath.cpp | 2 +- src/libs/utils/crumblepath.h | 2 +- src/libs/utils/detailsbutton.cpp | 2 +- src/libs/utils/detailsbutton.h | 2 +- src/libs/utils/detailswidget.cpp | 2 +- src/libs/utils/detailswidget.h | 2 +- src/libs/utils/elfreader.cpp | 2 +- src/libs/utils/elfreader.h | 2 +- src/libs/utils/elidinglabel.cpp | 2 +- src/libs/utils/elidinglabel.h | 2 +- src/libs/utils/environment.cpp | 2 +- src/libs/utils/environment.h | 2 +- src/libs/utils/environmentmodel.cpp | 2 +- src/libs/utils/environmentmodel.h | 2 +- src/libs/utils/faketooltip.cpp | 2 +- src/libs/utils/faketooltip.h | 2 +- src/libs/utils/fancylineedit.cpp | 2 +- src/libs/utils/fancylineedit.h | 2 +- src/libs/utils/fancymainwindow.cpp | 2 +- src/libs/utils/fancymainwindow.h | 2 +- src/libs/utils/fileinprojectfinder.cpp | 2 +- src/libs/utils/fileinprojectfinder.h | 2 +- src/libs/utils/filenamevalidatinglineedit.cpp | 2 +- src/libs/utils/filenamevalidatinglineedit.h | 2 +- src/libs/utils/filesearch.cpp | 2 +- src/libs/utils/filesearch.h | 2 +- src/libs/utils/filesystemwatcher.cpp | 2 +- src/libs/utils/filesystemwatcher.h | 2 +- src/libs/utils/fileutils.cpp | 2 +- src/libs/utils/fileutils.h | 2 +- src/libs/utils/filewizarddialog.cpp | 2 +- src/libs/utils/filewizarddialog.h | 2 +- src/libs/utils/filewizardpage.cpp | 2 +- src/libs/utils/filewizardpage.h | 2 +- src/libs/utils/filterlineedit.cpp | 2 +- src/libs/utils/filterlineedit.h | 2 +- src/libs/utils/flowlayout.cpp | 2 +- src/libs/utils/flowlayout.h | 2 +- src/libs/utils/function.cpp | 2 +- src/libs/utils/function.h | 2 +- src/libs/utils/headerviewstretcher.cpp | 2 +- src/libs/utils/headerviewstretcher.h | 2 +- src/libs/utils/historycompleter.cpp | 2 +- src/libs/utils/historycompleter.h | 2 +- src/libs/utils/hostosinfo.cpp | 2 +- src/libs/utils/hostosinfo.h | 2 +- src/libs/utils/htmldocextractor.cpp | 2 +- src/libs/utils/htmldocextractor.h | 2 +- src/libs/utils/ipaddresslineedit.cpp | 2 +- src/libs/utils/ipaddresslineedit.h | 2 +- src/libs/utils/iwelcomepage.cpp | 2 +- src/libs/utils/iwelcomepage.h | 2 +- src/libs/utils/json.cpp | 2 +- src/libs/utils/json.h | 2 +- src/libs/utils/linecolumnlabel.cpp | 2 +- src/libs/utils/linecolumnlabel.h | 2 +- src/libs/utils/listutils.h | 2 +- src/libs/utils/multitask.h | 2 +- src/libs/utils/navigationtreeview.cpp | 2 +- src/libs/utils/navigationtreeview.h | 2 +- src/libs/utils/networkaccessmanager.cpp | 2 +- src/libs/utils/networkaccessmanager.h | 2 +- src/libs/utils/newclasswidget.cpp | 2 +- src/libs/utils/newclasswidget.h | 2 +- src/libs/utils/osspecificaspects.h | 2 +- src/libs/utils/outputformat.h | 2 +- src/libs/utils/outputformatter.cpp | 2 +- src/libs/utils/outputformatter.h | 2 +- src/libs/utils/parameteraction.cpp | 2 +- src/libs/utils/parameteraction.h | 2 +- src/libs/utils/pathchooser.cpp | 2 +- src/libs/utils/pathchooser.h | 2 +- src/libs/utils/pathlisteditor.cpp | 2 +- src/libs/utils/pathlisteditor.h | 2 +- src/libs/utils/persistentsettings.cpp | 2 +- src/libs/utils/persistentsettings.h | 2 +- src/libs/utils/portlist.cpp | 2 +- src/libs/utils/portlist.h | 2 +- src/libs/utils/process_ctrlc_stub.cpp | 2 +- src/libs/utils/process_stub_unix.c | 2 +- src/libs/utils/process_stub_win.c | 2 +- src/libs/utils/projectintropage.cpp | 2 +- src/libs/utils/projectintropage.h | 2 +- src/libs/utils/projectnamevalidatinglineedit.cpp | 2 +- src/libs/utils/projectnamevalidatinglineedit.h | 2 +- src/libs/utils/proxyaction.cpp | 2 +- src/libs/utils/proxyaction.h | 2 +- src/libs/utils/qtcassert.cpp | 2 +- src/libs/utils/qtcassert.h | 2 +- src/libs/utils/qtcolorbutton.cpp | 2 +- src/libs/utils/qtcolorbutton.h | 2 +- src/libs/utils/qtcoverride.h | 2 +- src/libs/utils/qtcprocess.cpp | 2 +- src/libs/utils/qtcprocess.h | 2 +- src/libs/utils/reloadpromptutils.cpp | 2 +- src/libs/utils/reloadpromptutils.h | 2 +- src/libs/utils/runextensions.h | 2 +- src/libs/utils/savedaction.cpp | 2 +- src/libs/utils/savedaction.h | 2 +- src/libs/utils/savefile.cpp | 2 +- src/libs/utils/savefile.h | 2 +- src/libs/utils/settingsselector.cpp | 2 +- src/libs/utils/settingsselector.h | 2 +- src/libs/utils/settingsutils.h | 2 +- src/libs/utils/sleep.cpp | 2 +- src/libs/utils/sleep.h | 2 +- src/libs/utils/statuslabel.cpp | 2 +- src/libs/utils/statuslabel.h | 2 +- src/libs/utils/stringutils.cpp | 2 +- src/libs/utils/stringutils.h | 2 +- src/libs/utils/styledbar.cpp | 2 +- src/libs/utils/styledbar.h | 2 +- src/libs/utils/stylehelper.cpp | 2 +- src/libs/utils/stylehelper.h | 2 +- src/libs/utils/synchronousprocess.cpp | 2 +- src/libs/utils/synchronousprocess.h | 2 +- src/libs/utils/tcpportsgatherer.cpp | 2 +- src/libs/utils/tcpportsgatherer.h | 2 +- src/libs/utils/textfileformat.cpp | 2 +- src/libs/utils/textfileformat.h | 2 +- src/libs/utils/tooltip/effects.h | 2 +- src/libs/utils/tooltip/reuse.h | 2 +- src/libs/utils/tooltip/tipcontents.cpp | 2 +- src/libs/utils/tooltip/tipcontents.h | 2 +- src/libs/utils/tooltip/tips.cpp | 2 +- src/libs/utils/tooltip/tips.h | 2 +- src/libs/utils/tooltip/tooltip.cpp | 2 +- src/libs/utils/tooltip/tooltip.h | 2 +- src/libs/utils/uncommentselection.cpp | 2 +- src/libs/utils/uncommentselection.h | 2 +- src/libs/utils/unixutils.cpp | 2 +- src/libs/utils/unixutils.h | 2 +- src/libs/utils/utils_global.h | 2 +- src/libs/utils/winutils.cpp | 2 +- src/libs/utils/winutils.h | 2 +- src/libs/utils/wizard.cpp | 2 +- src/libs/utils/wizard.h | 2 +- src/libs/zeroconf/avahiLib.cpp | 2 +- src/libs/zeroconf/dnsSdLib.cpp | 2 +- src/libs/zeroconf/embeddedLib.cpp | 2 +- src/libs/zeroconf/servicebrowser.cpp | 2 +- src/libs/zeroconf/servicebrowser.h | 2 +- src/libs/zeroconf/servicebrowser_p.h | 2 +- src/libs/zeroconf/syssocket.h | 2 +- src/libs/zeroconf/zeroconf_global.h | 2 +- src/plugins/analyzerbase/AnalyzerBase.pluginspec.in | 2 +- src/plugins/analyzerbase/analyzerbase_global.h | 2 +- src/plugins/analyzerbase/analyzerconstants.h | 2 +- src/plugins/analyzerbase/analyzermanager.cpp | 2 +- src/plugins/analyzerbase/analyzermanager.h | 2 +- src/plugins/analyzerbase/analyzerplugin.cpp | 2 +- src/plugins/analyzerbase/analyzerplugin.h | 2 +- src/plugins/analyzerbase/analyzerrunconfigwidget.cpp | 2 +- src/plugins/analyzerbase/analyzerrunconfigwidget.h | 2 +- src/plugins/analyzerbase/analyzerruncontrol.cpp | 2 +- src/plugins/analyzerbase/analyzerruncontrol.h | 2 +- src/plugins/analyzerbase/analyzerstartparameters.h | 2 +- src/plugins/analyzerbase/analyzerutils.cpp | 2 +- src/plugins/analyzerbase/analyzerutils.h | 2 +- src/plugins/analyzerbase/ianalyzertool.cpp | 2 +- src/plugins/analyzerbase/ianalyzertool.h | 2 +- src/plugins/analyzerbase/startremotedialog.cpp | 2 +- src/plugins/analyzerbase/startremotedialog.h | 2 +- src/plugins/android/Android.pluginspec.in | 2 +- src/plugins/android/androidanalyzesupport.cpp | 2 +- src/plugins/android/androidanalyzesupport.h | 2 +- src/plugins/android/androidconfigurations.cpp | 2 +- src/plugins/android/androidconfigurations.h | 2 +- src/plugins/android/androidconstants.h | 2 +- src/plugins/android/androidcreatekeystorecertificate.cpp | 2 +- src/plugins/android/androidcreatekeystorecertificate.h | 2 +- src/plugins/android/androiddebugsupport.cpp | 2 +- src/plugins/android/androiddebugsupport.h | 2 +- src/plugins/android/androiddeployconfiguration.cpp | 2 +- src/plugins/android/androiddeployconfiguration.h | 2 +- src/plugins/android/androiddeployqtstep.cpp | 4 ++-- src/plugins/android/androiddeployqtstep.h | 4 ++-- src/plugins/android/androiddeployqtwidget.cpp | 4 ++-- src/plugins/android/androiddeployqtwidget.h | 4 ++-- src/plugins/android/androiddeploystep.cpp | 2 +- src/plugins/android/androiddeploystep.h | 2 +- src/plugins/android/androiddeploystepfactory.cpp | 2 +- src/plugins/android/androiddeploystepfactory.h | 2 +- src/plugins/android/androiddeploystepwidget.cpp | 2 +- src/plugins/android/androiddeploystepwidget.h | 2 +- src/plugins/android/androiddevice.cpp | 2 +- src/plugins/android/androiddevice.h | 2 +- src/plugins/android/androiddevicedialog.cpp | 2 +- src/plugins/android/androiddevicedialog.h | 2 +- src/plugins/android/androiddevicefactory.cpp | 2 +- src/plugins/android/androiddevicefactory.h | 2 +- src/plugins/android/androiderrormessage.cpp | 2 +- src/plugins/android/androiderrormessage.h | 2 +- src/plugins/android/androidextralibrarylistmodel.cpp | 4 ++-- src/plugins/android/androidextralibrarylistmodel.h | 4 ++-- src/plugins/android/androidgdbserverkitinformation.cpp | 2 +- src/plugins/android/androidgdbserverkitinformation.h | 2 +- src/plugins/android/androidglobal.h | 2 +- src/plugins/android/androidmanager.cpp | 2 +- src/plugins/android/androidmanager.h | 2 +- src/plugins/android/androidmanifestdocument.cpp | 2 +- src/plugins/android/androidmanifestdocument.h | 2 +- src/plugins/android/androidmanifesteditor.cpp | 2 +- src/plugins/android/androidmanifesteditor.h | 2 +- src/plugins/android/androidmanifesteditorfactory.cpp | 2 +- src/plugins/android/androidmanifesteditorfactory.h | 2 +- src/plugins/android/androidmanifesteditorwidget.cpp | 2 +- src/plugins/android/androidmanifesteditorwidget.h | 2 +- src/plugins/android/androidpackagecreationfactory.cpp | 2 +- src/plugins/android/androidpackagecreationfactory.h | 2 +- src/plugins/android/androidpackagecreationstep.cpp | 2 +- src/plugins/android/androidpackagecreationstep.h | 2 +- src/plugins/android/androidpackagecreationwidget.cpp | 2 +- src/plugins/android/androidpackagecreationwidget.h | 2 +- src/plugins/android/androidpackageinstallationfactory.cpp | 2 +- src/plugins/android/androidpackageinstallationfactory.h | 2 +- src/plugins/android/androidpackageinstallationstep.cpp | 2 +- src/plugins/android/androidpackageinstallationstep.h | 2 +- src/plugins/android/androidplugin.cpp | 2 +- src/plugins/android/androidplugin.h | 2 +- src/plugins/android/androidpotentialkit.cpp | 2 +- src/plugins/android/androidpotentialkit.h | 2 +- src/plugins/android/androidqtversion.cpp | 2 +- src/plugins/android/androidqtversion.h | 2 +- src/plugins/android/androidqtversionfactory.cpp | 2 +- src/plugins/android/androidqtversionfactory.h | 2 +- src/plugins/android/androidrunconfiguration.cpp | 2 +- src/plugins/android/androidrunconfiguration.h | 2 +- src/plugins/android/androidruncontrol.cpp | 2 +- src/plugins/android/androidruncontrol.h | 2 +- src/plugins/android/androidrunfactories.cpp | 2 +- src/plugins/android/androidrunfactories.h | 2 +- src/plugins/android/androidrunner.cpp | 2 +- src/plugins/android/androidrunner.h | 2 +- src/plugins/android/androidrunsupport.cpp | 2 +- src/plugins/android/androidrunsupport.h | 2 +- src/plugins/android/androidsettingspage.cpp | 2 +- src/plugins/android/androidsettingspage.h | 2 +- src/plugins/android/androidsettingswidget.cpp | 2 +- src/plugins/android/androidsettingswidget.h | 2 +- src/plugins/android/androidsignaloperation.cpp | 2 +- src/plugins/android/androidsignaloperation.h | 2 +- src/plugins/android/androidtoolchain.cpp | 2 +- src/plugins/android/androidtoolchain.h | 2 +- src/plugins/android/certificatesmodel.cpp | 4 ++-- src/plugins/android/certificatesmodel.h | 4 ++-- src/plugins/android/createandroidmanifestwizard.cpp | 2 +- src/plugins/android/createandroidmanifestwizard.h | 2 +- src/plugins/android/javaparser.cpp | 2 +- src/plugins/android/javaparser.h | 2 +- .../AutotoolsProjectManager.pluginspec.in | 2 +- src/plugins/autotoolsprojectmanager/autogenstep.cpp | 2 +- src/plugins/autotoolsprojectmanager/autogenstep.h | 2 +- src/plugins/autotoolsprojectmanager/autoreconfstep.cpp | 2 +- src/plugins/autotoolsprojectmanager/autoreconfstep.h | 2 +- .../autotoolsprojectmanager/autotoolsbuildconfiguration.cpp | 2 +- .../autotoolsprojectmanager/autotoolsbuildconfiguration.h | 2 +- .../autotoolsbuildsettingswidget.cpp | 2 +- .../autotoolsprojectmanager/autotoolsbuildsettingswidget.h | 2 +- src/plugins/autotoolsprojectmanager/autotoolsmanager.cpp | 2 +- src/plugins/autotoolsprojectmanager/autotoolsmanager.h | 2 +- .../autotoolsprojectmanager/autotoolsopenprojectwizard.cpp | 2 +- .../autotoolsprojectmanager/autotoolsopenprojectwizard.h | 2 +- src/plugins/autotoolsprojectmanager/autotoolsproject.cpp | 2 +- src/plugins/autotoolsprojectmanager/autotoolsproject.h | 2 +- .../autotoolsprojectmanager/autotoolsprojectconstants.h | 2 +- .../autotoolsprojectmanager/autotoolsprojectfile.cpp | 2 +- src/plugins/autotoolsprojectmanager/autotoolsprojectfile.h | 2 +- .../autotoolsprojectmanager/autotoolsprojectnode.cpp | 2 +- src/plugins/autotoolsprojectmanager/autotoolsprojectnode.h | 2 +- .../autotoolsprojectmanager/autotoolsprojectplugin.cpp | 2 +- .../autotoolsprojectmanager/autotoolsprojectplugin.h | 2 +- src/plugins/autotoolsprojectmanager/configurestep.cpp | 2 +- src/plugins/autotoolsprojectmanager/configurestep.h | 2 +- src/plugins/autotoolsprojectmanager/makefileparser.cpp | 2 +- src/plugins/autotoolsprojectmanager/makefileparser.h | 2 +- .../autotoolsprojectmanager/makefileparserthread.cpp | 2 +- src/plugins/autotoolsprojectmanager/makefileparserthread.h | 2 +- src/plugins/autotoolsprojectmanager/makestep.cpp | 2 +- src/plugins/autotoolsprojectmanager/makestep.h | 2 +- src/plugins/baremetal/BareMetal.pluginspec.in | 2 +- src/plugins/baremetal/baremetalconstants.h | 2 +- src/plugins/baremetal/baremetaldeploystepfactory.cpp | 2 +- src/plugins/baremetal/baremetaldevice.cpp | 2 +- src/plugins/baremetal/baremetaldevice.h | 2 +- .../baremetal/baremetaldeviceconfigurationfactory.cpp | 2 +- src/plugins/baremetal/baremetaldeviceconfigurationfactory.h | 2 +- .../baremetal/baremetaldeviceconfigurationwidget.cpp | 2 +- src/plugins/baremetal/baremetaldeviceconfigurationwidget.h | 2 +- .../baremetal/baremetaldeviceconfigurationwizard.cpp | 2 +- src/plugins/baremetal/baremetaldeviceconfigurationwizard.h | 2 +- .../baremetal/baremetaldeviceconfigurationwizardpages.cpp | 2 +- .../baremetal/baremetaldeviceconfigurationwizardpages.h | 2 +- src/plugins/baremetal/baremetalgdbcommandsdeploystep.cpp | 2 +- src/plugins/baremetal/baremetalgdbcommandsdeploystep.h | 2 +- src/plugins/baremetal/baremetalplugin.cpp | 2 +- src/plugins/baremetal/baremetalplugin.h | 2 +- src/plugins/baremetal/baremetalrunconfiguration.cpp | 2 +- src/plugins/baremetal/baremetalrunconfiguration.h | 2 +- src/plugins/baremetal/baremetalrunconfigurationfactory.cpp | 2 +- src/plugins/baremetal/baremetalrunconfigurationfactory.h | 2 +- src/plugins/baremetal/baremetalrunconfigurationwidget.cpp | 2 +- src/plugins/baremetal/baremetalrunconfigurationwidget.h | 2 +- src/plugins/baremetal/baremetalruncontrolfactory.cpp | 2 +- src/plugins/baremetal/baremetalruncontrolfactory.h | 2 +- src/plugins/bazaar/Bazaar.pluginspec.in | 2 +- src/plugins/bazaar/annotationhighlighter.cpp | 2 +- src/plugins/bazaar/annotationhighlighter.h | 2 +- src/plugins/bazaar/bazaarclient.cpp | 2 +- src/plugins/bazaar/bazaarclient.h | 2 +- src/plugins/bazaar/bazaarcommitwidget.cpp | 2 +- src/plugins/bazaar/bazaarcommitwidget.h | 2 +- src/plugins/bazaar/bazaarcontrol.cpp | 2 +- src/plugins/bazaar/bazaarcontrol.h | 2 +- src/plugins/bazaar/bazaareditor.cpp | 2 +- src/plugins/bazaar/bazaareditor.h | 2 +- src/plugins/bazaar/bazaarplugin.cpp | 2 +- src/plugins/bazaar/bazaarplugin.h | 2 +- src/plugins/bazaar/bazaarsettings.cpp | 2 +- src/plugins/bazaar/bazaarsettings.h | 2 +- src/plugins/bazaar/branchinfo.cpp | 2 +- src/plugins/bazaar/branchinfo.h | 2 +- src/plugins/bazaar/cloneoptionspanel.cpp | 2 +- src/plugins/bazaar/cloneoptionspanel.h | 2 +- src/plugins/bazaar/clonewizard.cpp | 2 +- src/plugins/bazaar/clonewizard.h | 2 +- src/plugins/bazaar/clonewizardpage.cpp | 2 +- src/plugins/bazaar/clonewizardpage.h | 2 +- src/plugins/bazaar/commiteditor.cpp | 2 +- src/plugins/bazaar/commiteditor.h | 2 +- src/plugins/bazaar/constants.h | 2 +- src/plugins/bazaar/optionspage.cpp | 2 +- src/plugins/bazaar/optionspage.h | 2 +- src/plugins/bazaar/pullorpushdialog.cpp | 2 +- src/plugins/bazaar/pullorpushdialog.h | 2 +- src/plugins/bineditor/BinEditor.pluginspec.in | 2 +- src/plugins/bineditor/bineditor.cpp | 2 +- src/plugins/bineditor/bineditor.h | 2 +- src/plugins/bineditor/bineditorconstants.h | 2 +- src/plugins/bineditor/bineditorplugin.cpp | 2 +- src/plugins/bineditor/bineditorplugin.h | 2 +- src/plugins/bineditor/markup.cpp | 2 +- src/plugins/bineditor/markup.h | 2 +- src/plugins/bookmarks/Bookmarks.pluginspec.in | 2 +- src/plugins/bookmarks/bookmark.cpp | 2 +- src/plugins/bookmarks/bookmark.h | 2 +- src/plugins/bookmarks/bookmarkmanager.cpp | 2 +- src/plugins/bookmarks/bookmarkmanager.h | 2 +- src/plugins/bookmarks/bookmarks_global.h | 2 +- src/plugins/bookmarks/bookmarksplugin.cpp | 2 +- src/plugins/bookmarks/bookmarksplugin.h | 2 +- src/plugins/classview/ClassView.pluginspec.in | 2 +- src/plugins/classview/classviewconstants.h | 2 +- src/plugins/classview/classviewmanager.cpp | 2 +- src/plugins/classview/classviewmanager.h | 2 +- src/plugins/classview/classviewnavigationwidget.cpp | 2 +- src/plugins/classview/classviewnavigationwidget.h | 2 +- src/plugins/classview/classviewnavigationwidgetfactory.cpp | 2 +- src/plugins/classview/classviewnavigationwidgetfactory.h | 2 +- src/plugins/classview/classviewparser.cpp | 2 +- src/plugins/classview/classviewparser.h | 2 +- src/plugins/classview/classviewparsertreeitem.cpp | 2 +- src/plugins/classview/classviewparsertreeitem.h | 2 +- src/plugins/classview/classviewplugin.cpp | 2 +- src/plugins/classview/classviewplugin.h | 2 +- src/plugins/classview/classviewsymbolinformation.cpp | 2 +- src/plugins/classview/classviewsymbolinformation.h | 2 +- src/plugins/classview/classviewsymbollocation.cpp | 2 +- src/plugins/classview/classviewsymbollocation.h | 2 +- src/plugins/classview/classviewtreeitemmodel.cpp | 2 +- src/plugins/classview/classviewtreeitemmodel.h | 2 +- src/plugins/classview/classviewutils.cpp | 2 +- src/plugins/classview/classviewutils.h | 2 +- src/plugins/clearcase/ClearCase.pluginspec.in | 2 +- src/plugins/clearcase/activityselector.cpp | 2 +- src/plugins/clearcase/activityselector.h | 2 +- src/plugins/clearcase/annotationhighlighter.cpp | 2 +- src/plugins/clearcase/annotationhighlighter.h | 2 +- src/plugins/clearcase/checkoutdialog.cpp | 2 +- src/plugins/clearcase/checkoutdialog.h | 2 +- src/plugins/clearcase/clearcaseconstants.h | 2 +- src/plugins/clearcase/clearcasecontrol.cpp | 2 +- src/plugins/clearcase/clearcasecontrol.h | 2 +- src/plugins/clearcase/clearcaseeditor.cpp | 2 +- src/plugins/clearcase/clearcaseeditor.h | 2 +- src/plugins/clearcase/clearcaseplugin.cpp | 2 +- src/plugins/clearcase/clearcaseplugin.h | 2 +- src/plugins/clearcase/clearcasesettings.cpp | 2 +- src/plugins/clearcase/clearcasesettings.h | 2 +- src/plugins/clearcase/clearcasesubmiteditor.cpp | 2 +- src/plugins/clearcase/clearcasesubmiteditor.h | 2 +- src/plugins/clearcase/clearcasesubmiteditorwidget.cpp | 2 +- src/plugins/clearcase/clearcasesubmiteditorwidget.h | 2 +- src/plugins/clearcase/clearcasesync.cpp | 2 +- src/plugins/clearcase/clearcasesync.h | 2 +- src/plugins/clearcase/settingspage.cpp | 2 +- src/plugins/clearcase/settingspage.h | 2 +- src/plugins/clearcase/versionselector.cpp | 2 +- src/plugins/clearcase/versionselector.h | 2 +- .../cmakeprojectmanager/CMakeProjectManager.pluginspec.in | 2 +- src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h | 2 +- src/plugins/cmakeprojectmanager/cmakebuildinfo.h | 2 +- src/plugins/cmakeprojectmanager/cmakeeditor.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakeeditor.h | 2 +- src/plugins/cmakeprojectmanager/cmakeeditorfactory.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakeeditorfactory.h | 2 +- .../cmakeprojectmanager/cmakefilecompletionassist.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakefilecompletionassist.h | 2 +- src/plugins/cmakeprojectmanager/cmakehighlighter.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakehighlighter.h | 2 +- src/plugins/cmakeprojectmanager/cmakehighlighterfactory.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakehighlighterfactory.h | 2 +- src/plugins/cmakeprojectmanager/cmakelocatorfilter.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakelocatorfilter.h | 2 +- src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.h | 2 +- src/plugins/cmakeprojectmanager/cmakeparser.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakeparser.h | 2 +- src/plugins/cmakeprojectmanager/cmakeproject.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakeproject.h | 2 +- src/plugins/cmakeprojectmanager/cmakeprojectconstants.h | 2 +- src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakeprojectmanager.h | 2 +- src/plugins/cmakeprojectmanager/cmakeprojectnodes.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakeprojectnodes.h | 2 +- src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakeprojectplugin.h | 2 +- src/plugins/cmakeprojectmanager/cmakerunconfiguration.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakerunconfiguration.h | 2 +- src/plugins/cmakeprojectmanager/cmakevalidator.cpp | 2 +- src/plugins/cmakeprojectmanager/cmakevalidator.h | 2 +- src/plugins/cmakeprojectmanager/makestep.cpp | 2 +- src/plugins/cmakeprojectmanager/makestep.h | 2 +- src/plugins/coreplugin/Core.pluginspec.in | 2 +- src/plugins/coreplugin/actionmanager/actioncontainer.cpp | 2 +- src/plugins/coreplugin/actionmanager/actioncontainer.h | 2 +- src/plugins/coreplugin/actionmanager/actioncontainer_p.h | 2 +- src/plugins/coreplugin/actionmanager/actionmanager.cpp | 2 +- src/plugins/coreplugin/actionmanager/actionmanager.h | 2 +- src/plugins/coreplugin/actionmanager/actionmanager_p.h | 2 +- src/plugins/coreplugin/actionmanager/command.cpp | 2 +- src/plugins/coreplugin/actionmanager/command.h | 2 +- src/plugins/coreplugin/actionmanager/command_p.h | 2 +- src/plugins/coreplugin/actionmanager/commandbutton.cpp | 2 +- src/plugins/coreplugin/actionmanager/commandbutton.h | 2 +- src/plugins/coreplugin/actionmanager/commandmappings.cpp | 2 +- src/plugins/coreplugin/actionmanager/commandmappings.h | 2 +- src/plugins/coreplugin/actionmanager/commandsfile.cpp | 2 +- src/plugins/coreplugin/actionmanager/commandsfile.h | 2 +- src/plugins/coreplugin/basefilewizard.cpp | 2 +- src/plugins/coreplugin/basefilewizard.h | 2 +- src/plugins/coreplugin/core_global.h | 2 +- src/plugins/coreplugin/coreconstants.h | 2 +- src/plugins/coreplugin/coreplugin.cpp | 2 +- src/plugins/coreplugin/coreplugin.h | 2 +- src/plugins/coreplugin/designmode.cpp | 2 +- src/plugins/coreplugin/designmode.h | 2 +- src/plugins/coreplugin/dialogs/addtovcsdialog.cpp | 2 +- src/plugins/coreplugin/dialogs/addtovcsdialog.h | 2 +- src/plugins/coreplugin/dialogs/externaltoolconfig.cpp | 2 +- src/plugins/coreplugin/dialogs/externaltoolconfig.h | 2 +- src/plugins/coreplugin/dialogs/ioptionspage.cpp | 2 +- src/plugins/coreplugin/dialogs/ioptionspage.h | 2 +- src/plugins/coreplugin/dialogs/iwizard.cpp | 2 +- src/plugins/coreplugin/dialogs/iwizard.h | 2 +- src/plugins/coreplugin/dialogs/newdialog.cpp | 2 +- src/plugins/coreplugin/dialogs/newdialog.h | 2 +- src/plugins/coreplugin/dialogs/openwithdialog.cpp | 2 +- src/plugins/coreplugin/dialogs/openwithdialog.h | 2 +- src/plugins/coreplugin/dialogs/promptoverwritedialog.cpp | 2 +- src/plugins/coreplugin/dialogs/promptoverwritedialog.h | 2 +- src/plugins/coreplugin/dialogs/readonlyfilesdialog.cpp | 2 +- src/plugins/coreplugin/dialogs/readonlyfilesdialog.h | 2 +- src/plugins/coreplugin/dialogs/saveitemsdialog.cpp | 2 +- src/plugins/coreplugin/dialogs/saveitemsdialog.h | 2 +- src/plugins/coreplugin/dialogs/settingsdialog.cpp | 2 +- src/plugins/coreplugin/dialogs/settingsdialog.h | 2 +- src/plugins/coreplugin/dialogs/shortcutsettings.cpp | 2 +- src/plugins/coreplugin/dialogs/shortcutsettings.h | 2 +- src/plugins/coreplugin/documentmanager.cpp | 2 +- src/plugins/coreplugin/documentmanager.h | 2 +- src/plugins/coreplugin/editmode.cpp | 2 +- src/plugins/coreplugin/editmode.h | 2 +- src/plugins/coreplugin/editormanager/documentmodel.cpp | 2 +- src/plugins/coreplugin/editormanager/documentmodel.h | 2 +- src/plugins/coreplugin/editormanager/editormanager.cpp | 2 +- src/plugins/coreplugin/editormanager/editormanager.h | 2 +- src/plugins/coreplugin/editormanager/editorview.cpp | 2 +- src/plugins/coreplugin/editormanager/editorview.h | 2 +- src/plugins/coreplugin/editormanager/ieditor.cpp | 2 +- src/plugins/coreplugin/editormanager/ieditor.h | 2 +- src/plugins/coreplugin/editormanager/ieditorfactory.cpp | 2 +- src/plugins/coreplugin/editormanager/ieditorfactory.h | 2 +- src/plugins/coreplugin/editormanager/iexternaleditor.cpp | 2 +- src/plugins/coreplugin/editormanager/iexternaleditor.h | 2 +- src/plugins/coreplugin/editormanager/openeditorsview.cpp | 2 +- src/plugins/coreplugin/editormanager/openeditorsview.h | 2 +- src/plugins/coreplugin/editormanager/openeditorswindow.cpp | 2 +- src/plugins/coreplugin/editormanager/openeditorswindow.h | 2 +- src/plugins/coreplugin/editormanager/systemeditor.cpp | 2 +- src/plugins/coreplugin/editormanager/systemeditor.h | 2 +- src/plugins/coreplugin/editortoolbar.cpp | 2 +- src/plugins/coreplugin/editortoolbar.h | 2 +- src/plugins/coreplugin/externaltool.cpp | 2 +- src/plugins/coreplugin/externaltool.h | 2 +- src/plugins/coreplugin/externaltoolmanager.h | 2 +- src/plugins/coreplugin/fancyactionbar.cpp | 2 +- src/plugins/coreplugin/fancyactionbar.h | 2 +- src/plugins/coreplugin/fancytabwidget.cpp | 2 +- src/plugins/coreplugin/fancytabwidget.h | 2 +- src/plugins/coreplugin/featureprovider.cpp | 2 +- src/plugins/coreplugin/featureprovider.h | 2 +- src/plugins/coreplugin/fileiconprovider.cpp | 2 +- src/plugins/coreplugin/fileiconprovider.h | 2 +- src/plugins/coreplugin/fileutils.cpp | 2 +- src/plugins/coreplugin/fileutils.h | 2 +- src/plugins/coreplugin/findplaceholder.cpp | 2 +- src/plugins/coreplugin/findplaceholder.h | 2 +- src/plugins/coreplugin/generalsettings.cpp | 2 +- src/plugins/coreplugin/generalsettings.h | 2 +- src/plugins/coreplugin/generatedfile.cpp | 2 +- src/plugins/coreplugin/generatedfile.h | 2 +- src/plugins/coreplugin/helpmanager.cpp | 2 +- src/plugins/coreplugin/helpmanager.h | 2 +- src/plugins/coreplugin/icontext.cpp | 2 +- src/plugins/coreplugin/icontext.h | 2 +- src/plugins/coreplugin/icore.cpp | 2 +- src/plugins/coreplugin/icore.h | 2 +- src/plugins/coreplugin/icorelistener.cpp | 2 +- src/plugins/coreplugin/icorelistener.h | 2 +- src/plugins/coreplugin/id.cpp | 2 +- src/plugins/coreplugin/id.h | 2 +- src/plugins/coreplugin/idocument.cpp | 2 +- src/plugins/coreplugin/idocument.h | 2 +- src/plugins/coreplugin/idocumentfactory.h | 2 +- src/plugins/coreplugin/ifilewizardextension.h | 2 +- src/plugins/coreplugin/imode.cpp | 2 +- src/plugins/coreplugin/imode.h | 2 +- src/plugins/coreplugin/inavigationwidgetfactory.cpp | 2 +- src/plugins/coreplugin/inavigationwidgetfactory.h | 2 +- src/plugins/coreplugin/infobar.cpp | 2 +- src/plugins/coreplugin/infobar.h | 2 +- src/plugins/coreplugin/ioutputpane.h | 2 +- src/plugins/coreplugin/iversioncontrol.cpp | 2 +- src/plugins/coreplugin/iversioncontrol.h | 2 +- src/plugins/coreplugin/macfullscreen.h | 2 +- src/plugins/coreplugin/macfullscreen.mm | 2 +- src/plugins/coreplugin/mainwindow.cpp | 2 +- src/plugins/coreplugin/mainwindow.h | 2 +- src/plugins/coreplugin/manhattanstyle.cpp | 2 +- src/plugins/coreplugin/manhattanstyle.h | 2 +- src/plugins/coreplugin/messagemanager.cpp | 2 +- src/plugins/coreplugin/messagemanager.h | 2 +- src/plugins/coreplugin/messageoutputwindow.cpp | 2 +- src/plugins/coreplugin/messageoutputwindow.h | 2 +- src/plugins/coreplugin/mimedatabase.cpp | 2 +- src/plugins/coreplugin/mimedatabase.h | 2 +- src/plugins/coreplugin/mimetypemagicdialog.cpp | 2 +- src/plugins/coreplugin/mimetypemagicdialog.h | 2 +- src/plugins/coreplugin/mimetypesettings.cpp | 2 +- src/plugins/coreplugin/mimetypesettings.h | 2 +- src/plugins/coreplugin/minisplitter.cpp | 2 +- src/plugins/coreplugin/minisplitter.h | 2 +- src/plugins/coreplugin/modemanager.cpp | 2 +- src/plugins/coreplugin/modemanager.h | 2 +- src/plugins/coreplugin/navigationsubwidget.cpp | 2 +- src/plugins/coreplugin/navigationsubwidget.h | 2 +- src/plugins/coreplugin/navigationwidget.cpp | 2 +- src/plugins/coreplugin/navigationwidget.h | 2 +- src/plugins/coreplugin/outputpane.cpp | 2 +- src/plugins/coreplugin/outputpane.h | 2 +- src/plugins/coreplugin/outputpanemanager.cpp | 2 +- src/plugins/coreplugin/outputpanemanager.h | 2 +- src/plugins/coreplugin/outputwindow.cpp | 2 +- src/plugins/coreplugin/outputwindow.h | 2 +- src/plugins/coreplugin/plugindialog.cpp | 2 +- src/plugins/coreplugin/plugindialog.h | 2 +- src/plugins/coreplugin/progressmanager/futureprogress.cpp | 2 +- src/plugins/coreplugin/progressmanager/futureprogress.h | 2 +- src/plugins/coreplugin/progressmanager/progressbar.cpp | 2 +- src/plugins/coreplugin/progressmanager/progressbar.h | 2 +- src/plugins/coreplugin/progressmanager/progressmanager.cpp | 2 +- src/plugins/coreplugin/progressmanager/progressmanager.h | 2 +- .../coreplugin/progressmanager/progressmanager_mac.mm | 2 +- src/plugins/coreplugin/progressmanager/progressmanager_p.h | 2 +- .../coreplugin/progressmanager/progressmanager_win.cpp | 2 +- .../coreplugin/progressmanager/progressmanager_x11.cpp | 2 +- src/plugins/coreplugin/progressmanager/progressview.cpp | 2 +- src/plugins/coreplugin/progressmanager/progressview.h | 2 +- src/plugins/coreplugin/removefiledialog.cpp | 2 +- src/plugins/coreplugin/removefiledialog.h | 2 +- src/plugins/coreplugin/rightpane.cpp | 2 +- src/plugins/coreplugin/rightpane.h | 2 +- src/plugins/coreplugin/settingsdatabase.cpp | 2 +- src/plugins/coreplugin/settingsdatabase.h | 2 +- src/plugins/coreplugin/sidebar.cpp | 2 +- src/plugins/coreplugin/sidebar.h | 2 +- src/plugins/coreplugin/sidebarwidget.cpp | 2 +- src/plugins/coreplugin/sidebarwidget.h | 2 +- src/plugins/coreplugin/statusbarmanager.cpp | 2 +- src/plugins/coreplugin/statusbarmanager.h | 2 +- src/plugins/coreplugin/statusbarwidget.cpp | 2 +- src/plugins/coreplugin/statusbarwidget.h | 2 +- src/plugins/coreplugin/styleanimator.cpp | 2 +- src/plugins/coreplugin/styleanimator.h | 2 +- src/plugins/coreplugin/tabpositionindicator.cpp | 2 +- src/plugins/coreplugin/tabpositionindicator.h | 2 +- src/plugins/coreplugin/testdatadir.cpp | 2 +- src/plugins/coreplugin/testdatadir.h | 2 +- src/plugins/coreplugin/textdocument.cpp | 2 +- src/plugins/coreplugin/textdocument.h | 2 +- src/plugins/coreplugin/toolsettings.cpp | 2 +- src/plugins/coreplugin/toolsettings.h | 2 +- src/plugins/coreplugin/variablechooser.cpp | 2 +- src/plugins/coreplugin/variablechooser.h | 2 +- src/plugins/coreplugin/variablemanager.cpp | 2 +- src/plugins/coreplugin/variablemanager.h | 2 +- src/plugins/coreplugin/vcsmanager.cpp | 2 +- src/plugins/coreplugin/vcsmanager.h | 2 +- src/plugins/coreplugin/versiondialog.cpp | 2 +- src/plugins/coreplugin/versiondialog.h | 2 +- src/plugins/cpaster/CodePaster.pluginspec.in | 2 +- src/plugins/cpaster/columnindicatortextedit.cpp | 2 +- src/plugins/cpaster/columnindicatortextedit.h | 2 +- src/plugins/cpaster/cpasterconstants.h | 2 +- src/plugins/cpaster/cpasterplugin.cpp | 2 +- src/plugins/cpaster/cpasterplugin.h | 2 +- src/plugins/cpaster/fileshareprotocol.cpp | 2 +- src/plugins/cpaster/fileshareprotocol.h | 2 +- src/plugins/cpaster/fileshareprotocolsettingspage.cpp | 2 +- src/plugins/cpaster/fileshareprotocolsettingspage.h | 2 +- src/plugins/cpaster/frontend/argumentscollector.cpp | 2 +- src/plugins/cpaster/frontend/argumentscollector.h | 2 +- src/plugins/cpaster/frontend/main.cpp | 2 +- src/plugins/cpaster/kdepasteprotocol.cpp | 2 +- src/plugins/cpaster/kdepasteprotocol.h | 2 +- src/plugins/cpaster/pastebindotcaprotocol.cpp | 2 +- src/plugins/cpaster/pastebindotcaprotocol.h | 2 +- src/plugins/cpaster/pastebindotcomprotocol.cpp | 2 +- src/plugins/cpaster/pastebindotcomprotocol.h | 2 +- src/plugins/cpaster/pasteselectdialog.cpp | 2 +- src/plugins/cpaster/pasteselectdialog.h | 2 +- src/plugins/cpaster/pasteview.cpp | 2 +- src/plugins/cpaster/pasteview.h | 2 +- src/plugins/cpaster/protocol.cpp | 2 +- src/plugins/cpaster/protocol.h | 2 +- src/plugins/cpaster/settings.cpp | 2 +- src/plugins/cpaster/settings.h | 2 +- src/plugins/cpaster/settingspage.cpp | 2 +- src/plugins/cpaster/settingspage.h | 2 +- src/plugins/cpaster/urlopenprotocol.cpp | 2 +- src/plugins/cpaster/urlopenprotocol.h | 2 +- src/plugins/cppeditor/CppEditor.pluginspec.in | 2 +- src/plugins/cppeditor/cppautocompleter.cpp | 2 +- src/plugins/cppeditor/cppautocompleter.h | 2 +- src/plugins/cppeditor/cppclasswizard.cpp | 2 +- src/plugins/cppeditor/cppclasswizard.h | 2 +- src/plugins/cppeditor/cppdoxygen_test.cpp | 2 +- src/plugins/cppeditor/cppeditor.cpp | 2 +- src/plugins/cppeditor/cppeditor.h | 2 +- src/plugins/cppeditor/cppeditor_global.h | 2 +- src/plugins/cppeditor/cppeditorconstants.h | 2 +- src/plugins/cppeditor/cppeditorenums.h | 2 +- src/plugins/cppeditor/cppeditorplugin.cpp | 2 +- src/plugins/cppeditor/cppeditorplugin.h | 2 +- src/plugins/cppeditor/cppelementevaluator.cpp | 2 +- src/plugins/cppeditor/cppelementevaluator.h | 2 +- src/plugins/cppeditor/cppfilewizard.cpp | 2 +- src/plugins/cppeditor/cppfilewizard.h | 2 +- src/plugins/cppeditor/cppfollowsymbolundercursor.cpp | 2 +- src/plugins/cppeditor/cppfollowsymbolundercursor.h | 2 +- src/plugins/cppeditor/cppfunctiondecldeflink.cpp | 2 +- src/plugins/cppeditor/cppfunctiondecldeflink.h | 2 +- src/plugins/cppeditor/cpphighlighter.cpp | 2 +- src/plugins/cppeditor/cpphighlighter.h | 2 +- src/plugins/cppeditor/cpphighlighterfactory.cpp | 2 +- src/plugins/cppeditor/cpphighlighterfactory.h | 2 +- src/plugins/cppeditor/cpphoverhandler.cpp | 2 +- src/plugins/cppeditor/cpphoverhandler.h | 2 +- src/plugins/cppeditor/cppincludehierarchy.cpp | 2 +- src/plugins/cppeditor/cppincludehierarchy.h | 2 +- src/plugins/cppeditor/cppincludehierarchy_test.cpp | 2 +- src/plugins/cppeditor/cppincludehierarchyitem.cpp | 2 +- src/plugins/cppeditor/cppincludehierarchyitem.h | 2 +- src/plugins/cppeditor/cppincludehierarchymodel.cpp | 2 +- src/plugins/cppeditor/cppincludehierarchymodel.h | 2 +- src/plugins/cppeditor/cppincludehierarchytreeview.cpp | 2 +- src/plugins/cppeditor/cppincludehierarchytreeview.h | 2 +- src/plugins/cppeditor/cppoutline.cpp | 2 +- src/plugins/cppeditor/cppoutline.h | 2 +- src/plugins/cppeditor/cpppreprocessordialog.cpp | 2 +- src/plugins/cppeditor/cpppreprocessordialog.h | 2 +- src/plugins/cppeditor/cppquickfix.cpp | 2 +- src/plugins/cppeditor/cppquickfix.h | 2 +- src/plugins/cppeditor/cppquickfix_test.cpp | 2 +- src/plugins/cppeditor/cppquickfix_test_utils.cpp | 2 +- src/plugins/cppeditor/cppquickfix_test_utils.h | 2 +- src/plugins/cppeditor/cppquickfixassistant.cpp | 2 +- src/plugins/cppeditor/cppquickfixassistant.h | 2 +- src/plugins/cppeditor/cppquickfixes.cpp | 2 +- src/plugins/cppeditor/cppquickfixes.h | 2 +- src/plugins/cppeditor/cppsnippetprovider.cpp | 2 +- src/plugins/cppeditor/cppsnippetprovider.h | 2 +- src/plugins/cppeditor/cpptypehierarchy.cpp | 2 +- src/plugins/cppeditor/cpptypehierarchy.h | 2 +- src/plugins/cppeditor/cppvirtualfunctionassistprovider.cpp | 2 +- src/plugins/cppeditor/cppvirtualfunctionassistprovider.h | 2 +- src/plugins/cppeditor/cppvirtualfunctionproposalitem.cpp | 2 +- src/plugins/cppeditor/cppvirtualfunctionproposalitem.h | 2 +- src/plugins/cppeditor/fileandtokenactions_test.cpp | 2 +- .../cppeditor/followsymbol_switchmethoddecldef_test.cpp | 2 +- src/plugins/cpptools/CppTools.pluginspec.in | 2 +- src/plugins/cpptools/abstracteditorsupport.cpp | 2 +- src/plugins/cpptools/abstracteditorsupport.h | 2 +- src/plugins/cpptools/builtinindexingsupport.h | 2 +- src/plugins/cpptools/commentssettings.cpp | 2 +- src/plugins/cpptools/commentssettings.h | 2 +- src/plugins/cpptools/completionsettingspage.cpp | 2 +- src/plugins/cpptools/completionsettingspage.h | 2 +- src/plugins/cpptools/cppchecksymbols.cpp | 2 +- src/plugins/cpptools/cppchecksymbols.h | 2 +- src/plugins/cpptools/cppclassesfilter.cpp | 2 +- src/plugins/cpptools/cppclassesfilter.h | 2 +- src/plugins/cpptools/cppcodeformatter.cpp | 2 +- src/plugins/cpptools/cppcodeformatter.h | 2 +- src/plugins/cpptools/cppcodegen_test.cpp | 2 +- src/plugins/cpptools/cppcodemodelsettings.cpp | 2 +- src/plugins/cpptools/cppcodemodelsettings.h | 2 +- src/plugins/cpptools/cppcodemodelsettingspage.cpp | 2 +- src/plugins/cpptools/cppcodemodelsettingspage.h | 2 +- src/plugins/cpptools/cppcodestylepreferences.cpp | 2 +- src/plugins/cpptools/cppcodestylepreferences.h | 2 +- src/plugins/cpptools/cppcodestylepreferencesfactory.cpp | 2 +- src/plugins/cpptools/cppcodestylepreferencesfactory.h | 2 +- src/plugins/cpptools/cppcodestylesettings.cpp | 2 +- src/plugins/cpptools/cppcodestylesettings.h | 2 +- src/plugins/cpptools/cppcodestylesettingspage.cpp | 2 +- src/plugins/cpptools/cppcodestylesettingspage.h | 2 +- src/plugins/cpptools/cppcompletion_test.cpp | 2 +- src/plugins/cpptools/cppcompletionassist.cpp | 2 +- src/plugins/cpptools/cppcompletionassist.h | 2 +- src/plugins/cpptools/cppcompletionassistprovider.cpp | 2 +- src/plugins/cpptools/cppcompletionassistprovider.h | 2 +- src/plugins/cpptools/cppcurrentdocumentfilter.cpp | 2 +- src/plugins/cpptools/cppcurrentdocumentfilter.h | 2 +- src/plugins/cpptools/cppdoxygen.cpp | 2 +- src/plugins/cpptools/cppdoxygen.h | 2 +- src/plugins/cpptools/cppfilesettingspage.cpp | 2 +- src/plugins/cpptools/cppfilesettingspage.h | 2 +- src/plugins/cpptools/cppfindreferences.cpp | 2 +- src/plugins/cpptools/cppfindreferences.h | 2 +- src/plugins/cpptools/cppfunctionsfilter.cpp | 2 +- src/plugins/cpptools/cppfunctionsfilter.h | 2 +- src/plugins/cpptools/cppheadersource_test.cpp | 2 +- src/plugins/cpptools/cpphighlightingsupport.cpp | 2 +- src/plugins/cpptools/cpphighlightingsupport.h | 2 +- src/plugins/cpptools/cpphighlightingsupportinternal.cpp | 2 +- src/plugins/cpptools/cpphighlightingsupportinternal.h | 2 +- src/plugins/cpptools/cppindexingsupport.cpp | 2 +- src/plugins/cpptools/cppindexingsupport.h | 2 +- src/plugins/cpptools/cpplocalsymbols.cpp | 2 +- src/plugins/cpptools/cpplocalsymbols.h | 2 +- src/plugins/cpptools/cpplocatordata.cpp | 2 +- src/plugins/cpptools/cpplocatordata.h | 2 +- src/plugins/cpptools/cpplocatorfilter.cpp | 2 +- src/plugins/cpptools/cpplocatorfilter.h | 2 +- src/plugins/cpptools/cpplocatorfilter_test.cpp | 2 +- src/plugins/cpptools/cppmodelmanager.cpp | 2 +- src/plugins/cpptools/cppmodelmanager.h | 2 +- src/plugins/cpptools/cppmodelmanager_test.cpp | 2 +- src/plugins/cpptools/cppmodelmanagerinterface.cpp | 2 +- src/plugins/cpptools/cppmodelmanagerinterface.h | 2 +- src/plugins/cpptools/cppmodelmanagersupport.cpp | 2 +- src/plugins/cpptools/cppmodelmanagersupport.h | 2 +- src/plugins/cpptools/cppmodelmanagersupportinternal.cpp | 2 +- src/plugins/cpptools/cppmodelmanagersupportinternal.h | 2 +- src/plugins/cpptools/cpppointerdeclarationformatter.cpp | 2 +- src/plugins/cpptools/cpppointerdeclarationformatter.h | 2 +- .../cpptools/cpppointerdeclarationformatter_test.cpp | 2 +- src/plugins/cpptools/cpppreprocessertesthelper.cpp | 2 +- src/plugins/cpptools/cpppreprocessertesthelper.h | 2 +- src/plugins/cpptools/cpppreprocessor_test.cpp | 2 +- src/plugins/cpptools/cppprojectfile.cpp | 2 +- src/plugins/cpptools/cppprojectfile.h | 2 +- src/plugins/cpptools/cppqtstyleindenter.cpp | 2 +- src/plugins/cpptools/cppqtstyleindenter.h | 2 +- src/plugins/cpptools/cpprefactoringchanges.cpp | 2 +- src/plugins/cpptools/cpprefactoringchanges.h | 2 +- src/plugins/cpptools/cppsemanticinfo.cpp | 2 +- src/plugins/cpptools/cppsemanticinfo.h | 2 +- src/plugins/cpptools/cppsnapshotupdater.cpp | 2 +- src/plugins/cpptools/cppsnapshotupdater.h | 2 +- src/plugins/cpptools/cpptools_global.h | 2 +- src/plugins/cpptools/cpptoolsconstants.h | 2 +- src/plugins/cpptools/cpptoolseditorsupport.cpp | 2 +- src/plugins/cpptools/cpptoolseditorsupport.h | 2 +- src/plugins/cpptools/cpptoolsplugin.cpp | 2 +- src/plugins/cpptools/cpptoolsplugin.h | 2 +- src/plugins/cpptools/cpptoolsreuse.cpp | 2 +- src/plugins/cpptools/cpptoolsreuse.h | 2 +- src/plugins/cpptools/cpptoolssettings.cpp | 2 +- src/plugins/cpptools/cpptoolssettings.h | 2 +- src/plugins/cpptools/doxygengenerator.cpp | 2 +- src/plugins/cpptools/doxygengenerator.h | 2 +- src/plugins/cpptools/includeutils.cpp | 2 +- src/plugins/cpptools/includeutils.h | 2 +- src/plugins/cpptools/insertionpointlocator.cpp | 2 +- src/plugins/cpptools/insertionpointlocator.h | 2 +- src/plugins/cpptools/modelmanagertesthelper.cpp | 2 +- src/plugins/cpptools/modelmanagertesthelper.h | 2 +- src/plugins/cpptools/searchsymbols.cpp | 2 +- src/plugins/cpptools/searchsymbols.h | 2 +- src/plugins/cpptools/symbolfinder.cpp | 2 +- src/plugins/cpptools/symbolfinder.h | 2 +- src/plugins/cpptools/symbolsearcher_test.cpp | 2 +- src/plugins/cpptools/symbolsfindfilter.cpp | 2 +- src/plugins/cpptools/symbolsfindfilter.h | 2 +- src/plugins/cpptools/typehierarchybuilder.cpp | 2 +- src/plugins/cpptools/typehierarchybuilder.h | 2 +- src/plugins/cpptools/typehierarchybuilder_test.cpp | 2 +- src/plugins/cvs/CVS.pluginspec.in | 2 +- src/plugins/cvs/annotationhighlighter.cpp | 2 +- src/plugins/cvs/annotationhighlighter.h | 2 +- src/plugins/cvs/checkoutwizard.cpp | 2 +- src/plugins/cvs/checkoutwizard.h | 2 +- src/plugins/cvs/checkoutwizardpage.cpp | 2 +- src/plugins/cvs/checkoutwizardpage.h | 2 +- src/plugins/cvs/cvsconstants.h | 2 +- src/plugins/cvs/cvscontrol.cpp | 2 +- src/plugins/cvs/cvscontrol.h | 2 +- src/plugins/cvs/cvseditor.cpp | 2 +- src/plugins/cvs/cvseditor.h | 2 +- src/plugins/cvs/cvsplugin.cpp | 2 +- src/plugins/cvs/cvsplugin.h | 2 +- src/plugins/cvs/cvssettings.cpp | 2 +- src/plugins/cvs/cvssettings.h | 2 +- src/plugins/cvs/cvssubmiteditor.cpp | 2 +- src/plugins/cvs/cvssubmiteditor.h | 2 +- src/plugins/cvs/cvsutils.cpp | 2 +- src/plugins/cvs/cvsutils.h | 2 +- src/plugins/cvs/settingspage.cpp | 2 +- src/plugins/cvs/settingspage.h | 2 +- src/plugins/debugger/Debugger.pluginspec.in | 2 +- src/plugins/debugger/basewindow.cpp | 2 +- src/plugins/debugger/basewindow.h | 2 +- src/plugins/debugger/breakhandler.cpp | 2 +- src/plugins/debugger/breakhandler.h | 2 +- src/plugins/debugger/breakpoint.cpp | 2 +- src/plugins/debugger/breakpoint.h | 2 +- src/plugins/debugger/breakpointmarker.cpp | 2 +- src/plugins/debugger/breakpointmarker.h | 2 +- src/plugins/debugger/breakwindow.cpp | 2 +- src/plugins/debugger/breakwindow.h | 2 +- src/plugins/debugger/cdb/bytearrayinputstream.cpp | 2 +- src/plugins/debugger/cdb/bytearrayinputstream.h | 2 +- src/plugins/debugger/cdb/cdbengine.cpp | 2 +- src/plugins/debugger/cdb/cdbengine.h | 2 +- src/plugins/debugger/cdb/cdboptionspage.cpp | 2 +- src/plugins/debugger/cdb/cdboptionspage.h | 2 +- src/plugins/debugger/cdb/cdbparsehelpers.cpp | 2 +- src/plugins/debugger/cdb/cdbparsehelpers.h | 2 +- src/plugins/debugger/commonoptionspage.cpp | 2 +- src/plugins/debugger/commonoptionspage.h | 2 +- src/plugins/debugger/debugger_global.h | 2 +- src/plugins/debugger/debuggeractions.cpp | 2 +- src/plugins/debugger/debuggeractions.h | 2 +- src/plugins/debugger/debuggerconstants.h | 2 +- src/plugins/debugger/debuggercore.h | 2 +- src/plugins/debugger/debuggerdialogs.cpp | 2 +- src/plugins/debugger/debuggerdialogs.h | 2 +- src/plugins/debugger/debuggerengine.cpp | 2 +- src/plugins/debugger/debuggerengine.h | 2 +- src/plugins/debugger/debuggerinternalconstants.h | 2 +- src/plugins/debugger/debuggeritem.cpp | 2 +- src/plugins/debugger/debuggeritem.h | 2 +- src/plugins/debugger/debuggeritemmanager.cpp | 2 +- src/plugins/debugger/debuggeritemmanager.h | 2 +- src/plugins/debugger/debuggeritemmodel.cpp | 2 +- src/plugins/debugger/debuggeritemmodel.h | 2 +- src/plugins/debugger/debuggerkitconfigwidget.cpp | 2 +- src/plugins/debugger/debuggerkitconfigwidget.h | 2 +- src/plugins/debugger/debuggerkitinformation.cpp | 2 +- src/plugins/debugger/debuggerkitinformation.h | 2 +- src/plugins/debugger/debuggermainwindow.cpp | 2 +- src/plugins/debugger/debuggermainwindow.h | 2 +- src/plugins/debugger/debuggeroptionspage.cpp | 2 +- src/plugins/debugger/debuggeroptionspage.h | 2 +- src/plugins/debugger/debuggerplugin.cpp | 2 +- src/plugins/debugger/debuggerplugin.h | 2 +- src/plugins/debugger/debuggerprotocol.cpp | 2 +- src/plugins/debugger/debuggerprotocol.h | 2 +- src/plugins/debugger/debuggerrunconfigurationaspect.cpp | 2 +- src/plugins/debugger/debuggerrunconfigurationaspect.h | 2 +- src/plugins/debugger/debuggerruncontrolfactory.h | 2 +- src/plugins/debugger/debuggerrunner.cpp | 2 +- src/plugins/debugger/debuggerrunner.h | 2 +- src/plugins/debugger/debuggersourcepathmappingwidget.cpp | 2 +- src/plugins/debugger/debuggersourcepathmappingwidget.h | 2 +- src/plugins/debugger/debuggerstartparameters.h | 2 +- src/plugins/debugger/debuggerstreamops.cpp | 2 +- src/plugins/debugger/debuggerstreamops.h | 2 +- src/plugins/debugger/debuggerstringutils.h | 2 +- src/plugins/debugger/debuggertooltipmanager.cpp | 2 +- src/plugins/debugger/debuggertooltipmanager.h | 2 +- src/plugins/debugger/disassembleragent.cpp | 2 +- src/plugins/debugger/disassembleragent.h | 2 +- src/plugins/debugger/disassemblerlines.cpp | 2 +- src/plugins/debugger/disassemblerlines.h | 2 +- src/plugins/debugger/gdb/attachgdbadapter.cpp | 2 +- src/plugins/debugger/gdb/attachgdbadapter.h | 2 +- src/plugins/debugger/gdb/classicgdbengine.cpp | 2 +- src/plugins/debugger/gdb/coregdbadapter.cpp | 2 +- src/plugins/debugger/gdb/coregdbadapter.h | 2 +- src/plugins/debugger/gdb/gdbengine.cpp | 2 +- src/plugins/debugger/gdb/gdbengine.h | 2 +- src/plugins/debugger/gdb/gdboptionspage.cpp | 2 +- src/plugins/debugger/gdb/gdboptionspage.h | 2 +- src/plugins/debugger/gdb/gdbplainengine.cpp | 2 +- src/plugins/debugger/gdb/gdbplainengine.h | 2 +- src/plugins/debugger/gdb/gdbprocess.cpp | 2 +- src/plugins/debugger/gdb/gdbprocess.h | 2 +- src/plugins/debugger/gdb/pythongdbengine.cpp | 2 +- src/plugins/debugger/gdb/remotegdbserveradapter.cpp | 2 +- src/plugins/debugger/gdb/remotegdbserveradapter.h | 2 +- src/plugins/debugger/gdb/startgdbserverdialog.cpp | 2 +- src/plugins/debugger/gdb/startgdbserverdialog.h | 2 +- src/plugins/debugger/gdb/termgdbadapter.cpp | 2 +- src/plugins/debugger/gdb/termgdbadapter.h | 2 +- src/plugins/debugger/imageviewer.cpp | 2 +- src/plugins/debugger/imageviewer.h | 2 +- src/plugins/debugger/lldb/lldbengine.cpp | 2 +- src/plugins/debugger/lldb/lldbengine.h | 2 +- src/plugins/debugger/lldblib/guest/lldbengineguest.cpp | 2 +- src/plugins/debugger/lldblib/guest/lldbengineguest.h | 2 +- src/plugins/debugger/lldblib/guest/main.cpp | 2 +- src/plugins/debugger/lldblib/ipcengineguest.cpp | 2 +- src/plugins/debugger/lldblib/ipcengineguest.h | 2 +- src/plugins/debugger/lldblib/ipcenginehost.cpp | 2 +- src/plugins/debugger/lldblib/ipcenginehost.h | 2 +- src/plugins/debugger/lldblib/lldbenginehost.cpp | 2 +- src/plugins/debugger/lldblib/lldbenginehost.h | 2 +- src/plugins/debugger/lldblib/lldboptionspage.cpp | 2 +- src/plugins/debugger/lldblib/lldboptionspage.h | 2 +- src/plugins/debugger/loadcoredialog.cpp | 2 +- src/plugins/debugger/loadcoredialog.h | 2 +- src/plugins/debugger/localsandexpressionswindow.cpp | 2 +- src/plugins/debugger/localsandexpressionswindow.h | 2 +- src/plugins/debugger/logwindow.cpp | 2 +- src/plugins/debugger/logwindow.h | 2 +- src/plugins/debugger/memoryagent.cpp | 2 +- src/plugins/debugger/memoryagent.h | 2 +- src/plugins/debugger/memoryview.cpp | 2 +- src/plugins/debugger/memoryview.h | 2 +- src/plugins/debugger/moduleshandler.cpp | 2 +- src/plugins/debugger/moduleshandler.h | 2 +- src/plugins/debugger/moduleswindow.cpp | 2 +- src/plugins/debugger/moduleswindow.h | 2 +- src/plugins/debugger/namedemangler/demanglerexceptions.h | 2 +- src/plugins/debugger/namedemangler/globalparsestate.cpp | 2 +- src/plugins/debugger/namedemangler/globalparsestate.h | 2 +- src/plugins/debugger/namedemangler/namedemangler.cpp | 2 +- src/plugins/debugger/namedemangler/namedemangler.h | 2 +- src/plugins/debugger/namedemangler/parsetreenodes.cpp | 2 +- src/plugins/debugger/namedemangler/parsetreenodes.h | 2 +- src/plugins/debugger/outputcollector.cpp | 2 +- src/plugins/debugger/outputcollector.h | 2 +- src/plugins/debugger/pdb/pdbengine.cpp | 2 +- src/plugins/debugger/pdb/pdbengine.h | 2 +- src/plugins/debugger/procinterrupt.cpp | 2 +- src/plugins/debugger/procinterrupt.h | 2 +- src/plugins/debugger/ptracepreload.c | 2 +- src/plugins/debugger/qml/baseqmldebuggerclient.cpp | 2 +- src/plugins/debugger/qml/baseqmldebuggerclient.h | 2 +- src/plugins/debugger/qml/interactiveinterpreter.cpp | 2 +- src/plugins/debugger/qml/interactiveinterpreter.h | 2 +- src/plugins/debugger/qml/qmladapter.cpp | 2 +- src/plugins/debugger/qml/qmladapter.h | 2 +- src/plugins/debugger/qml/qmlcppengine.cpp | 2 +- src/plugins/debugger/qml/qmlcppengine.h | 2 +- src/plugins/debugger/qml/qmlengine.cpp | 2 +- src/plugins/debugger/qml/qmlengine.h | 2 +- src/plugins/debugger/qml/qmlinspectoradapter.cpp | 2 +- src/plugins/debugger/qml/qmlinspectoradapter.h | 2 +- src/plugins/debugger/qml/qmlinspectoragent.cpp | 2 +- src/plugins/debugger/qml/qmlinspectoragent.h | 2 +- src/plugins/debugger/qml/qmllivetextpreview.cpp | 2 +- src/plugins/debugger/qml/qmllivetextpreview.h | 2 +- src/plugins/debugger/qml/qmlv8debuggerclient.cpp | 2 +- src/plugins/debugger/qml/qmlv8debuggerclient.h | 2 +- src/plugins/debugger/qml/qmlv8debuggerclientconstants.h | 2 +- src/plugins/debugger/qml/qscriptdebuggerclient.cpp | 2 +- src/plugins/debugger/qml/qscriptdebuggerclient.h | 2 +- src/plugins/debugger/registerhandler.cpp | 2 +- src/plugins/debugger/registerhandler.h | 2 +- src/plugins/debugger/registerpostmortemaction.cpp | 2 +- src/plugins/debugger/registerpostmortemaction.h | 2 +- src/plugins/debugger/registerwindow.cpp | 2 +- src/plugins/debugger/registerwindow.h | 2 +- src/plugins/debugger/shared/backtrace.cpp | 2 +- src/plugins/debugger/shared/backtrace.h | 2 +- src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp | 2 +- src/plugins/debugger/shared/cdbsymbolpathlisteditor.h | 2 +- src/plugins/debugger/shared/hostutils.cpp | 2 +- src/plugins/debugger/shared/hostutils.h | 2 +- src/plugins/debugger/shared/peutils.cpp | 2 +- src/plugins/debugger/shared/peutils.h | 2 +- src/plugins/debugger/shared/symbolpathsdialog.cpp | 2 +- src/plugins/debugger/shared/symbolpathsdialog.h | 2 +- src/plugins/debugger/snapshothandler.cpp | 2 +- src/plugins/debugger/snapshothandler.h | 2 +- src/plugins/debugger/snapshotwindow.cpp | 2 +- src/plugins/debugger/snapshotwindow.h | 2 +- src/plugins/debugger/sourceagent.cpp | 2 +- src/plugins/debugger/sourceagent.h | 2 +- src/plugins/debugger/sourcefileshandler.cpp | 2 +- src/plugins/debugger/sourcefileshandler.h | 2 +- src/plugins/debugger/sourcefileswindow.cpp | 2 +- src/plugins/debugger/sourcefileswindow.h | 2 +- src/plugins/debugger/sourceutils.cpp | 2 +- src/plugins/debugger/sourceutils.h | 2 +- src/plugins/debugger/stackframe.cpp | 2 +- src/plugins/debugger/stackframe.h | 2 +- src/plugins/debugger/stackhandler.cpp | 2 +- src/plugins/debugger/stackhandler.h | 2 +- src/plugins/debugger/stackwindow.cpp | 2 +- src/plugins/debugger/stackwindow.h | 2 +- src/plugins/debugger/threaddata.h | 2 +- src/plugins/debugger/threadshandler.cpp | 2 +- src/plugins/debugger/threadshandler.h | 2 +- src/plugins/debugger/threadswindow.cpp | 2 +- src/plugins/debugger/threadswindow.h | 2 +- src/plugins/debugger/watchdata.cpp | 2 +- src/plugins/debugger/watchdata.h | 2 +- src/plugins/debugger/watchdelegatewidgets.cpp | 2 +- src/plugins/debugger/watchdelegatewidgets.h | 2 +- src/plugins/debugger/watchhandler.cpp | 2 +- src/plugins/debugger/watchhandler.h | 2 +- src/plugins/debugger/watchutils.cpp | 2 +- src/plugins/debugger/watchutils.h | 2 +- src/plugins/debugger/watchwindow.cpp | 2 +- src/plugins/debugger/watchwindow.h | 2 +- src/plugins/designer/Designer.pluginspec.in | 2 +- src/plugins/designer/codemodelhelpers.cpp | 2 +- src/plugins/designer/codemodelhelpers.h | 2 +- src/plugins/designer/cpp/cppsettingspage.cpp | 2 +- src/plugins/designer/cpp/cppsettingspage.h | 2 +- src/plugins/designer/cpp/formclasswizard.cpp | 2 +- src/plugins/designer/cpp/formclasswizard.h | 2 +- src/plugins/designer/cpp/formclasswizarddialog.cpp | 2 +- src/plugins/designer/cpp/formclasswizarddialog.h | 2 +- src/plugins/designer/cpp/formclasswizardpage.cpp | 2 +- src/plugins/designer/cpp/formclasswizardpage.h | 2 +- src/plugins/designer/cpp/formclasswizardparameters.cpp | 2 +- src/plugins/designer/cpp/formclasswizardparameters.h | 2 +- src/plugins/designer/designer_export.h | 2 +- src/plugins/designer/designerconstants.h | 2 +- src/plugins/designer/designercontext.cpp | 2 +- src/plugins/designer/designercontext.h | 2 +- src/plugins/designer/designerxmleditorwidget.cpp | 2 +- src/plugins/designer/designerxmleditorwidget.h | 2 +- src/plugins/designer/editordata.h | 2 +- src/plugins/designer/editorwidget.cpp | 2 +- src/plugins/designer/editorwidget.h | 2 +- src/plugins/designer/formeditorfactory.cpp | 2 +- src/plugins/designer/formeditorfactory.h | 2 +- src/plugins/designer/formeditorplugin.cpp | 2 +- src/plugins/designer/formeditorplugin.h | 2 +- src/plugins/designer/formeditorstack.cpp | 2 +- src/plugins/designer/formeditorstack.h | 2 +- src/plugins/designer/formeditorw.cpp | 2 +- src/plugins/designer/formeditorw.h | 2 +- src/plugins/designer/formtemplatewizardpage.cpp | 2 +- src/plugins/designer/formtemplatewizardpage.h | 2 +- src/plugins/designer/formwindoweditor.cpp | 2 +- src/plugins/designer/formwindoweditor.h | 2 +- src/plugins/designer/formwindowfile.cpp | 2 +- src/plugins/designer/formwindowfile.h | 2 +- src/plugins/designer/formwizard.cpp | 2 +- src/plugins/designer/formwizard.h | 2 +- src/plugins/designer/formwizarddialog.cpp | 2 +- src/plugins/designer/formwizarddialog.h | 2 +- src/plugins/designer/gotoslot_test.cpp | 2 +- src/plugins/designer/qt_private/abstractnewformwidget_p.h | 2 +- src/plugins/designer/qt_private/abstractoptionspage_p.h | 2 +- src/plugins/designer/qt_private/abstractsettings_p.h | 2 +- src/plugins/designer/qt_private/formwindowbase_p.h | 2 +- src/plugins/designer/qt_private/iconloader_p.h | 2 +- src/plugins/designer/qt_private/pluginmanager_p.h | 2 +- .../designer/qt_private/qdesigner_formwindowmanager_p.h | 2 +- src/plugins/designer/qt_private/qdesigner_integration_p.h | 2 +- src/plugins/designer/qt_private/qsimpleresource_p.h | 2 +- src/plugins/designer/qt_private/qtresourcemodel_p.h | 2 +- src/plugins/designer/qt_private/shared_enums_p.h | 2 +- src/plugins/designer/qt_private/shared_global_p.h | 2 +- src/plugins/designer/qtcreatorintegration.cpp | 2 +- src/plugins/designer/qtcreatorintegration.h | 2 +- src/plugins/designer/qtdesignerformclasscodegenerator.cpp | 2 +- src/plugins/designer/qtdesignerformclasscodegenerator.h | 2 +- src/plugins/designer/resourcehandler.cpp | 2 +- src/plugins/designer/resourcehandler.h | 2 +- src/plugins/designer/settingsmanager.cpp | 2 +- src/plugins/designer/settingsmanager.h | 2 +- src/plugins/designer/settingspage.cpp | 2 +- src/plugins/designer/settingspage.h | 2 +- src/plugins/designer/syncqtheader.sh | 2 +- src/plugins/diffeditor/DiffEditor.pluginspec.in | 2 +- src/plugins/diffeditor/diffeditor.cpp | 2 +- src/plugins/diffeditor/diffeditor.h | 2 +- src/plugins/diffeditor/diffeditor_global.h | 2 +- src/plugins/diffeditor/diffeditorconstants.h | 2 +- src/plugins/diffeditor/diffeditorfactory.cpp | 2 +- src/plugins/diffeditor/diffeditorfactory.h | 2 +- src/plugins/diffeditor/diffeditorfile.cpp | 2 +- src/plugins/diffeditor/diffeditorfile.h | 2 +- src/plugins/diffeditor/diffeditorplugin.cpp | 2 +- src/plugins/diffeditor/diffeditorplugin.h | 2 +- src/plugins/diffeditor/diffeditorwidget.cpp | 2 +- src/plugins/diffeditor/diffeditorwidget.h | 2 +- src/plugins/diffeditor/differ.cpp | 2 +- src/plugins/diffeditor/differ.h | 2 +- src/plugins/diffeditor/diffshoweditor.cpp | 2 +- src/plugins/diffeditor/diffshoweditor.h | 2 +- src/plugins/diffeditor/diffshoweditorfactory.cpp | 2 +- src/plugins/diffeditor/diffshoweditorfactory.h | 2 +- src/plugins/fakevim/FakeVim.pluginspec.in | 2 +- src/plugins/fakevim/fakevim_test.cpp | 2 +- src/plugins/fakevim/fakevimactions.cpp | 2 +- src/plugins/fakevim/fakevimactions.h | 2 +- src/plugins/fakevim/fakevimhandler.cpp | 2 +- src/plugins/fakevim/fakevimhandler.h | 2 +- src/plugins/fakevim/fakevimplugin.cpp | 2 +- src/plugins/fakevim/fakevimplugin.h | 2 +- src/plugins/find/Find.pluginspec.in | 2 +- src/plugins/find/basetextfind.cpp | 2 +- src/plugins/find/basetextfind.h | 2 +- src/plugins/find/currentdocumentfind.cpp | 2 +- src/plugins/find/currentdocumentfind.h | 2 +- src/plugins/find/find_global.h | 2 +- src/plugins/find/findplugin.cpp | 2 +- src/plugins/find/findplugin.h | 2 +- src/plugins/find/findtoolbar.cpp | 2 +- src/plugins/find/findtoolbar.h | 2 +- src/plugins/find/findtoolwindow.cpp | 2 +- src/plugins/find/findtoolwindow.h | 2 +- src/plugins/find/ifindfilter.cpp | 2 +- src/plugins/find/ifindfilter.h | 2 +- src/plugins/find/ifindsupport.cpp | 2 +- src/plugins/find/ifindsupport.h | 2 +- src/plugins/find/searchresulttreeitemdelegate.cpp | 2 +- src/plugins/find/searchresulttreeitemdelegate.h | 2 +- src/plugins/find/searchresulttreeitemroles.h | 2 +- src/plugins/find/searchresulttreeitems.cpp | 2 +- src/plugins/find/searchresulttreeitems.h | 2 +- src/plugins/find/searchresulttreemodel.cpp | 2 +- src/plugins/find/searchresulttreemodel.h | 2 +- src/plugins/find/searchresulttreeview.cpp | 2 +- src/plugins/find/searchresulttreeview.h | 2 +- src/plugins/find/searchresultwidget.cpp | 2 +- src/plugins/find/searchresultwidget.h | 2 +- src/plugins/find/searchresultwindow.cpp | 2 +- src/plugins/find/searchresultwindow.h | 2 +- src/plugins/find/textfindconstants.h | 2 +- src/plugins/find/treeviewfind.cpp | 2 +- src/plugins/find/treeviewfind.h | 2 +- .../GenericProjectManager.pluginspec.in | 2 +- .../genericprojectmanager/filesselectionwizardpage.cpp | 2 +- .../genericprojectmanager/filesselectionwizardpage.h | 2 +- .../genericprojectmanager/genericbuildconfiguration.cpp | 2 +- .../genericprojectmanager/genericbuildconfiguration.h | 2 +- src/plugins/genericprojectmanager/genericmakestep.cpp | 2 +- src/plugins/genericprojectmanager/genericmakestep.h | 2 +- src/plugins/genericprojectmanager/genericproject.cpp | 2 +- src/plugins/genericprojectmanager/genericproject.h | 2 +- src/plugins/genericprojectmanager/genericprojectconstants.h | 2 +- .../genericprojectmanager/genericprojectfileseditor.cpp | 2 +- .../genericprojectmanager/genericprojectfileseditor.h | 2 +- src/plugins/genericprojectmanager/genericprojectmanager.cpp | 2 +- src/plugins/genericprojectmanager/genericprojectmanager.h | 2 +- src/plugins/genericprojectmanager/genericprojectnodes.cpp | 2 +- src/plugins/genericprojectmanager/genericprojectnodes.h | 2 +- src/plugins/genericprojectmanager/genericprojectplugin.cpp | 2 +- src/plugins/genericprojectmanager/genericprojectplugin.h | 2 +- src/plugins/genericprojectmanager/genericprojectwizard.cpp | 2 +- src/plugins/genericprojectmanager/genericprojectwizard.h | 2 +- src/plugins/genericprojectmanager/pkgconfigtool.cpp | 2 +- src/plugins/genericprojectmanager/pkgconfigtool.h | 2 +- src/plugins/genericprojectmanager/selectablefilesmodel.cpp | 2 +- src/plugins/genericprojectmanager/selectablefilesmodel.h | 2 +- src/plugins/git/Git.pluginspec.in | 2 +- src/plugins/git/annotationhighlighter.cpp | 2 +- src/plugins/git/annotationhighlighter.h | 2 +- src/plugins/git/branchadddialog.cpp | 2 +- src/plugins/git/branchadddialog.h | 2 +- src/plugins/git/branchcheckoutdialog.cpp | 2 +- src/plugins/git/branchcheckoutdialog.h | 2 +- src/plugins/git/branchdialog.cpp | 2 +- src/plugins/git/branchdialog.h | 2 +- src/plugins/git/branchmodel.cpp | 2 +- src/plugins/git/branchmodel.h | 2 +- src/plugins/git/changeselectiondialog.cpp | 2 +- src/plugins/git/changeselectiondialog.h | 2 +- src/plugins/git/clonewizard.cpp | 2 +- src/plugins/git/clonewizard.h | 2 +- src/plugins/git/clonewizardpage.cpp | 2 +- src/plugins/git/clonewizardpage.h | 2 +- src/plugins/git/commitdata.cpp | 2 +- src/plugins/git/commitdata.h | 2 +- src/plugins/git/gerrit/gerritdialog.cpp | 2 +- src/plugins/git/gerrit/gerritdialog.h | 2 +- src/plugins/git/gerrit/gerritmodel.cpp | 2 +- src/plugins/git/gerrit/gerritmodel.h | 2 +- src/plugins/git/gerrit/gerritoptionspage.cpp | 2 +- src/plugins/git/gerrit/gerritoptionspage.h | 2 +- src/plugins/git/gerrit/gerritparameters.cpp | 2 +- src/plugins/git/gerrit/gerritparameters.h | 2 +- src/plugins/git/gerrit/gerritplugin.cpp | 2 +- src/plugins/git/gerrit/gerritplugin.h | 2 +- src/plugins/git/gerrit/gerritpushdialog.cpp | 2 +- src/plugins/git/gerrit/gerritpushdialog.h | 2 +- src/plugins/git/gitclient.cpp | 2 +- src/plugins/git/gitclient.h | 2 +- src/plugins/git/gitconstants.h | 2 +- src/plugins/git/giteditor.cpp | 2 +- src/plugins/git/giteditor.h | 2 +- src/plugins/git/githighlighters.cpp | 2 +- src/plugins/git/githighlighters.h | 2 +- src/plugins/git/gitorious/gitorious.cpp | 2 +- src/plugins/git/gitorious/gitorious.h | 2 +- src/plugins/git/gitorious/gitoriousclonewizard.cpp | 2 +- src/plugins/git/gitorious/gitoriousclonewizard.h | 2 +- src/plugins/git/gitorious/gitorioushostwidget.cpp | 2 +- src/plugins/git/gitorious/gitorioushostwidget.h | 2 +- src/plugins/git/gitorious/gitorioushostwizardpage.cpp | 2 +- src/plugins/git/gitorious/gitorioushostwizardpage.h | 2 +- src/plugins/git/gitorious/gitoriousprojectwidget.cpp | 2 +- src/plugins/git/gitorious/gitoriousprojectwidget.h | 2 +- src/plugins/git/gitorious/gitoriousprojectwizardpage.cpp | 2 +- src/plugins/git/gitorious/gitoriousprojectwizardpage.h | 2 +- src/plugins/git/gitorious/gitoriousrepositorywizardpage.cpp | 2 +- src/plugins/git/gitorious/gitoriousrepositorywizardpage.h | 2 +- src/plugins/git/gitplugin.cpp | 2 +- src/plugins/git/gitplugin.h | 2 +- src/plugins/git/gitsettings.cpp | 2 +- src/plugins/git/gitsettings.h | 2 +- src/plugins/git/gitsubmiteditor.cpp | 2 +- src/plugins/git/gitsubmiteditor.h | 2 +- src/plugins/git/gitsubmiteditorwidget.cpp | 2 +- src/plugins/git/gitsubmiteditorwidget.h | 2 +- src/plugins/git/gitutils.cpp | 2 +- src/plugins/git/gitutils.h | 2 +- src/plugins/git/gitversioncontrol.cpp | 2 +- src/plugins/git/gitversioncontrol.h | 2 +- src/plugins/git/logchangedialog.cpp | 2 +- src/plugins/git/logchangedialog.h | 2 +- src/plugins/git/mergetool.cpp | 2 +- src/plugins/git/mergetool.h | 2 +- src/plugins/git/remotedialog.cpp | 2 +- src/plugins/git/remotedialog.h | 2 +- src/plugins/git/remotemodel.cpp | 2 +- src/plugins/git/remotemodel.h | 2 +- src/plugins/git/settingspage.cpp | 2 +- src/plugins/git/settingspage.h | 2 +- src/plugins/git/stashdialog.cpp | 2 +- src/plugins/git/stashdialog.h | 2 +- src/plugins/glsleditor/GLSLEditor.pluginspec.in | 2 +- src/plugins/glsleditor/glslautocompleter.cpp | 2 +- src/plugins/glsleditor/glslautocompleter.h | 2 +- src/plugins/glsleditor/glslcompletionassist.cpp | 2 +- src/plugins/glsleditor/glslcompletionassist.h | 2 +- src/plugins/glsleditor/glsleditor.cpp | 2 +- src/plugins/glsleditor/glsleditor.h | 2 +- src/plugins/glsleditor/glsleditorconstants.h | 2 +- src/plugins/glsleditor/glsleditoreditable.cpp | 2 +- src/plugins/glsleditor/glsleditoreditable.h | 2 +- src/plugins/glsleditor/glsleditorfactory.cpp | 2 +- src/plugins/glsleditor/glsleditorfactory.h | 2 +- src/plugins/glsleditor/glsleditorplugin.cpp | 2 +- src/plugins/glsleditor/glsleditorplugin.h | 2 +- src/plugins/glsleditor/glslfilewizard.cpp | 2 +- src/plugins/glsleditor/glslfilewizard.h | 2 +- src/plugins/glsleditor/glslhighlighter.cpp | 2 +- src/plugins/glsleditor/glslhighlighter.h | 2 +- src/plugins/glsleditor/glslhighlighterfactory.cpp | 2 +- src/plugins/glsleditor/glslhighlighterfactory.h | 2 +- src/plugins/glsleditor/glslhoverhandler.cpp | 2 +- src/plugins/glsleditor/glslhoverhandler.h | 2 +- src/plugins/glsleditor/glslindenter.cpp | 2 +- src/plugins/glsleditor/glslindenter.h | 2 +- src/plugins/glsleditor/reuse.cpp | 2 +- src/plugins/glsleditor/reuse.h | 2 +- src/plugins/helloworld/HelloWorld.pluginspec.in | 2 +- src/plugins/helloworld/helloworldplugin.cpp | 2 +- src/plugins/helloworld/helloworldplugin.h | 2 +- src/plugins/helloworld/helloworldwindow.cpp | 2 +- src/plugins/helloworld/helloworldwindow.h | 2 +- src/plugins/help/Help.pluginspec.in | 2 +- src/plugins/help/centralwidget.cpp | 2 +- src/plugins/help/centralwidget.h | 2 +- src/plugins/help/docsettingspage.cpp | 2 +- src/plugins/help/docsettingspage.h | 2 +- src/plugins/help/externalhelpwindow.cpp | 2 +- src/plugins/help/externalhelpwindow.h | 2 +- src/plugins/help/filtersettingspage.cpp | 2 +- src/plugins/help/filtersettingspage.h | 2 +- src/plugins/help/generalsettingspage.cpp | 2 +- src/plugins/help/generalsettingspage.h | 2 +- src/plugins/help/helpconstants.h | 2 +- src/plugins/help/helpfindsupport.cpp | 2 +- src/plugins/help/helpfindsupport.h | 2 +- src/plugins/help/helpindexfilter.cpp | 2 +- src/plugins/help/helpindexfilter.h | 2 +- src/plugins/help/helpmode.cpp | 2 +- src/plugins/help/helpmode.h | 2 +- src/plugins/help/helpplugin.cpp | 2 +- src/plugins/help/helpplugin.h | 2 +- src/plugins/help/helpviewer.cpp | 2 +- src/plugins/help/helpviewer.h | 2 +- src/plugins/help/helpviewer_p.h | 2 +- src/plugins/help/helpviewer_qtb.cpp | 2 +- src/plugins/help/helpviewer_qwv.cpp | 2 +- src/plugins/help/localhelpmanager.cpp | 2 +- src/plugins/help/localhelpmanager.h | 2 +- src/plugins/help/openpagesmanager.cpp | 2 +- src/plugins/help/openpagesmanager.h | 2 +- src/plugins/help/openpagesmodel.cpp | 2 +- src/plugins/help/openpagesmodel.h | 2 +- src/plugins/help/openpagesswitcher.cpp | 2 +- src/plugins/help/openpagesswitcher.h | 2 +- src/plugins/help/openpageswidget.cpp | 2 +- src/plugins/help/openpageswidget.h | 2 +- src/plugins/help/remotehelpfilter.cpp | 2 +- src/plugins/help/remotehelpfilter.h | 2 +- src/plugins/help/searchwidget.cpp | 2 +- src/plugins/help/searchwidget.h | 2 +- src/plugins/help/xbelsupport.cpp | 2 +- src/plugins/help/xbelsupport.h | 2 +- src/plugins/imageviewer/ImageViewer.pluginspec.in | 2 +- src/plugins/imageviewer/imageview.cpp | 4 ++-- src/plugins/imageviewer/imageview.h | 4 ++-- src/plugins/imageviewer/imageviewer.cpp | 4 ++-- src/plugins/imageviewer/imageviewer.h | 4 ++-- src/plugins/imageviewer/imagevieweractionhandler.cpp | 4 ++-- src/plugins/imageviewer/imagevieweractionhandler.h | 4 ++-- src/plugins/imageviewer/imageviewerconstants.h | 4 ++-- src/plugins/imageviewer/imageviewerfactory.cpp | 4 ++-- src/plugins/imageviewer/imageviewerfactory.h | 4 ++-- src/plugins/imageviewer/imageviewerfile.cpp | 4 ++-- src/plugins/imageviewer/imageviewerfile.h | 4 ++-- src/plugins/imageviewer/imageviewerplugin.cpp | 4 ++-- src/plugins/imageviewer/imageviewerplugin.h | 4 ++-- src/plugins/ios/Ios.pluginspec.in | 2 +- src/plugins/ios/iosbuildstep.cpp | 2 +- src/plugins/ios/iosbuildstep.h | 2 +- src/plugins/ios/iosconfigurations.cpp | 2 +- src/plugins/ios/iosconfigurations.h | 2 +- src/plugins/ios/iosconstants.h | 2 +- src/plugins/ios/iosdebugsupport.cpp | 2 +- src/plugins/ios/iosdebugsupport.h | 2 +- src/plugins/ios/iosdeployconfiguration.cpp | 2 +- src/plugins/ios/iosdeployconfiguration.h | 2 +- src/plugins/ios/iosdeploystep.cpp | 2 +- src/plugins/ios/iosdeploystep.h | 2 +- src/plugins/ios/iosdeploystepfactory.cpp | 2 +- src/plugins/ios/iosdeploystepfactory.h | 2 +- src/plugins/ios/iosdeploystepwidget.cpp | 2 +- src/plugins/ios/iosdeploystepwidget.h | 2 +- src/plugins/ios/iosdevice.cpp | 2 +- src/plugins/ios/iosdevice.h | 2 +- src/plugins/ios/iosdevicefactory.cpp | 2 +- src/plugins/ios/iosdevicefactory.h | 2 +- src/plugins/ios/iosmanager.cpp | 2 +- src/plugins/ios/iosmanager.h | 2 +- src/plugins/ios/iosplugin.cpp | 2 +- src/plugins/ios/iosplugin.h | 2 +- src/plugins/ios/iosprobe.cpp | 2 +- src/plugins/ios/iosprobe.h | 2 +- src/plugins/ios/iosqtversion.cpp | 2 +- src/plugins/ios/iosqtversion.h | 2 +- src/plugins/ios/iosqtversionfactory.cpp | 2 +- src/plugins/ios/iosqtversionfactory.h | 2 +- src/plugins/ios/iosrunconfiguration.cpp | 2 +- src/plugins/ios/iosrunconfiguration.h | 2 +- src/plugins/ios/iosruncontrol.cpp | 2 +- src/plugins/ios/iosruncontrol.h | 2 +- src/plugins/ios/iosrunfactories.cpp | 2 +- src/plugins/ios/iosrunfactories.h | 2 +- src/plugins/ios/iosrunner.cpp | 2 +- src/plugins/ios/iosrunner.h | 2 +- src/plugins/ios/iossettingspage.cpp | 2 +- src/plugins/ios/iossettingspage.h | 2 +- src/plugins/ios/iossettingswidget.cpp | 2 +- src/plugins/ios/iossettingswidget.h | 2 +- src/plugins/ios/iossimulator.cpp | 2 +- src/plugins/ios/iossimulator.h | 2 +- src/plugins/ios/iossimulatorfactory.cpp | 2 +- src/plugins/ios/iossimulatorfactory.h | 2 +- src/plugins/ios/iostoolhandler.cpp | 2 +- src/plugins/ios/iostoolhandler.h | 2 +- src/plugins/locator/Locator.pluginspec.in | 2 +- src/plugins/locator/basefilefilter.cpp | 2 +- src/plugins/locator/basefilefilter.h | 2 +- src/plugins/locator/commandlocator.cpp | 2 +- src/plugins/locator/commandlocator.h | 2 +- src/plugins/locator/directoryfilter.cpp | 2 +- src/plugins/locator/directoryfilter.h | 2 +- src/plugins/locator/executefilter.cpp | 2 +- src/plugins/locator/executefilter.h | 2 +- src/plugins/locator/filesystemfilter.cpp | 2 +- src/plugins/locator/filesystemfilter.h | 2 +- src/plugins/locator/ilocatorfilter.cpp | 2 +- src/plugins/locator/ilocatorfilter.h | 2 +- src/plugins/locator/locator_global.h | 2 +- src/plugins/locator/locator_test.cpp | 2 +- src/plugins/locator/locatorconstants.h | 2 +- src/plugins/locator/locatorfiltersfilter.cpp | 2 +- src/plugins/locator/locatorfiltersfilter.h | 2 +- src/plugins/locator/locatorfiltertest.cpp | 2 +- src/plugins/locator/locatorfiltertest.h | 2 +- src/plugins/locator/locatormanager.cpp | 2 +- src/plugins/locator/locatormanager.h | 2 +- src/plugins/locator/locatorplugin.cpp | 2 +- src/plugins/locator/locatorplugin.h | 2 +- src/plugins/locator/locatorsearchutils.cpp | 2 +- src/plugins/locator/locatorsearchutils.h | 2 +- src/plugins/locator/locatorwidget.cpp | 2 +- src/plugins/locator/locatorwidget.h | 2 +- src/plugins/locator/opendocumentsfilter.cpp | 2 +- src/plugins/locator/opendocumentsfilter.h | 2 +- src/plugins/locator/settingspage.cpp | 2 +- src/plugins/locator/settingspage.h | 2 +- src/plugins/macros/Macros.pluginspec.in | 2 +- src/plugins/macros/actionmacrohandler.cpp | 2 +- src/plugins/macros/actionmacrohandler.h | 2 +- src/plugins/macros/findmacrohandler.cpp | 2 +- src/plugins/macros/findmacrohandler.h | 2 +- src/plugins/macros/imacrohandler.cpp | 2 +- src/plugins/macros/imacrohandler.h | 2 +- src/plugins/macros/macro.cpp | 2 +- src/plugins/macros/macro.h | 2 +- src/plugins/macros/macroevent.cpp | 2 +- src/plugins/macros/macroevent.h | 2 +- src/plugins/macros/macrolocatorfilter.cpp | 2 +- src/plugins/macros/macrolocatorfilter.h | 2 +- src/plugins/macros/macromanager.cpp | 2 +- src/plugins/macros/macromanager.h | 2 +- src/plugins/macros/macrooptionspage.cpp | 2 +- src/plugins/macros/macrooptionspage.h | 2 +- src/plugins/macros/macrooptionswidget.cpp | 2 +- src/plugins/macros/macrooptionswidget.h | 2 +- src/plugins/macros/macrosconstants.h | 2 +- src/plugins/macros/macrosplugin.cpp | 2 +- src/plugins/macros/macrosplugin.h | 2 +- src/plugins/macros/macrotextfind.cpp | 2 +- src/plugins/macros/macrotextfind.h | 2 +- src/plugins/macros/savedialog.cpp | 2 +- src/plugins/macros/savedialog.h | 2 +- src/plugins/macros/texteditormacrohandler.cpp | 2 +- src/plugins/macros/texteditormacrohandler.h | 2 +- src/plugins/mercurial/Mercurial.pluginspec.in | 2 +- src/plugins/mercurial/annotationhighlighter.cpp | 2 +- src/plugins/mercurial/annotationhighlighter.h | 2 +- src/plugins/mercurial/authenticationdialog.cpp | 2 +- src/plugins/mercurial/authenticationdialog.h | 2 +- src/plugins/mercurial/clonewizard.cpp | 2 +- src/plugins/mercurial/clonewizard.h | 2 +- src/plugins/mercurial/clonewizardpage.cpp | 2 +- src/plugins/mercurial/clonewizardpage.h | 2 +- src/plugins/mercurial/commiteditor.cpp | 2 +- src/plugins/mercurial/commiteditor.h | 2 +- src/plugins/mercurial/constants.h | 2 +- src/plugins/mercurial/mercurialclient.cpp | 2 +- src/plugins/mercurial/mercurialclient.h | 2 +- src/plugins/mercurial/mercurialcommitwidget.cpp | 2 +- src/plugins/mercurial/mercurialcommitwidget.h | 2 +- src/plugins/mercurial/mercurialcontrol.cpp | 2 +- src/plugins/mercurial/mercurialcontrol.h | 2 +- src/plugins/mercurial/mercurialeditor.cpp | 2 +- src/plugins/mercurial/mercurialeditor.h | 2 +- src/plugins/mercurial/mercurialplugin.cpp | 2 +- src/plugins/mercurial/mercurialplugin.h | 2 +- src/plugins/mercurial/mercurialsettings.cpp | 2 +- src/plugins/mercurial/mercurialsettings.h | 2 +- src/plugins/mercurial/optionspage.cpp | 2 +- src/plugins/mercurial/optionspage.h | 2 +- src/plugins/mercurial/revertdialog.cpp | 2 +- src/plugins/mercurial/revertdialog.h | 2 +- src/plugins/mercurial/srcdestdialog.cpp | 2 +- src/plugins/mercurial/srcdestdialog.h | 2 +- src/plugins/perforce/Perforce.pluginspec.in | 2 +- src/plugins/perforce/annotationhighlighter.cpp | 2 +- src/plugins/perforce/annotationhighlighter.h | 2 +- src/plugins/perforce/changenumberdialog.cpp | 2 +- src/plugins/perforce/changenumberdialog.h | 2 +- src/plugins/perforce/pendingchangesdialog.cpp | 2 +- src/plugins/perforce/pendingchangesdialog.h | 2 +- src/plugins/perforce/perforcechecker.cpp | 2 +- src/plugins/perforce/perforcechecker.h | 2 +- src/plugins/perforce/perforceconstants.h | 2 +- src/plugins/perforce/perforceeditor.cpp | 2 +- src/plugins/perforce/perforceeditor.h | 2 +- src/plugins/perforce/perforceplugin.cpp | 2 +- src/plugins/perforce/perforceplugin.h | 2 +- src/plugins/perforce/perforcesettings.cpp | 2 +- src/plugins/perforce/perforcesettings.h | 2 +- src/plugins/perforce/perforcesubmiteditor.cpp | 2 +- src/plugins/perforce/perforcesubmiteditor.h | 2 +- src/plugins/perforce/perforcesubmiteditorwidget.cpp | 2 +- src/plugins/perforce/perforcesubmiteditorwidget.h | 2 +- src/plugins/perforce/perforceversioncontrol.cpp | 2 +- src/plugins/perforce/perforceversioncontrol.h | 2 +- src/plugins/perforce/settingspage.cpp | 2 +- src/plugins/perforce/settingspage.h | 2 +- src/plugins/projectexplorer/ProjectExplorer.pluginspec.in | 2 +- src/plugins/projectexplorer/abi.cpp | 2 +- src/plugins/projectexplorer/abi.h | 2 +- src/plugins/projectexplorer/abiwidget.cpp | 2 +- src/plugins/projectexplorer/abiwidget.h | 2 +- src/plugins/projectexplorer/abstractmsvctoolchain.cpp | 2 +- src/plugins/projectexplorer/abstractmsvctoolchain.h | 2 +- src/plugins/projectexplorer/abstractprocessstep.cpp | 2 +- src/plugins/projectexplorer/abstractprocessstep.h | 2 +- src/plugins/projectexplorer/allprojectsfilter.cpp | 2 +- src/plugins/projectexplorer/allprojectsfilter.h | 2 +- src/plugins/projectexplorer/allprojectsfind.cpp | 2 +- src/plugins/projectexplorer/allprojectsfind.h | 2 +- src/plugins/projectexplorer/ansifilterparser.cpp | 2 +- src/plugins/projectexplorer/ansifilterparser.h | 2 +- src/plugins/projectexplorer/applicationlauncher.cpp | 2 +- src/plugins/projectexplorer/applicationlauncher.h | 2 +- src/plugins/projectexplorer/appoutputpane.cpp | 2 +- src/plugins/projectexplorer/appoutputpane.h | 2 +- src/plugins/projectexplorer/baseprojectwizarddialog.cpp | 2 +- src/plugins/projectexplorer/baseprojectwizarddialog.h | 2 +- src/plugins/projectexplorer/buildconfiguration.cpp | 2 +- src/plugins/projectexplorer/buildconfiguration.h | 2 +- src/plugins/projectexplorer/buildconfigurationmodel.cpp | 2 +- src/plugins/projectexplorer/buildconfigurationmodel.h | 2 +- src/plugins/projectexplorer/buildenvironmentwidget.cpp | 2 +- src/plugins/projectexplorer/buildenvironmentwidget.h | 2 +- src/plugins/projectexplorer/buildinfo.h | 2 +- src/plugins/projectexplorer/buildmanager.cpp | 2 +- src/plugins/projectexplorer/buildmanager.h | 2 +- src/plugins/projectexplorer/buildprogress.cpp | 2 +- src/plugins/projectexplorer/buildprogress.h | 2 +- src/plugins/projectexplorer/buildsettingspropertiespage.cpp | 2 +- src/plugins/projectexplorer/buildsettingspropertiespage.h | 2 +- src/plugins/projectexplorer/buildstep.cpp | 2 +- src/plugins/projectexplorer/buildstep.h | 2 +- src/plugins/projectexplorer/buildsteplist.cpp | 2 +- src/plugins/projectexplorer/buildsteplist.h | 2 +- src/plugins/projectexplorer/buildstepspage.cpp | 2 +- src/plugins/projectexplorer/buildstepspage.h | 2 +- src/plugins/projectexplorer/buildtargetinfo.h | 2 +- src/plugins/projectexplorer/cesdkhandler.cpp | 2 +- src/plugins/projectexplorer/cesdkhandler.h | 2 +- src/plugins/projectexplorer/clangparser.cpp | 2 +- src/plugins/projectexplorer/clangparser.h | 2 +- .../projectexplorer/codestylesettingspropertiespage.cpp | 2 +- .../projectexplorer/codestylesettingspropertiespage.h | 2 +- src/plugins/projectexplorer/compileoutputwindow.cpp | 2 +- src/plugins/projectexplorer/compileoutputwindow.h | 2 +- src/plugins/projectexplorer/copytaskhandler.cpp | 2 +- src/plugins/projectexplorer/copytaskhandler.h | 2 +- .../projectexplorer/corelistenercheckingforrunningbuild.cpp | 2 +- .../projectexplorer/corelistenercheckingforrunningbuild.h | 2 +- src/plugins/projectexplorer/currentprojectfilter.cpp | 2 +- src/plugins/projectexplorer/currentprojectfilter.h | 2 +- src/plugins/projectexplorer/currentprojectfind.cpp | 2 +- src/plugins/projectexplorer/currentprojectfind.h | 2 +- src/plugins/projectexplorer/customparser.cpp | 2 +- src/plugins/projectexplorer/customparser.h | 2 +- src/plugins/projectexplorer/customparserconfigdialog.cpp | 2 +- src/plugins/projectexplorer/customparserconfigdialog.h | 2 +- src/plugins/projectexplorer/customtoolchain.cpp | 2 +- src/plugins/projectexplorer/customtoolchain.h | 2 +- src/plugins/projectexplorer/customwizard/customwizard.cpp | 2 +- src/plugins/projectexplorer/customwizard/customwizard.h | 2 +- .../projectexplorer/customwizard/customwizardpage.cpp | 2 +- src/plugins/projectexplorer/customwizard/customwizardpage.h | 2 +- .../projectexplorer/customwizard/customwizardparameters.cpp | 2 +- .../projectexplorer/customwizard/customwizardparameters.h | 2 +- .../customwizard/customwizardpreprocessor.cpp | 2 +- .../projectexplorer/customwizard/customwizardpreprocessor.h | 2 +- .../customwizard/customwizardscriptgenerator.cpp | 2 +- .../customwizard/customwizardscriptgenerator.h | 2 +- src/plugins/projectexplorer/dependenciespanel.cpp | 2 +- src/plugins/projectexplorer/dependenciespanel.h | 2 +- src/plugins/projectexplorer/deployablefile.cpp | 2 +- src/plugins/projectexplorer/deployablefile.h | 2 +- src/plugins/projectexplorer/deployconfiguration.cpp | 2 +- src/plugins/projectexplorer/deployconfiguration.h | 2 +- src/plugins/projectexplorer/deployconfigurationmodel.cpp | 2 +- src/plugins/projectexplorer/deployconfigurationmodel.h | 2 +- src/plugins/projectexplorer/deploymentdata.h | 2 +- src/plugins/projectexplorer/devicesupport/desktopdevice.cpp | 2 +- src/plugins/projectexplorer/devicesupport/desktopdevice.h | 2 +- .../devicesupport/desktopdeviceconfigurationwidget.cpp | 2 +- .../devicesupport/desktopdeviceconfigurationwidget.h | 2 +- .../projectexplorer/devicesupport/desktopdevicefactory.cpp | 2 +- .../projectexplorer/devicesupport/desktopdevicefactory.h | 2 +- .../projectexplorer/devicesupport/desktopdeviceprocess.cpp | 2 +- .../projectexplorer/devicesupport/desktopdeviceprocess.h | 2 +- .../devicesupport/desktopprocesssignaloperation.cpp | 2 +- .../devicesupport/desktopprocesssignaloperation.h | 2 +- .../devicesupport/deviceapplicationrunner.cpp | 2 +- .../projectexplorer/devicesupport/deviceapplicationrunner.h | 2 +- .../projectexplorer/devicesupport/devicecheckbuildstep.cpp | 2 +- .../projectexplorer/devicesupport/devicecheckbuildstep.h | 2 +- .../devicesupport/devicefactoryselectiondialog.cpp | 2 +- .../devicesupport/devicefactoryselectiondialog.h | 2 +- src/plugins/projectexplorer/devicesupport/devicemanager.cpp | 2 +- src/plugins/projectexplorer/devicesupport/devicemanager.h | 2 +- .../projectexplorer/devicesupport/devicemanagermodel.cpp | 2 +- .../projectexplorer/devicesupport/devicemanagermodel.h | 2 +- src/plugins/projectexplorer/devicesupport/deviceprocess.cpp | 2 +- src/plugins/projectexplorer/devicesupport/deviceprocess.h | 2 +- .../projectexplorer/devicesupport/deviceprocessesdialog.cpp | 2 +- .../projectexplorer/devicesupport/deviceprocessesdialog.h | 2 +- .../projectexplorer/devicesupport/deviceprocesslist.cpp | 2 +- .../projectexplorer/devicesupport/deviceprocesslist.h | 2 +- .../projectexplorer/devicesupport/devicesettingspage.cpp | 2 +- .../projectexplorer/devicesupport/devicesettingspage.h | 2 +- .../projectexplorer/devicesupport/devicesettingswidget.cpp | 2 +- .../projectexplorer/devicesupport/devicesettingswidget.h | 2 +- .../projectexplorer/devicesupport/devicetestdialog.cpp | 2 +- .../projectexplorer/devicesupport/devicetestdialog.h | 2 +- .../devicesupport/deviceusedportsgatherer.cpp | 2 +- .../projectexplorer/devicesupport/deviceusedportsgatherer.h | 2 +- src/plugins/projectexplorer/devicesupport/idevice.cpp | 2 +- src/plugins/projectexplorer/devicesupport/idevice.h | 2 +- .../projectexplorer/devicesupport/idevicefactory.cpp | 2 +- src/plugins/projectexplorer/devicesupport/idevicefactory.h | 2 +- src/plugins/projectexplorer/devicesupport/idevicewidget.cpp | 2 +- src/plugins/projectexplorer/devicesupport/idevicewidget.h | 2 +- .../projectexplorer/devicesupport/localprocesslist.cpp | 2 +- .../projectexplorer/devicesupport/localprocesslist.h | 2 +- .../projectexplorer/devicesupport/sshdeviceprocess.cpp | 2 +- .../projectexplorer/devicesupport/sshdeviceprocess.h | 2 +- .../projectexplorer/devicesupport/sshdeviceprocesslist.cpp | 2 +- .../projectexplorer/devicesupport/sshdeviceprocesslist.h | 2 +- src/plugins/projectexplorer/doubletabwidget.cpp | 2 +- src/plugins/projectexplorer/doubletabwidget.h | 2 +- src/plugins/projectexplorer/editorconfiguration.cpp | 2 +- src/plugins/projectexplorer/editorconfiguration.h | 2 +- .../projectexplorer/editorsettingspropertiespage.cpp | 2 +- src/plugins/projectexplorer/editorsettingspropertiespage.h | 2 +- src/plugins/projectexplorer/environmentaspect.cpp | 2 +- src/plugins/projectexplorer/environmentaspect.h | 2 +- src/plugins/projectexplorer/environmentaspectwidget.cpp | 2 +- src/plugins/projectexplorer/environmentaspectwidget.h | 2 +- src/plugins/projectexplorer/environmentitemswidget.cpp | 2 +- src/plugins/projectexplorer/environmentitemswidget.h | 2 +- src/plugins/projectexplorer/environmentwidget.cpp | 2 +- src/plugins/projectexplorer/environmentwidget.h | 2 +- src/plugins/projectexplorer/foldernavigationwidget.cpp | 2 +- src/plugins/projectexplorer/foldernavigationwidget.h | 2 +- src/plugins/projectexplorer/gccparser.cpp | 2 +- src/plugins/projectexplorer/gccparser.h | 2 +- src/plugins/projectexplorer/gcctoolchain.cpp | 2 +- src/plugins/projectexplorer/gcctoolchain.h | 2 +- src/plugins/projectexplorer/gcctoolchainfactories.h | 2 +- src/plugins/projectexplorer/gnumakeparser.cpp | 2 +- src/plugins/projectexplorer/gnumakeparser.h | 2 +- src/plugins/projectexplorer/headerpath.h | 2 +- src/plugins/projectexplorer/importwidget.cpp | 2 +- src/plugins/projectexplorer/importwidget.h | 2 +- src/plugins/projectexplorer/ioutputparser.cpp | 2 +- src/plugins/projectexplorer/ioutputparser.h | 2 +- src/plugins/projectexplorer/ipotentialkit.cpp | 2 +- src/plugins/projectexplorer/ipotentialkit.h | 2 +- src/plugins/projectexplorer/iprojectmanager.h | 2 +- src/plugins/projectexplorer/iprojectproperties.h | 2 +- src/plugins/projectexplorer/itaskhandler.h | 2 +- src/plugins/projectexplorer/kit.cpp | 2 +- src/plugins/projectexplorer/kit.h | 2 +- src/plugins/projectexplorer/kitchooser.cpp | 2 +- src/plugins/projectexplorer/kitchooser.h | 2 +- src/plugins/projectexplorer/kitconfigwidget.cpp | 2 +- src/plugins/projectexplorer/kitconfigwidget.h | 2 +- src/plugins/projectexplorer/kitinformation.cpp | 2 +- src/plugins/projectexplorer/kitinformation.h | 2 +- src/plugins/projectexplorer/kitinformationconfigwidget.cpp | 2 +- src/plugins/projectexplorer/kitinformationconfigwidget.h | 2 +- src/plugins/projectexplorer/kitmanager.cpp | 2 +- src/plugins/projectexplorer/kitmanager.h | 2 +- src/plugins/projectexplorer/kitmanagerconfigwidget.cpp | 2 +- src/plugins/projectexplorer/kitmanagerconfigwidget.h | 2 +- src/plugins/projectexplorer/kitmodel.cpp | 2 +- src/plugins/projectexplorer/kitmodel.h | 2 +- src/plugins/projectexplorer/kitoptionspage.cpp | 2 +- src/plugins/projectexplorer/kitoptionspage.h | 2 +- src/plugins/projectexplorer/ldparser.cpp | 2 +- src/plugins/projectexplorer/ldparser.h | 2 +- src/plugins/projectexplorer/linuxiccparser.cpp | 2 +- src/plugins/projectexplorer/linuxiccparser.h | 2 +- .../projectexplorer/localapplicationrunconfiguration.cpp | 2 +- .../projectexplorer/localapplicationrunconfiguration.h | 2 +- src/plugins/projectexplorer/localapplicationruncontrol.cpp | 2 +- src/plugins/projectexplorer/localapplicationruncontrol.h | 2 +- src/plugins/projectexplorer/localenvironmentaspect.cpp | 2 +- src/plugins/projectexplorer/localenvironmentaspect.h | 2 +- src/plugins/projectexplorer/metatypedeclarations.h | 2 +- src/plugins/projectexplorer/miniprojecttargetselector.cpp | 2 +- src/plugins/projectexplorer/miniprojecttargetselector.h | 2 +- src/plugins/projectexplorer/msvcparser.cpp | 2 +- src/plugins/projectexplorer/msvcparser.h | 2 +- src/plugins/projectexplorer/msvctoolchain.cpp | 2 +- src/plugins/projectexplorer/msvctoolchain.h | 2 +- src/plugins/projectexplorer/namedwidget.cpp | 2 +- src/plugins/projectexplorer/namedwidget.h | 2 +- src/plugins/projectexplorer/nodesvisitor.cpp | 2 +- src/plugins/projectexplorer/nodesvisitor.h | 2 +- src/plugins/projectexplorer/osparser.cpp | 2 +- src/plugins/projectexplorer/osparser.h | 2 +- src/plugins/projectexplorer/outputparser_test.cpp | 2 +- src/plugins/projectexplorer/outputparser_test.h | 2 +- src/plugins/projectexplorer/pluginfilefactory.cpp | 2 +- src/plugins/projectexplorer/pluginfilefactory.h | 2 +- src/plugins/projectexplorer/processparameters.cpp | 2 +- src/plugins/projectexplorer/processparameters.h | 2 +- src/plugins/projectexplorer/processstep.cpp | 2 +- src/plugins/projectexplorer/processstep.h | 2 +- src/plugins/projectexplorer/project.cpp | 2 +- src/plugins/projectexplorer/project.h | 2 +- src/plugins/projectexplorer/projectconfiguration.cpp | 2 +- src/plugins/projectexplorer/projectconfiguration.h | 2 +- src/plugins/projectexplorer/projectexplorer.cpp | 2 +- src/plugins/projectexplorer/projectexplorer.h | 2 +- src/plugins/projectexplorer/projectexplorer_export.h | 2 +- src/plugins/projectexplorer/projectexplorerconstants.h | 2 +- src/plugins/projectexplorer/projectexplorersettings.h | 2 +- src/plugins/projectexplorer/projectexplorersettingspage.cpp | 2 +- src/plugins/projectexplorer/projectexplorersettingspage.h | 2 +- src/plugins/projectexplorer/projectfilewizardextension.cpp | 2 +- src/plugins/projectexplorer/projectfilewizardextension.h | 2 +- src/plugins/projectexplorer/projectimporter.cpp | 2 +- src/plugins/projectexplorer/projectimporter.h | 2 +- src/plugins/projectexplorer/projectmacroexpander.cpp | 2 +- src/plugins/projectexplorer/projectmacroexpander.h | 2 +- src/plugins/projectexplorer/projectmodels.cpp | 2 +- src/plugins/projectexplorer/projectmodels.h | 2 +- src/plugins/projectexplorer/projectnodes.cpp | 2 +- src/plugins/projectexplorer/projectnodes.h | 2 +- src/plugins/projectexplorer/projecttreewidget.cpp | 2 +- src/plugins/projectexplorer/projecttreewidget.h | 2 +- src/plugins/projectexplorer/projectwelcomepage.cpp | 2 +- src/plugins/projectexplorer/projectwelcomepage.h | 2 +- src/plugins/projectexplorer/projectwindow.cpp | 2 +- src/plugins/projectexplorer/projectwindow.h | 2 +- src/plugins/projectexplorer/projectwizardpage.cpp | 2 +- src/plugins/projectexplorer/projectwizardpage.h | 2 +- .../projectexplorer/publishing/ipublishingwizardfactory.cpp | 2 +- src/plugins/projectexplorer/removetaskhandler.cpp | 2 +- src/plugins/projectexplorer/removetaskhandler.h | 2 +- src/plugins/projectexplorer/runconfiguration.cpp | 2 +- src/plugins/projectexplorer/runconfiguration.h | 2 +- src/plugins/projectexplorer/runconfigurationmodel.cpp | 2 +- src/plugins/projectexplorer/runconfigurationmodel.h | 2 +- src/plugins/projectexplorer/runsettingspropertiespage.cpp | 2 +- src/plugins/projectexplorer/runsettingspropertiespage.h | 2 +- src/plugins/projectexplorer/session.cpp | 2 +- src/plugins/projectexplorer/session.h | 2 +- src/plugins/projectexplorer/sessiondialog.cpp | 2 +- src/plugins/projectexplorer/sessiondialog.h | 2 +- src/plugins/projectexplorer/settingsaccessor.cpp | 2 +- src/plugins/projectexplorer/settingsaccessor.h | 2 +- src/plugins/projectexplorer/showineditortaskhandler.cpp | 2 +- src/plugins/projectexplorer/showineditortaskhandler.h | 2 +- src/plugins/projectexplorer/showoutputtaskhandler.cpp | 2 +- src/plugins/projectexplorer/showoutputtaskhandler.h | 2 +- src/plugins/projectexplorer/target.cpp | 2 +- src/plugins/projectexplorer/target.h | 2 +- src/plugins/projectexplorer/targetselector.cpp | 2 +- src/plugins/projectexplorer/targetselector.h | 2 +- src/plugins/projectexplorer/targetsettingspanel.cpp | 2 +- src/plugins/projectexplorer/targetsettingspanel.h | 2 +- src/plugins/projectexplorer/targetsettingswidget.cpp | 2 +- src/plugins/projectexplorer/targetsettingswidget.h | 2 +- src/plugins/projectexplorer/targetsetuppage.cpp | 2 +- src/plugins/projectexplorer/targetsetuppage.h | 2 +- src/plugins/projectexplorer/targetsetupwidget.cpp | 2 +- src/plugins/projectexplorer/targetsetupwidget.h | 2 +- src/plugins/projectexplorer/task.cpp | 2 +- src/plugins/projectexplorer/task.h | 2 +- src/plugins/projectexplorer/taskhub.cpp | 2 +- src/plugins/projectexplorer/taskhub.h | 2 +- src/plugins/projectexplorer/taskmodel.cpp | 2 +- src/plugins/projectexplorer/taskmodel.h | 2 +- src/plugins/projectexplorer/taskwindow.cpp | 2 +- src/plugins/projectexplorer/taskwindow.h | 2 +- src/plugins/projectexplorer/toolchain.cpp | 2 +- src/plugins/projectexplorer/toolchain.h | 2 +- src/plugins/projectexplorer/toolchainconfigwidget.cpp | 2 +- src/plugins/projectexplorer/toolchainconfigwidget.h | 2 +- src/plugins/projectexplorer/toolchainmanager.cpp | 2 +- src/plugins/projectexplorer/toolchainmanager.h | 2 +- src/plugins/projectexplorer/toolchainoptionspage.cpp | 2 +- src/plugins/projectexplorer/toolchainoptionspage.h | 2 +- src/plugins/projectexplorer/unconfiguredprojectpanel.cpp | 2 +- src/plugins/projectexplorer/unconfiguredprojectpanel.h | 2 +- src/plugins/projectexplorer/vcsannotatetaskhandler.cpp | 2 +- src/plugins/projectexplorer/vcsannotatetaskhandler.h | 2 +- src/plugins/projectexplorer/wincetoolchain.cpp | 2 +- src/plugins/projectexplorer/wincetoolchain.h | 2 +- src/plugins/projectexplorer/windebuginterface.cpp | 2 +- src/plugins/projectexplorer/windebuginterface.h | 2 +- src/plugins/pythoneditor/PythonEditor.pluginspec.in | 2 +- src/plugins/pythoneditor/pythoneditor.cpp | 2 +- src/plugins/pythoneditor/pythoneditor.h | 2 +- src/plugins/pythoneditor/pythoneditorconstants.h | 2 +- src/plugins/pythoneditor/pythoneditorfactory.cpp | 2 +- src/plugins/pythoneditor/pythoneditorfactory.h | 2 +- src/plugins/pythoneditor/pythoneditorplugin.cpp | 2 +- src/plugins/pythoneditor/pythoneditorplugin.h | 2 +- src/plugins/pythoneditor/pythoneditorwidget.cpp | 2 +- src/plugins/pythoneditor/pythoneditorwidget.h | 2 +- src/plugins/pythoneditor/tools/lexical/pythonformattoken.h | 2 +- src/plugins/pythoneditor/tools/lexical/pythonscanner.cpp | 2 +- src/plugins/pythoneditor/tools/lexical/pythonscanner.h | 2 +- src/plugins/pythoneditor/tools/lexical/sourcecodestream.h | 2 +- src/plugins/pythoneditor/tools/pythonhighlighter.cpp | 2 +- src/plugins/pythoneditor/tools/pythonhighlighter.h | 2 +- src/plugins/pythoneditor/tools/pythonhighlighterfactory.cpp | 2 +- src/plugins/pythoneditor/tools/pythonhighlighterfactory.h | 2 +- src/plugins/pythoneditor/tools/pythonindenter.cpp | 2 +- src/plugins/pythoneditor/tools/pythonindenter.h | 2 +- src/plugins/pythoneditor/wizard/pythonclassnamepage.cpp | 2 +- src/plugins/pythoneditor/wizard/pythonclassnamepage.h | 2 +- src/plugins/pythoneditor/wizard/pythonclasswizard.cpp | 2 +- src/plugins/pythoneditor/wizard/pythonclasswizard.h | 2 +- src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp | 2 +- src/plugins/pythoneditor/wizard/pythonclasswizarddialog.h | 2 +- src/plugins/pythoneditor/wizard/pythonfilewizard.cpp | 2 +- src/plugins/pythoneditor/wizard/pythonfilewizard.h | 2 +- src/plugins/pythoneditor/wizard/pythonsourcegenerator.cpp | 2 +- src/plugins/pythoneditor/wizard/pythonsourcegenerator.h | 2 +- .../qbsprojectmanager/QbsProjectManager.pluginspec.in | 2 +- src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp | 2 +- src/plugins/qbsprojectmanager/defaultpropertyprovider.h | 2 +- src/plugins/qbsprojectmanager/propertyprovider.h | 2 +- src/plugins/qbsprojectmanager/qbsbuildconfiguration.cpp | 2 +- src/plugins/qbsprojectmanager/qbsbuildconfiguration.h | 2 +- .../qbsprojectmanager/qbsbuildconfigurationwidget.cpp | 2 +- src/plugins/qbsprojectmanager/qbsbuildconfigurationwidget.h | 2 +- src/plugins/qbsprojectmanager/qbsbuildinfo.h | 2 +- src/plugins/qbsprojectmanager/qbsbuildstep.cpp | 2 +- src/plugins/qbsprojectmanager/qbsbuildstep.h | 2 +- src/plugins/qbsprojectmanager/qbscleanstep.cpp | 2 +- src/plugins/qbsprojectmanager/qbscleanstep.h | 2 +- src/plugins/qbsprojectmanager/qbsconstants.h | 2 +- .../qbsprojectmanager/qbsdeployconfigurationfactory.cpp | 2 +- .../qbsprojectmanager/qbsdeployconfigurationfactory.h | 2 +- src/plugins/qbsprojectmanager/qbsinstallstep.cpp | 2 +- src/plugins/qbsprojectmanager/qbsinstallstep.h | 2 +- src/plugins/qbsprojectmanager/qbslogsink.cpp | 2 +- src/plugins/qbsprojectmanager/qbslogsink.h | 2 +- src/plugins/qbsprojectmanager/qbsnodes.cpp | 2 +- src/plugins/qbsprojectmanager/qbsnodes.h | 2 +- src/plugins/qbsprojectmanager/qbsparser.cpp | 2 +- src/plugins/qbsprojectmanager/qbsparser.h | 2 +- src/plugins/qbsprojectmanager/qbsproject.cpp | 2 +- src/plugins/qbsprojectmanager/qbsproject.h | 2 +- src/plugins/qbsprojectmanager/qbsprojectfile.cpp | 2 +- src/plugins/qbsprojectmanager/qbsprojectfile.h | 2 +- src/plugins/qbsprojectmanager/qbsprojectmanager.cpp | 2 +- src/plugins/qbsprojectmanager/qbsprojectmanager.h | 2 +- src/plugins/qbsprojectmanager/qbsprojectmanager_global.h | 2 +- src/plugins/qbsprojectmanager/qbsprojectmanagerconstants.h | 2 +- src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.cpp | 2 +- src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.h | 2 +- src/plugins/qbsprojectmanager/qbspropertylineedit.cpp | 2 +- src/plugins/qbsprojectmanager/qbspropertylineedit.h | 2 +- src/plugins/qbsprojectmanager/qbsrunconfiguration.cpp | 2 +- src/plugins/qbsprojectmanager/qbsrunconfiguration.h | 2 +- src/plugins/qbsprojectmanager/qbsstep.cpp | 2 +- src/plugins/qbsprojectmanager/qbsstep.h | 2 +- .../qmakeprojectmanager/QmakeProjectManager.pluginspec.in | 2 +- src/plugins/qmakeprojectmanager/addlibrarywizard.cpp | 2 +- src/plugins/qmakeprojectmanager/addlibrarywizard.h | 2 +- src/plugins/qmakeprojectmanager/applicationlauncher.h | 2 +- .../customwidgetwizard/classdefinition.cpp | 2 +- .../customwidgetwizard/classdefinition.h | 2 +- .../qmakeprojectmanager/customwidgetwizard/classlist.cpp | 2 +- .../qmakeprojectmanager/customwidgetwizard/classlist.h | 2 +- .../customwidgetwizard/customwidgetpluginwizardpage.cpp | 2 +- .../customwidgetwizard/customwidgetpluginwizardpage.h | 2 +- .../customwidgetwizard/customwidgetwidgetswizardpage.cpp | 2 +- .../customwidgetwizard/customwidgetwidgetswizardpage.h | 2 +- .../customwidgetwizard/customwidgetwizard.cpp | 2 +- .../customwidgetwizard/customwidgetwizard.h | 2 +- .../customwidgetwizard/customwidgetwizarddialog.cpp | 2 +- .../customwidgetwizard/customwidgetwizarddialog.h | 2 +- .../customwidgetwizard/filenamingparameters.h | 2 +- .../customwidgetwizard/plugingenerator.cpp | 2 +- .../customwidgetwizard/plugingenerator.h | 2 +- .../qmakeprojectmanager/customwidgetwizard/pluginoptions.h | 2 +- .../qmakeprojectmanager/desktopqmakerunconfiguration.cpp | 2 +- .../qmakeprojectmanager/desktopqmakerunconfiguration.h | 2 +- src/plugins/qmakeprojectmanager/externaleditors.cpp | 2 +- src/plugins/qmakeprojectmanager/externaleditors.h | 2 +- src/plugins/qmakeprojectmanager/findqmakeprofiles.cpp | 2 +- src/plugins/qmakeprojectmanager/findqmakeprofiles.h | 2 +- .../qmakeprojectmanager/librarydetailscontroller.cpp | 2 +- src/plugins/qmakeprojectmanager/librarydetailscontroller.h | 2 +- src/plugins/qmakeprojectmanager/makestep.cpp | 2 +- src/plugins/qmakeprojectmanager/makestep.h | 2 +- src/plugins/qmakeprojectmanager/profilecompletionassist.cpp | 2 +- src/plugins/qmakeprojectmanager/profilecompletionassist.h | 2 +- src/plugins/qmakeprojectmanager/profileeditor.cpp | 2 +- src/plugins/qmakeprojectmanager/profileeditor.h | 2 +- src/plugins/qmakeprojectmanager/profileeditorfactory.cpp | 2 +- src/plugins/qmakeprojectmanager/profileeditorfactory.h | 2 +- src/plugins/qmakeprojectmanager/profilehighlighter.cpp | 2 +- src/plugins/qmakeprojectmanager/profilehighlighter.h | 2 +- .../qmakeprojectmanager/profilehighlighterfactory.cpp | 2 +- src/plugins/qmakeprojectmanager/profilehighlighterfactory.h | 2 +- src/plugins/qmakeprojectmanager/profilehoverhandler.cpp | 2 +- src/plugins/qmakeprojectmanager/profilehoverhandler.h | 2 +- src/plugins/qmakeprojectmanager/qmakebuildconfiguration.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakebuildconfiguration.h | 2 +- src/plugins/qmakeprojectmanager/qmakebuildinfo.h | 2 +- src/plugins/qmakeprojectmanager/qmakekitconfigwidget.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakekitconfigwidget.h | 2 +- src/plugins/qmakeprojectmanager/qmakekitinformation.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakekitinformation.h | 2 +- src/plugins/qmakeprojectmanager/qmakenodes.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakenodes.h | 2 +- src/plugins/qmakeprojectmanager/qmakeparser.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakeparser.h | 2 +- src/plugins/qmakeprojectmanager/qmakeproject.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakeproject.h | 2 +- .../qmakeprojectmanager/qmakeprojectconfigwidget.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakeprojectconfigwidget.h | 2 +- src/plugins/qmakeprojectmanager/qmakeprojectimporter.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakeprojectimporter.h | 2 +- src/plugins/qmakeprojectmanager/qmakeprojectmanager.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakeprojectmanager.h | 2 +- .../qmakeprojectmanager/qmakeprojectmanager_global.h | 2 +- .../qmakeprojectmanager/qmakeprojectmanagerconstants.h | 2 +- .../qmakeprojectmanager/qmakeprojectmanagerplugin.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.h | 2 +- .../qmakeprojectmanager/qmakerunconfigurationfactory.cpp | 2 +- .../qmakeprojectmanager/qmakerunconfigurationfactory.h | 2 +- src/plugins/qmakeprojectmanager/qmakestep.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakestep.h | 2 +- src/plugins/qmakeprojectmanager/qtmodulesinfo.cpp | 2 +- src/plugins/qmakeprojectmanager/qtmodulesinfo.h | 2 +- .../qmakeprojectmanager/wizards/abstractmobileapp.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/abstractmobileapp.h | 2 +- .../qmakeprojectmanager/wizards/abstractmobileappwizard.cpp | 2 +- .../qmakeprojectmanager/wizards/abstractmobileappwizard.h | 2 +- .../qmakeprojectmanager/wizards/consoleappwizard.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/consoleappwizard.h | 2 +- .../qmakeprojectmanager/wizards/consoleappwizarddialog.cpp | 2 +- .../qmakeprojectmanager/wizards/consoleappwizarddialog.h | 2 +- .../qmakeprojectmanager/wizards/emptyprojectwizard.cpp | 2 +- .../qmakeprojectmanager/wizards/emptyprojectwizard.h | 2 +- .../wizards/emptyprojectwizarddialog.cpp | 2 +- .../qmakeprojectmanager/wizards/emptyprojectwizarddialog.h | 2 +- src/plugins/qmakeprojectmanager/wizards/filespage.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/filespage.h | 2 +- src/plugins/qmakeprojectmanager/wizards/guiappwizard.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/guiappwizard.h | 2 +- .../qmakeprojectmanager/wizards/guiappwizarddialog.cpp | 2 +- .../qmakeprojectmanager/wizards/guiappwizarddialog.h | 2 +- src/plugins/qmakeprojectmanager/wizards/html5app.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/html5app.h | 2 +- src/plugins/qmakeprojectmanager/wizards/html5appwizard.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/html5appwizard.h | 2 +- .../qmakeprojectmanager/wizards/html5appwizardpages.cpp | 2 +- .../qmakeprojectmanager/wizards/html5appwizardpages.h | 2 +- .../qmakeprojectmanager/wizards/libraryparameters.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/libraryparameters.h | 2 +- src/plugins/qmakeprojectmanager/wizards/librarywizard.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/librarywizard.h | 2 +- .../qmakeprojectmanager/wizards/librarywizarddialog.cpp | 2 +- .../qmakeprojectmanager/wizards/librarywizarddialog.h | 2 +- src/plugins/qmakeprojectmanager/wizards/modulespage.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/modulespage.h | 2 +- .../qmakeprojectmanager/wizards/qtprojectparameters.cpp | 2 +- .../qmakeprojectmanager/wizards/qtprojectparameters.h | 2 +- src/plugins/qmakeprojectmanager/wizards/qtquickapp.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/qtquickapp.h | 2 +- .../qmakeprojectmanager/wizards/qtquickappwizard.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/qtquickappwizard.h | 2 +- .../qmakeprojectmanager/wizards/qtquickappwizardpages.cpp | 2 +- .../qmakeprojectmanager/wizards/qtquickappwizardpages.h | 2 +- src/plugins/qmakeprojectmanager/wizards/qtwizard.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/qtwizard.h | 2 +- .../qmakeprojectmanager/wizards/subdirsprojectwizard.cpp | 2 +- .../qmakeprojectmanager/wizards/subdirsprojectwizard.h | 2 +- .../wizards/subdirsprojectwizarddialog.cpp | 2 +- .../wizards/subdirsprojectwizarddialog.h | 2 +- src/plugins/qmakeprojectmanager/wizards/testwizard.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/testwizard.h | 2 +- .../qmakeprojectmanager/wizards/testwizarddialog.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/testwizarddialog.h | 2 +- src/plugins/qmakeprojectmanager/wizards/testwizardpage.cpp | 2 +- src/plugins/qmakeprojectmanager/wizards/testwizardpage.h | 2 +- src/plugins/qmldesigner/QmlDesigner.pluginspec.in | 2 +- .../components/componentcore/abstractdesigneraction.h | 2 +- .../components/componentcore/addtabtotabviewdialog.cpp | 2 +- .../components/componentcore/addtabtotabviewdialog.h | 2 +- .../components/componentcore/componentcore_constants.h | 2 +- .../qmldesigner/components/componentcore/crumblebar.cpp | 2 +- .../qmldesigner/components/componentcore/crumblebar.h | 2 +- .../components/componentcore/defaultdesigneraction.cpp | 2 +- .../components/componentcore/defaultdesigneraction.h | 2 +- .../components/componentcore/designeractionmanager.cpp | 2 +- .../components/componentcore/designeractionmanager.h | 2 +- .../components/componentcore/designeractionmanagerview.cpp | 2 +- .../components/componentcore/designeractionmanagerview.h | 2 +- .../components/componentcore/modelnodecontextmenu.cpp | 2 +- .../components/componentcore/modelnodecontextmenu.h | 2 +- .../componentcore/modelnodecontextmenu_helper.cpp | 2 +- .../components/componentcore/modelnodecontextmenu_helper.h | 2 +- .../components/componentcore/modelnodeoperations.cpp | 2 +- .../components/componentcore/modelnodeoperations.h | 2 +- .../components/componentcore/selectioncontext.cpp | 2 +- .../qmldesigner/components/componentcore/selectioncontext.h | 2 +- .../components/componentcore/tabviewdesigneraction.cpp | 2 +- .../components/componentcore/tabviewdesigneraction.h | 2 +- src/plugins/qmldesigner/components/debugview/debugview.cpp | 2 +- src/plugins/qmldesigner/components/debugview/debugview.h | 2 +- .../qmldesigner/components/debugview/debugviewwidget.cpp | 2 +- .../qmldesigner/components/debugview/debugviewwidget.h | 2 +- .../components/formeditor/abstractformeditortool.cpp | 2 +- .../components/formeditor/abstractformeditortool.h | 2 +- .../qmldesigner/components/formeditor/anchorindicator.cpp | 2 +- .../qmldesigner/components/formeditor/anchorindicator.h | 2 +- .../components/formeditor/anchorindicatorgraphicsitem.cpp | 2 +- .../components/formeditor/anchorindicatorgraphicsitem.h | 2 +- .../qmldesigner/components/formeditor/bindingindicator.cpp | 2 +- .../qmldesigner/components/formeditor/bindingindicator.h | 2 +- .../components/formeditor/bindingindicatorgraphicsitem.cpp | 2 +- .../components/formeditor/bindingindicatorgraphicsitem.h | 2 +- .../components/formeditor/contentnoteditableindicator.cpp | 2 +- .../components/formeditor/contentnoteditableindicator.h | 2 +- .../qmldesigner/components/formeditor/controlelement.cpp | 2 +- .../qmldesigner/components/formeditor/controlelement.h | 2 +- src/plugins/qmldesigner/components/formeditor/dragtool.cpp | 2 +- src/plugins/qmldesigner/components/formeditor/dragtool.h | 2 +- .../components/formeditor/formeditorgraphicsview.cpp | 2 +- .../components/formeditor/formeditorgraphicsview.h | 2 +- .../qmldesigner/components/formeditor/formeditoritem.cpp | 2 +- .../qmldesigner/components/formeditor/formeditoritem.h | 2 +- .../components/formeditor/formeditornodeinstanceview.cpp | 2 +- .../components/formeditor/formeditornodeinstanceview.h | 2 +- .../qmldesigner/components/formeditor/formeditorscene.cpp | 2 +- .../qmldesigner/components/formeditor/formeditorscene.h | 2 +- .../components/formeditor/formeditorsubwindow.cpp | 2 +- .../qmldesigner/components/formeditor/formeditorsubwindow.h | 2 +- .../qmldesigner/components/formeditor/formeditorview.cpp | 2 +- .../qmldesigner/components/formeditor/formeditorview.h | 2 +- .../qmldesigner/components/formeditor/formeditorwidget.cpp | 2 +- .../qmldesigner/components/formeditor/formeditorwidget.h | 2 +- .../qmldesigner/components/formeditor/itemutilfunctions.cpp | 2 +- .../qmldesigner/components/formeditor/itemutilfunctions.h | 2 +- src/plugins/qmldesigner/components/formeditor/layeritem.cpp | 2 +- src/plugins/qmldesigner/components/formeditor/layeritem.h | 2 +- .../qmldesigner/components/formeditor/lineeditaction.cpp | 2 +- .../qmldesigner/components/formeditor/lineeditaction.h | 2 +- .../components/formeditor/manipulatorlayeritem.h | 2 +- .../qmldesigner/components/formeditor/movemanipulator.cpp | 2 +- .../qmldesigner/components/formeditor/movemanipulator.h | 2 +- src/plugins/qmldesigner/components/formeditor/movetool.cpp | 2 +- src/plugins/qmldesigner/components/formeditor/movetool.h | 2 +- .../components/formeditor/numberseriesaction.cpp | 2 +- .../qmldesigner/components/formeditor/numberseriesaction.h | 2 +- .../components/formeditor/onedimensionalcluster.cpp | 2 +- .../components/formeditor/onedimensionalcluster.h | 2 +- .../qmldesigner/components/formeditor/resizecontroller.cpp | 2 +- .../qmldesigner/components/formeditor/resizecontroller.h | 2 +- .../qmldesigner/components/formeditor/resizehandleitem.cpp | 2 +- .../qmldesigner/components/formeditor/resizehandleitem.h | 2 +- .../qmldesigner/components/formeditor/resizeindicator.cpp | 2 +- .../qmldesigner/components/formeditor/resizeindicator.h | 2 +- .../qmldesigner/components/formeditor/resizemanipulator.cpp | 2 +- .../qmldesigner/components/formeditor/resizemanipulator.h | 2 +- .../qmldesigner/components/formeditor/resizetool.cpp | 2 +- src/plugins/qmldesigner/components/formeditor/resizetool.h | 2 +- .../formeditor/rubberbandselectionmanipulator.cpp | 2 +- .../components/formeditor/rubberbandselectionmanipulator.h | 2 +- src/plugins/qmldesigner/components/formeditor/scaleitem.cpp | 2 +- src/plugins/qmldesigner/components/formeditor/scaleitem.h | 2 +- .../qmldesigner/components/formeditor/scalemanipulator.cpp | 2 +- .../qmldesigner/components/formeditor/scalemanipulator.h | 2 +- .../components/formeditor/selectionindicator.cpp | 2 +- .../qmldesigner/components/formeditor/selectionindicator.h | 2 +- .../components/formeditor/selectionrectangle.cpp | 2 +- .../qmldesigner/components/formeditor/selectionrectangle.h | 2 +- .../qmldesigner/components/formeditor/selectiontool.cpp | 2 +- .../qmldesigner/components/formeditor/selectiontool.h | 2 +- .../components/formeditor/singleselectionmanipulator.cpp | 2 +- .../components/formeditor/singleselectionmanipulator.h | 2 +- src/plugins/qmldesigner/components/formeditor/snapper.cpp | 2 +- src/plugins/qmldesigner/components/formeditor/snapper.h | 2 +- .../components/formeditor/snappinglinecreator.cpp | 2 +- .../qmldesigner/components/formeditor/snappinglinecreator.h | 2 +- src/plugins/qmldesigner/components/formeditor/toolbox.cpp | 2 +- src/plugins/qmldesigner/components/formeditor/toolbox.h | 2 +- .../qmldesigner/components/formeditor/zoomaction.cpp | 2 +- src/plugins/qmldesigner/components/formeditor/zoomaction.h | 2 +- .../qmldesigner/components/importmanager/importlabel.cpp | 2 +- .../qmldesigner/components/importmanager/importlabel.h | 2 +- .../components/importmanager/importmanagercombobox.cpp | 2 +- .../components/importmanager/importmanagercombobox.h | 2 +- .../components/importmanager/importmanagerview.cpp | 2 +- .../components/importmanager/importmanagerview.h | 2 +- .../qmldesigner/components/importmanager/importswidget.cpp | 2 +- .../qmldesigner/components/importmanager/importswidget.h | 2 +- .../qmldesigner/components/integration/componentaction.cpp | 2 +- .../qmldesigner/components/integration/componentaction.h | 2 +- .../qmldesigner/components/integration/componentview.cpp | 2 +- .../qmldesigner/components/integration/componentview.h | 2 +- .../qmldesigner/components/integration/designdocument.cpp | 2 +- .../qmldesigner/components/integration/designdocument.h | 2 +- .../components/integration/designdocumentview.cpp | 2 +- .../qmldesigner/components/integration/designdocumentview.h | 2 +- .../integration/stackedutilitypanelcontroller.cpp | 2 +- .../components/integration/stackedutilitypanelcontroller.h | 2 +- .../components/integration/utilitypanelcontroller.cpp | 2 +- .../components/integration/utilitypanelcontroller.h | 2 +- .../qmldesigner/components/integration/xuifiledialog.cpp | 2 +- .../qmldesigner/components/integration/xuifiledialog.h | 2 +- .../components/itemlibrary/customdraganddrop.cpp | 2 +- .../qmldesigner/components/itemlibrary/customdraganddrop.h | 2 +- .../components/itemlibrary/itemlibrarycomponents.cpp | 2 +- .../components/itemlibrary/itemlibrarycomponents.h | 2 +- .../components/itemlibrary/itemlibraryimageprovider.cpp | 2 +- .../components/itemlibrary/itemlibraryimageprovider.h | 2 +- .../qmldesigner/components/itemlibrary/itemlibrarymodel.cpp | 2 +- .../qmldesigner/components/itemlibrary/itemlibrarymodel.h | 2 +- .../qmldesigner/components/itemlibrary/itemlibraryview.cpp | 2 +- .../qmldesigner/components/itemlibrary/itemlibraryview.h | 2 +- .../components/itemlibrary/itemlibrarywidget.cpp | 2 +- .../qmldesigner/components/itemlibrary/itemlibrarywidget.h | 2 +- .../qmldesigner/components/itemlibrary/qml/ItemsView.qml | 2 +- .../components/itemlibrary/qml/ItemsViewStyle.qml | 2 +- .../qmldesigner/components/itemlibrary/qml/SectionView.qml | 2 +- .../qmldesigner/components/itemlibrary/qml/Selector.qml | 2 +- .../components/itemlibrary/qml/SingleItemView.qml | 2 +- src/plugins/qmldesigner/components/logger/logger.cpp | 2 +- src/plugins/qmldesigner/components/logger/logger.h | 2 +- .../qmldesigner/components/navigator/navigatortreemodel.cpp | 2 +- .../qmldesigner/components/navigator/navigatortreemodel.h | 2 +- .../qmldesigner/components/navigator/navigatortreeview.cpp | 2 +- .../qmldesigner/components/navigator/navigatortreeview.h | 2 +- .../qmldesigner/components/navigator/navigatorview.cpp | 2 +- .../qmldesigner/components/navigator/navigatorview.h | 2 +- .../qmldesigner/components/navigator/navigatorwidget.cpp | 2 +- .../qmldesigner/components/navigator/navigatorwidget.h | 2 +- .../qmldesigner/components/pluginmanager/iplugin.cpp | 2 +- src/plugins/qmldesigner/components/pluginmanager/iplugin.h | 2 +- .../qmldesigner/components/pluginmanager/pluginmanager.cpp | 2 +- .../qmldesigner/components/pluginmanager/pluginmanager.h | 2 +- .../qmldesigner/components/pluginmanager/pluginpath.cpp | 2 +- .../qmldesigner/components/pluginmanager/pluginpath.h | 2 +- .../components/propertyeditor/designerpropertymap.h | 2 +- .../components/propertyeditor/fileresourcesmodel.cpp | 2 +- .../components/propertyeditor/fileresourcesmodel.h | 2 +- .../qmldesigner/components/propertyeditor/filewidget.cpp | 2 +- .../qmldesigner/components/propertyeditor/filewidget.h | 2 +- .../qmldesigner/components/propertyeditor/fontwidget.cpp | 2 +- .../qmldesigner/components/propertyeditor/fontwidget.h | 2 +- .../components/propertyeditor/genericpropertieswidget.cpp | 2 +- .../components/propertyeditor/genericpropertieswidget.h | 2 +- .../components/propertyeditor/gradientlineqmladaptor.cpp | 2 +- .../components/propertyeditor/gradientlineqmladaptor.h | 2 +- .../qmldesigner/components/propertyeditor/gradientmodel.cpp | 2 +- .../qmldesigner/components/propertyeditor/gradientmodel.h | 2 +- .../qmldesigner/components/propertyeditor/originwidget.cpp | 2 +- .../qmldesigner/components/propertyeditor/originwidget.h | 2 +- .../propertyeditor/propertyeditorcontextobject.cpp | 2 +- .../components/propertyeditor/propertyeditorcontextobject.h | 2 +- .../components/propertyeditor/propertyeditorqmlbackend.cpp | 2 +- .../components/propertyeditor/propertyeditorqmlbackend.h | 2 +- .../components/propertyeditor/propertyeditortransaction.cpp | 2 +- .../components/propertyeditor/propertyeditortransaction.h | 2 +- .../components/propertyeditor/propertyeditorvalue.cpp | 2 +- .../components/propertyeditor/propertyeditorvalue.h | 2 +- .../components/propertyeditor/propertyeditorview.cpp | 2 +- .../components/propertyeditor/propertyeditorview.h | 2 +- .../components/propertyeditor/propertyeditorwidget.cpp | 2 +- .../components/propertyeditor/propertyeditorwidget.h | 2 +- .../qmldesigner/components/propertyeditor/qlayoutobject.cpp | 2 +- .../qmldesigner/components/propertyeditor/qlayoutobject.h | 2 +- .../components/propertyeditor/qmlanchorbindingproxy.cpp | 2 +- .../components/propertyeditor/qmlanchorbindingproxy.h | 2 +- .../components/propertyeditor/quick2propertyeditorview.cpp | 2 +- .../components/propertyeditor/quick2propertyeditorview.h | 2 +- .../components/propertyeditor/siblingcombobox.cpp | 2 +- .../qmldesigner/components/propertyeditor/siblingcombobox.h | 2 +- .../components/stateseditor/HorizontalScrollBar.qml | 2 +- .../components/stateseditor/stateseditorimageprovider.cpp | 2 +- .../components/stateseditor/stateseditorimageprovider.h | 2 +- .../components/stateseditor/stateseditormodel.cpp | 2 +- .../qmldesigner/components/stateseditor/stateseditormodel.h | 2 +- .../components/stateseditor/stateseditorview.cpp | 2 +- .../qmldesigner/components/stateseditor/stateseditorview.h | 2 +- .../components/stateseditor/stateseditorwidget.cpp | 2 +- .../components/stateseditor/stateseditorwidget.h | 2 +- .../qmldesigner/components/stateseditor/stateslist.qml | 2 +- .../componentsplugin/Controls/ButtonSpecifics.qml | 2 +- .../componentsplugin/Controls/CheckBoxSpecifics.qml | 2 +- .../componentsplugin/Controls/ComboBoxSpecifics.qml | 2 +- .../componentsplugin/Controls/RadioButtonSpecifics.qml | 2 +- .../componentsplugin/Controls/TextAreaSpecifics.qml | 2 +- .../componentsplugin/Controls/TextFieldSpecifics.qml | 2 +- .../qmldesigner/componentsplugin/componentsplugin.cpp | 2 +- src/plugins/qmldesigner/componentsplugin/componentsplugin.h | 2 +- .../qmldesigner/designercore/exceptions/exception.cpp | 2 +- .../designercore/exceptions/invalidargumentexception.cpp | 2 +- .../designercore/exceptions/invalididexception.cpp | 2 +- .../designercore/exceptions/invalidmetainfoexception.cpp | 2 +- .../designercore/exceptions/invalidmodelnodeexception.cpp | 2 +- .../designercore/exceptions/invalidmodelstateexception.cpp | 2 +- .../designercore/exceptions/invalidpropertyexception.cpp | 2 +- .../designercore/exceptions/invalidqmlsourceexception.cpp | 2 +- .../designercore/exceptions/invalidreparentingexception.cpp | 2 +- .../designercore/exceptions/invalidslideindexexception.cpp | 2 +- .../designercore/exceptions/modificationgroupexception.cpp | 2 +- .../designercore/exceptions/notimplementedexception.cpp | 2 +- .../designercore/exceptions/removebasestateexception.cpp | 2 +- .../designercore/exceptions/rewritingexception.cpp | 2 +- .../designercore/filemanager/addarraymembervisitor.cpp | 2 +- .../designercore/filemanager/addarraymembervisitor.h | 2 +- .../designercore/filemanager/addobjectvisitor.cpp | 2 +- .../qmldesigner/designercore/filemanager/addobjectvisitor.h | 2 +- .../designercore/filemanager/addpropertyvisitor.cpp | 2 +- .../designercore/filemanager/addpropertyvisitor.h | 2 +- .../designercore/filemanager/astobjecttextextractor.cpp | 2 +- .../designercore/filemanager/astobjecttextextractor.h | 2 +- .../designercore/filemanager/changeimportsvisitor.cpp | 2 +- .../designercore/filemanager/changeimportsvisitor.h | 2 +- .../designercore/filemanager/changeobjecttypevisitor.cpp | 2 +- .../designercore/filemanager/changeobjecttypevisitor.h | 2 +- .../designercore/filemanager/changepropertyvisitor.cpp | 2 +- .../designercore/filemanager/changepropertyvisitor.h | 2 +- .../designercore/filemanager/firstdefinitionfinder.cpp | 2 +- .../designercore/filemanager/firstdefinitionfinder.h | 2 +- .../filemanager/moveobjectbeforeobjectvisitor.cpp | 2 +- .../filemanager/moveobjectbeforeobjectvisitor.h | 2 +- .../designercore/filemanager/moveobjectvisitor.cpp | 2 +- .../designercore/filemanager/moveobjectvisitor.h | 2 +- .../designercore/filemanager/objectlengthcalculator.cpp | 2 +- .../designercore/filemanager/objectlengthcalculator.h | 2 +- .../qmldesigner/designercore/filemanager/qmlrefactoring.cpp | 2 +- .../qmldesigner/designercore/filemanager/qmlrefactoring.h | 2 +- .../qmldesigner/designercore/filemanager/qmlrewriter.cpp | 2 +- .../qmldesigner/designercore/filemanager/qmlrewriter.h | 2 +- .../designercore/filemanager/removepropertyvisitor.cpp | 2 +- .../designercore/filemanager/removepropertyvisitor.h | 2 +- .../filemanager/removeuiobjectmembervisitor.cpp | 2 +- .../designercore/filemanager/removeuiobjectmembervisitor.h | 2 +- .../qmldesigner/designercore/include/abstractproperty.h | 2 +- src/plugins/qmldesigner/designercore/include/abstractview.h | 2 +- .../qmldesigner/designercore/include/basetexteditmodifier.h | 2 +- .../qmldesigner/designercore/include/bindingproperty.h | 2 +- .../qmldesigner/designercore/include/bytearraymodifier.h | 2 +- .../designercore/include/componenttextmodifier.h | 2 +- .../qmldesigner/designercore/include/customnotifications.h | 2 +- src/plugins/qmldesigner/designercore/include/exception.h | 2 +- src/plugins/qmldesigner/designercore/include/forwardview.h | 2 +- src/plugins/qmldesigner/designercore/include/import.h | 2 +- .../designercore/include/invalidargumentexception.h | 2 +- .../qmldesigner/designercore/include/invalididexception.h | 2 +- .../designercore/include/invalidmetainfoexception.h | 2 +- .../designercore/include/invalidmodelnodeexception.h | 2 +- .../designercore/include/invalidmodelstateexception.h | 2 +- .../designercore/include/invalidpropertyexception.h | 2 +- .../designercore/include/invalidqmlsourceexception.h | 2 +- .../designercore/include/invalidreparentingexception.h | 2 +- .../designercore/include/invalidslideindexexception.h | 2 +- .../qmldesigner/designercore/include/itemlibraryinfo.h | 2 +- .../qmldesigner/designercore/include/iwidgetplugin.h | 2 +- src/plugins/qmldesigner/designercore/include/mathutils.h | 2 +- src/plugins/qmldesigner/designercore/include/metainfo.h | 2 +- .../qmldesigner/designercore/include/metainforeader.h | 2 +- src/plugins/qmldesigner/designercore/include/model.h | 2 +- src/plugins/qmldesigner/designercore/include/modelmerger.h | 2 +- src/plugins/qmldesigner/designercore/include/modelnode.h | 2 +- .../designercore/include/modelnodepositionstorage.h | 2 +- .../designercore/include/modificationgroupexception.h | 2 +- .../designercore/include/modificationgrouptoken.h | 2 +- .../qmldesigner/designercore/include/nodeabstractproperty.h | 2 +- src/plugins/qmldesigner/designercore/include/nodeanchors.h | 2 +- src/plugins/qmldesigner/designercore/include/nodeinstance.h | 2 +- .../qmldesigner/designercore/include/nodeinstanceview.h | 2 +- .../qmldesigner/designercore/include/nodelistproperty.h | 2 +- src/plugins/qmldesigner/designercore/include/nodemetainfo.h | 2 +- src/plugins/qmldesigner/designercore/include/nodeproperty.h | 2 +- .../designercore/include/notimplementedexception.h | 2 +- .../designercore/include/objectpropertybinding.h | 2 +- .../designercore/include/plaintexteditmodifier.h | 2 +- .../qmldesigner/designercore/include/propertybinding.h | 2 +- .../qmldesigner/designercore/include/propertycontainer.h | 2 +- src/plugins/qmldesigner/designercore/include/propertynode.h | 2 +- .../qmldesigner/designercore/include/propertyparser.h | 2 +- src/plugins/qmldesigner/designercore/include/qmlanchors.h | 2 +- src/plugins/qmldesigner/designercore/include/qmlchangeset.h | 2 +- .../designercore/include/qmldesignercorelib_global.h | 2 +- src/plugins/qmldesigner/designercore/include/qmlitemnode.h | 2 +- .../qmldesigner/designercore/include/qmlmodelnodefacade.h | 2 +- .../qmldesigner/designercore/include/qmlobjectnode.h | 2 +- src/plugins/qmldesigner/designercore/include/qmlstate.h | 2 +- .../designercore/include/removebasestateexception.h | 2 +- .../include/replaceallobjectdefinitionsvisitor.h | 2 +- src/plugins/qmldesigner/designercore/include/rewriterview.h | 2 +- .../qmldesigner/designercore/include/rewritingexception.h | 2 +- .../designercore/include/signalhandlerproperty.h | 2 +- src/plugins/qmldesigner/designercore/include/stylemanager.h | 2 +- .../qmldesigner/designercore/include/subcomponentmanager.h | 2 +- src/plugins/qmldesigner/designercore/include/textmodifier.h | 2 +- .../qmldesigner/designercore/include/variantproperty.h | 2 +- src/plugins/qmldesigner/designercore/include/viewmanager.h | 2 +- .../qmldesigner/designercore/include/widgetplugin_helper.h | 2 +- .../qmldesigner/designercore/instances/nodeinstance.cpp | 2 +- .../designercore/instances/nodeinstanceserverproxy.cpp | 2 +- .../designercore/instances/nodeinstanceserverproxy.h | 2 +- .../qmldesigner/designercore/instances/nodeinstanceview.cpp | 2 +- .../qmldesigner/designercore/metainfo/itemlibraryinfo.cpp | 2 +- src/plugins/qmldesigner/designercore/metainfo/metainfo.cpp | 2 +- .../qmldesigner/designercore/metainfo/metainforeader.cpp | 2 +- .../qmldesigner/designercore/metainfo/nodemetainfo.cpp | 2 +- .../designercore/metainfo/subcomponentmanager.cpp | 2 +- .../qmldesigner/designercore/model/abstractproperty.cpp | 2 +- src/plugins/qmldesigner/designercore/model/abstractview.cpp | 2 +- .../qmldesigner/designercore/model/basetexteditmodifier.cpp | 2 +- .../qmldesigner/designercore/model/bindingproperty.cpp | 2 +- .../qmldesigner/designercore/model/bytearraymodifier.cpp | 2 +- .../designercore/model/componenttextmodifier.cpp | 2 +- src/plugins/qmldesigner/designercore/model/copyhelper.cpp | 2 +- src/plugins/qmldesigner/designercore/model/copyhelper.h | 2 +- src/plugins/qmldesigner/designercore/model/import.cpp | 2 +- .../designercore/model/internalbindingproperty.cpp | 2 +- .../designercore/model/internalbindingproperty.h | 2 +- src/plugins/qmldesigner/designercore/model/internalnode.cpp | 2 +- src/plugins/qmldesigner/designercore/model/internalnode_p.h | 2 +- .../designercore/model/internalnodeabstractproperty.cpp | 2 +- .../designercore/model/internalnodeabstractproperty.h | 2 +- .../designercore/model/internalnodelistproperty.cpp | 2 +- .../designercore/model/internalnodelistproperty.h | 2 +- .../qmldesigner/designercore/model/internalnodeproperty.cpp | 2 +- .../qmldesigner/designercore/model/internalnodeproperty.h | 2 +- .../qmldesigner/designercore/model/internalproperty.cpp | 2 +- .../qmldesigner/designercore/model/internalproperty.h | 2 +- .../designercore/model/internalsignalhandlerproperty.cpp | 2 +- .../designercore/model/internalsignalhandlerproperty.h | 2 +- .../designercore/model/internalvariantproperty.cpp | 2 +- .../designercore/model/internalvariantproperty.h | 2 +- src/plugins/qmldesigner/designercore/model/model.cpp | 2 +- src/plugins/qmldesigner/designercore/model/model_p.h | 2 +- src/plugins/qmldesigner/designercore/model/modelmerger.cpp | 2 +- src/plugins/qmldesigner/designercore/model/modelnode.cpp | 2 +- .../designercore/model/modelnodepositionrecalculator.cpp | 2 +- .../designercore/model/modelnodepositionrecalculator.h | 2 +- .../designercore/model/modelnodepositionstorage.cpp | 2 +- .../qmldesigner/designercore/model/modeltotextmerger.cpp | 2 +- .../qmldesigner/designercore/model/modeltotextmerger.h | 2 +- .../designercore/model/modificationgrouptoken.cpp | 2 +- .../qmldesigner/designercore/model/nodeabstractproperty.cpp | 2 +- src/plugins/qmldesigner/designercore/model/nodeanchors.cpp | 2 +- .../qmldesigner/designercore/model/nodelistproperty.cpp | 2 +- src/plugins/qmldesigner/designercore/model/nodeproperty.cpp | 2 +- .../designercore/model/objectpropertybinding.cpp | 2 +- .../qmldesigner/designercore/model/painteventfilter.cpp | 2 +- .../qmldesigner/designercore/model/painteventfilter_p.h | 2 +- src/plugins/qmldesigner/designercore/model/parsedqml.cpp | 2 +- src/plugins/qmldesigner/designercore/model/parsedqml.h | 2 +- src/plugins/qmldesigner/designercore/model/paster.cpp | 2 +- src/plugins/qmldesigner/designercore/model/paster.h | 2 +- .../designercore/model/plaintexteditmodifier.cpp | 2 +- .../qmldesigner/designercore/model/propertybinding.cpp | 2 +- .../qmldesigner/designercore/model/propertycontainer.cpp | 2 +- src/plugins/qmldesigner/designercore/model/propertynode.cpp | 2 +- .../qmldesigner/designercore/model/propertyparser.cpp | 2 +- src/plugins/qmldesigner/designercore/model/qmlanchors.cpp | 2 +- src/plugins/qmldesigner/designercore/model/qmlchangeset.cpp | 2 +- src/plugins/qmldesigner/designercore/model/qmlitemnode.cpp | 2 +- .../qmldesigner/designercore/model/qmlmodelnodefacade.cpp | 2 +- .../qmldesigner/designercore/model/qmlobjectnode.cpp | 2 +- src/plugins/qmldesigner/designercore/model/qmlstate.cpp | 2 +- .../qmldesigner/designercore/model/qmltextgenerator.cpp | 2 +- .../qmldesigner/designercore/model/qmltextgenerator.h | 2 +- .../qmldesigner/designercore/model/rewriteaction.cpp | 2 +- src/plugins/qmldesigner/designercore/model/rewriteaction.h | 2 +- .../designercore/model/rewriteactioncompressor.cpp | 2 +- .../designercore/model/rewriteactioncompressor.h | 2 +- src/plugins/qmldesigner/designercore/model/rewriterview.cpp | 2 +- .../designercore/model/signalhandlerproperty.cpp | 2 +- src/plugins/qmldesigner/designercore/model/textmodifier.cpp | 2 +- .../qmldesigner/designercore/model/texttomodelmerger.cpp | 2 +- .../qmldesigner/designercore/model/texttomodelmerger.h | 2 +- .../qmldesigner/designercore/model/variantproperty.cpp | 2 +- .../designercore/pluginmanager/widgetpluginmanager.cpp | 2 +- .../designercore/pluginmanager/widgetpluginmanager.h | 2 +- .../designercore/pluginmanager/widgetpluginpath.cpp | 2 +- .../designercore/pluginmanager/widgetpluginpath.h | 2 +- .../qmldesigner/designercore/preview/stylemanager.cpp | 2 +- .../qmldesigner/designercore/rewritertransaction.cpp | 2 +- src/plugins/qmldesigner/designercore/rewritertransaction.h | 2 +- src/plugins/qmldesigner/designersettings.cpp | 2 +- src/plugins/qmldesigner/designersettings.h | 2 +- src/plugins/qmldesigner/designmodecontext.cpp | 2 +- src/plugins/qmldesigner/designmodecontext.h | 2 +- src/plugins/qmldesigner/designmodewidget.cpp | 2 +- src/plugins/qmldesigner/designmodewidget.h | 2 +- src/plugins/qmldesigner/desktopplugin/desktopplugin.cpp | 2 +- src/plugins/qmldesigner/desktopplugin/desktopplugin.h | 2 +- src/plugins/qmldesigner/documentmanager.cpp | 2 +- src/plugins/qmldesigner/documentmanager.h | 2 +- src/plugins/qmldesigner/qmldesignerconstants.h | 2 +- src/plugins/qmldesigner/qmldesignerplugin.cpp | 2 +- src/plugins/qmldesigner/qmldesignerplugin.h | 2 +- src/plugins/qmldesigner/qtquickplugin/qtquickplugin.cpp | 2 +- src/plugins/qmldesigner/qtquickplugin/qtquickplugin.h | 2 +- src/plugins/qmldesigner/qtquickplugin/source/gridview.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/gridviewv2.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/listview.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/listviewv2.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/pathview.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/pathviewv2.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/text.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/textedit.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/texteditv2.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/textinput.qml | 2 +- .../qmldesigner/qtquickplugin/source/textinputv2.qml | 2 +- src/plugins/qmldesigner/qtquickplugin/source/textv2.qml | 2 +- src/plugins/qmldesigner/settingspage.cpp | 2 +- src/plugins/qmldesigner/settingspage.h | 2 +- src/plugins/qmldesigner/styledoutputpaneplaceholder.cpp | 2 +- src/plugins/qmldesigner/styledoutputpaneplaceholder.h | 2 +- src/plugins/qmljseditor/QmlJSEditor.pluginspec.in | 2 +- src/plugins/qmljseditor/jsfilewizard.cpp | 2 +- src/plugins/qmljseditor/jsfilewizard.h | 2 +- src/plugins/qmljseditor/qmlexpressionundercursor.cpp | 2 +- src/plugins/qmljseditor/qmlexpressionundercursor.h | 2 +- src/plugins/qmljseditor/qmlfilewizard.cpp | 2 +- src/plugins/qmljseditor/qmlfilewizard.h | 2 +- src/plugins/qmljseditor/qmljsautocompleter.cpp | 2 +- src/plugins/qmljseditor/qmljsautocompleter.h | 2 +- src/plugins/qmljseditor/qmljscompletionassist.cpp | 2 +- src/plugins/qmljseditor/qmljscompletionassist.h | 2 +- src/plugins/qmljseditor/qmljscomponentfromobjectdef.cpp | 2 +- src/plugins/qmljseditor/qmljscomponentfromobjectdef.h | 2 +- src/plugins/qmljseditor/qmljscomponentnamedialog.cpp | 2 +- src/plugins/qmljseditor/qmljscomponentnamedialog.h | 2 +- src/plugins/qmljseditor/qmljseditor.cpp | 2 +- src/plugins/qmljseditor/qmljseditor.h | 2 +- src/plugins/qmljseditor/qmljseditor_global.h | 2 +- src/plugins/qmljseditor/qmljseditorconstants.h | 2 +- src/plugins/qmljseditor/qmljseditoreditable.cpp | 2 +- src/plugins/qmljseditor/qmljseditoreditable.h | 2 +- src/plugins/qmljseditor/qmljseditorfactory.cpp | 2 +- src/plugins/qmljseditor/qmljseditorfactory.h | 2 +- src/plugins/qmljseditor/qmljseditorplugin.cpp | 2 +- src/plugins/qmljseditor/qmljseditorplugin.h | 2 +- src/plugins/qmljseditor/qmljsfindreferences.cpp | 2 +- src/plugins/qmljseditor/qmljsfindreferences.h | 2 +- src/plugins/qmljseditor/qmljshighlighter.cpp | 2 +- src/plugins/qmljseditor/qmljshighlighter.h | 2 +- src/plugins/qmljseditor/qmljshighlighterfactory.cpp | 2 +- src/plugins/qmljseditor/qmljshighlighterfactory.h | 2 +- src/plugins/qmljseditor/qmljshoverhandler.cpp | 2 +- src/plugins/qmljseditor/qmljshoverhandler.h | 2 +- src/plugins/qmljseditor/qmljsoutline.cpp | 2 +- src/plugins/qmljseditor/qmljsoutline.h | 2 +- src/plugins/qmljseditor/qmljsoutlinetreeview.cpp | 2 +- src/plugins/qmljseditor/qmljsoutlinetreeview.h | 2 +- src/plugins/qmljseditor/qmljspreviewrunner.cpp | 2 +- src/plugins/qmljseditor/qmljspreviewrunner.h | 2 +- src/plugins/qmljseditor/qmljsquickfix.cpp | 2 +- src/plugins/qmljseditor/qmljsquickfix.h | 2 +- src/plugins/qmljseditor/qmljsquickfixassist.cpp | 2 +- src/plugins/qmljseditor/qmljsquickfixassist.h | 2 +- src/plugins/qmljseditor/qmljsquickfixes.cpp | 2 +- src/plugins/qmljseditor/qmljsreuse.cpp | 2 +- src/plugins/qmljseditor/qmljsreuse.h | 2 +- src/plugins/qmljseditor/qmljssemantichighlighter.cpp | 2 +- src/plugins/qmljseditor/qmljssemantichighlighter.h | 2 +- src/plugins/qmljseditor/qmljssemanticinfoupdater.cpp | 2 +- src/plugins/qmljseditor/qmljssemanticinfoupdater.h | 2 +- src/plugins/qmljseditor/qmljssnippetprovider.cpp | 2 +- src/plugins/qmljseditor/qmljssnippetprovider.h | 2 +- src/plugins/qmljseditor/qmljswrapinloader.cpp | 2 +- src/plugins/qmljseditor/qmljswrapinloader.h | 2 +- src/plugins/qmljseditor/qmloutlinemodel.cpp | 2 +- src/plugins/qmljseditor/qmloutlinemodel.h | 2 +- src/plugins/qmljseditor/qmltaskmanager.cpp | 2 +- src/plugins/qmljseditor/qmltaskmanager.h | 2 +- src/plugins/qmljseditor/quicktoolbar.cpp | 2 +- src/plugins/qmljseditor/quicktoolbar.h | 2 +- src/plugins/qmljseditor/quicktoolbarsettingspage.cpp | 2 +- src/plugins/qmljseditor/quicktoolbarsettingspage.h | 2 +- src/plugins/qmljstools/QmlJSTools.pluginspec.in | 2 +- src/plugins/qmljstools/qmlconsoleedit.cpp | 2 +- src/plugins/qmljstools/qmlconsoleedit.h | 2 +- src/plugins/qmljstools/qmlconsoleitemdelegate.cpp | 2 +- src/plugins/qmljstools/qmlconsoleitemdelegate.h | 2 +- src/plugins/qmljstools/qmlconsoleitemmodel.cpp | 2 +- src/plugins/qmljstools/qmlconsoleitemmodel.h | 2 +- src/plugins/qmljstools/qmlconsolemanager.cpp | 2 +- src/plugins/qmljstools/qmlconsolemanager.h | 2 +- src/plugins/qmljstools/qmlconsolemodel.h | 2 +- src/plugins/qmljstools/qmlconsolepane.cpp | 2 +- src/plugins/qmljstools/qmlconsolepane.h | 2 +- src/plugins/qmljstools/qmlconsoleproxymodel.cpp | 2 +- src/plugins/qmljstools/qmlconsoleproxymodel.h | 2 +- src/plugins/qmljstools/qmlconsoleview.cpp | 2 +- src/plugins/qmljstools/qmlconsoleview.h | 2 +- src/plugins/qmljstools/qmljsbundleprovider.cpp | 2 +- src/plugins/qmljstools/qmljsbundleprovider.h | 2 +- src/plugins/qmljstools/qmljscodestylepreferencesfactory.cpp | 2 +- src/plugins/qmljstools/qmljscodestylepreferencesfactory.h | 2 +- src/plugins/qmljstools/qmljscodestylesettingspage.cpp | 2 +- src/plugins/qmljstools/qmljscodestylesettingspage.h | 2 +- src/plugins/qmljstools/qmljsfindexportedcpptypes.cpp | 2 +- src/plugins/qmljstools/qmljsfindexportedcpptypes.h | 2 +- src/plugins/qmljstools/qmljsfunctionfilter.cpp | 2 +- src/plugins/qmljstools/qmljsfunctionfilter.h | 2 +- src/plugins/qmljstools/qmljsindenter.cpp | 2 +- src/plugins/qmljstools/qmljsindenter.h | 2 +- src/plugins/qmljstools/qmljsinterpreter.cpp | 2 +- src/plugins/qmljstools/qmljsinterpreter.h | 2 +- src/plugins/qmljstools/qmljslocatordata.cpp | 2 +- src/plugins/qmljstools/qmljslocatordata.h | 2 +- src/plugins/qmljstools/qmljsmodelmanager.cpp | 2 +- src/plugins/qmljstools/qmljsmodelmanager.h | 2 +- src/plugins/qmljstools/qmljsplugindumper.cpp | 2 +- src/plugins/qmljstools/qmljsplugindumper.h | 2 +- src/plugins/qmljstools/qmljsqtstylecodeformatter.cpp | 2 +- src/plugins/qmljstools/qmljsqtstylecodeformatter.h | 2 +- src/plugins/qmljstools/qmljsrefactoringchanges.cpp | 2 +- src/plugins/qmljstools/qmljsrefactoringchanges.h | 2 +- src/plugins/qmljstools/qmljssemanticinfo.cpp | 2 +- src/plugins/qmljstools/qmljssemanticinfo.h | 2 +- src/plugins/qmljstools/qmljstools_global.h | 2 +- src/plugins/qmljstools/qmljstools_test.cpp | 2 +- src/plugins/qmljstools/qmljstoolsconstants.h | 2 +- src/plugins/qmljstools/qmljstoolsplugin.cpp | 2 +- src/plugins/qmljstools/qmljstoolsplugin.h | 2 +- src/plugins/qmljstools/qmljstoolssettings.cpp | 2 +- src/plugins/qmljstools/qmljstoolssettings.h | 2 +- src/plugins/qmlprofiler/QmlProfiler.pluginspec.in | 2 +- src/plugins/qmlprofiler/abstractqmlprofilerrunner.h | 2 +- src/plugins/qmlprofiler/abstracttimelinemodel.cpp | 2 +- src/plugins/qmlprofiler/abstracttimelinemodel.h | 2 +- src/plugins/qmlprofiler/canvas/qdeclarativecanvas.cpp | 2 +- src/plugins/qmlprofiler/canvas/qdeclarativecanvas_p.h | 2 +- src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer.cpp | 2 +- src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer_p.h | 2 +- src/plugins/qmlprofiler/canvas/qdeclarativecontext2d.cpp | 2 +- src/plugins/qmlprofiler/canvas/qdeclarativecontext2d_p.h | 2 +- src/plugins/qmlprofiler/canvas/qmlprofilercanvas.cpp | 2 +- src/plugins/qmlprofiler/canvas/qmlprofilercanvas.h | 2 +- src/plugins/qmlprofiler/localqmlprofilerrunner.cpp | 2 +- src/plugins/qmlprofiler/localqmlprofilerrunner.h | 2 +- src/plugins/qmlprofiler/qml/CategoryLabel.qml | 2 +- src/plugins/qmlprofiler/qml/Detail.qml | 2 +- src/plugins/qmlprofiler/qml/MainView.qml | 2 +- src/plugins/qmlprofiler/qml/Overview.js | 2 +- src/plugins/qmlprofiler/qml/Overview.qml | 2 +- src/plugins/qmlprofiler/qml/RangeDetails.qml | 2 +- src/plugins/qmlprofiler/qml/RangeMover.qml | 2 +- src/plugins/qmlprofiler/qml/SelectionRange.qml | 2 +- src/plugins/qmlprofiler/qml/SelectionRangeDetails.qml | 2 +- src/plugins/qmlprofiler/qml/TimeDisplay.qml | 2 +- src/plugins/qmlprofiler/qml/TimeMarks.qml | 2 +- src/plugins/qmlprofiler/qmlprofiler_global.h | 2 +- src/plugins/qmlprofiler/qmlprofilerattachdialog.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerattachdialog.h | 2 +- src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerclientmanager.h | 2 +- src/plugins/qmlprofiler/qmlprofilerconstants.h | 2 +- src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.h | 2 +- src/plugins/qmlprofiler/qmlprofilerengine.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerengine.h | 2 +- src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.h | 2 +- src/plugins/qmlprofiler/qmlprofilereventview.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilereventview.h | 2 +- src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilermodelmanager.h | 2 +- .../qmlprofiler/qmlprofilerpainteventsmodelproxy.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerpainteventsmodelproxy.h | 2 +- src/plugins/qmlprofiler/qmlprofilerplugin.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerplugin.h | 2 +- src/plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerprocessedmodel.h | 2 +- src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.h | 2 +- src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilersimplemodel.h | 2 +- src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerstatemanager.h | 2 +- src/plugins/qmlprofiler/qmlprofilerstatewidget.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerstatewidget.h | 2 +- src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.h | 2 +- src/plugins/qmlprofiler/qmlprofilertool.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilertool.h | 2 +- src/plugins/qmlprofiler/qmlprofilertracefile.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilertracefile.h | 2 +- src/plugins/qmlprofiler/qmlprofilertraceview.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilertraceview.h | 2 +- src/plugins/qmlprofiler/qmlprofilertreeview.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilertreeview.h | 2 +- src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp | 2 +- src/plugins/qmlprofiler/qmlprofilerviewmanager.h | 2 +- src/plugins/qmlprofiler/qv8profilerdatamodel.cpp | 2 +- src/plugins/qmlprofiler/qv8profilerdatamodel.h | 2 +- src/plugins/qmlprofiler/qv8profilereventview.cpp | 2 +- src/plugins/qmlprofiler/qv8profilereventview.h | 2 +- src/plugins/qmlprofiler/timelinemodelaggregator.cpp | 2 +- src/plugins/qmlprofiler/timelinemodelaggregator.h | 2 +- src/plugins/qmlprofiler/timelinerenderer.cpp | 2 +- src/plugins/qmlprofiler/timelinerenderer.h | 2 +- .../qmlprojectmanager/QmlProjectManager.pluginspec.in | 2 +- .../qmlprojectmanager/fileformat/filefilteritems.cpp | 2 +- src/plugins/qmlprojectmanager/fileformat/filefilteritems.h | 2 +- .../qmlprojectmanager/fileformat/qmlprojectfileformat.cpp | 2 +- .../qmlprojectmanager/fileformat/qmlprojectfileformat.h | 2 +- src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.cpp | 2 +- src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.h | 2 +- src/plugins/qmlprojectmanager/qmlapp.cpp | 2 +- src/plugins/qmlprojectmanager/qmlapp.h | 2 +- src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp | 2 +- src/plugins/qmlprojectmanager/qmlapplicationwizard.h | 2 +- src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp | 2 +- src/plugins/qmlprojectmanager/qmlapplicationwizardpages.h | 2 +- src/plugins/qmlprojectmanager/qmlproject.cpp | 2 +- src/plugins/qmlprojectmanager/qmlproject.h | 2 +- src/plugins/qmlprojectmanager/qmlprojectconstants.h | 2 +- .../qmlprojectmanager/qmlprojectenvironmentaspect.cpp | 2 +- src/plugins/qmlprojectmanager/qmlprojectenvironmentaspect.h | 2 +- src/plugins/qmlprojectmanager/qmlprojectfile.cpp | 2 +- src/plugins/qmlprojectmanager/qmlprojectfile.h | 2 +- src/plugins/qmlprojectmanager/qmlprojectmanager.cpp | 2 +- src/plugins/qmlprojectmanager/qmlprojectmanager.h | 2 +- src/plugins/qmlprojectmanager/qmlprojectmanager_global.h | 2 +- src/plugins/qmlprojectmanager/qmlprojectmanagerconstants.h | 2 +- src/plugins/qmlprojectmanager/qmlprojectnodes.cpp | 2 +- src/plugins/qmlprojectmanager/qmlprojectnodes.h | 2 +- src/plugins/qmlprojectmanager/qmlprojectplugin.cpp | 2 +- src/plugins/qmlprojectmanager/qmlprojectplugin.h | 2 +- .../qmlprojectmanager/qmlprojectrunconfiguration.cpp | 2 +- src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h | 2 +- .../qmlprojectmanager/qmlprojectrunconfigurationfactory.cpp | 2 +- .../qmlprojectmanager/qmlprojectrunconfigurationfactory.h | 2 +- .../qmlprojectmanager/qmlprojectrunconfigurationwidget.cpp | 2 +- .../qmlprojectmanager/qmlprojectrunconfigurationwidget.h | 2 +- src/plugins/qnx/Qnx.pluginspec.in | 2 +- src/plugins/qnx/bardescriptordocument.cpp | 2 +- src/plugins/qnx/bardescriptordocument.h | 2 +- src/plugins/qnx/bardescriptordocumentnodehandlers.cpp | 2 +- src/plugins/qnx/bardescriptordocumentnodehandlers.h | 2 +- src/plugins/qnx/bardescriptoreditor.cpp | 2 +- src/plugins/qnx/bardescriptoreditor.h | 2 +- src/plugins/qnx/bardescriptoreditorabstractpanelwidget.cpp | 2 +- src/plugins/qnx/bardescriptoreditorabstractpanelwidget.h | 2 +- src/plugins/qnx/bardescriptoreditorassetswidget.cpp | 2 +- src/plugins/qnx/bardescriptoreditorassetswidget.h | 2 +- .../qnx/bardescriptoreditorauthorinformationwidget.cpp | 2 +- .../qnx/bardescriptoreditorauthorinformationwidget.h | 2 +- src/plugins/qnx/bardescriptoreditorentrypointwidget.cpp | 2 +- src/plugins/qnx/bardescriptoreditorentrypointwidget.h | 2 +- src/plugins/qnx/bardescriptoreditorenvironmentwidget.cpp | 2 +- src/plugins/qnx/bardescriptoreditorenvironmentwidget.h | 2 +- src/plugins/qnx/bardescriptoreditorfactory.cpp | 2 +- src/plugins/qnx/bardescriptoreditorfactory.h | 2 +- src/plugins/qnx/bardescriptoreditorgeneralwidget.cpp | 2 +- src/plugins/qnx/bardescriptoreditorgeneralwidget.h | 2 +- .../qnx/bardescriptoreditorpackageinformationwidget.cpp | 2 +- .../qnx/bardescriptoreditorpackageinformationwidget.h | 2 +- src/plugins/qnx/bardescriptoreditorpermissionswidget.cpp | 2 +- src/plugins/qnx/bardescriptoreditorpermissionswidget.h | 2 +- src/plugins/qnx/bardescriptoreditorwidget.cpp | 2 +- src/plugins/qnx/bardescriptoreditorwidget.h | 2 +- src/plugins/qnx/bardescriptormagicmatcher.cpp | 2 +- src/plugins/qnx/bardescriptormagicmatcher.h | 2 +- src/plugins/qnx/bardescriptorpermissionsmodel.cpp | 2 +- src/plugins/qnx/bardescriptorpermissionsmodel.h | 2 +- src/plugins/qnx/blackberryabstractdeploystep.cpp | 2 +- src/plugins/qnx/blackberryabstractdeploystep.h | 2 +- src/plugins/qnx/blackberryapplicationrunner.cpp | 2 +- src/plugins/qnx/blackberryapplicationrunner.h | 2 +- src/plugins/qnx/blackberrycertificate.cpp | 2 +- src/plugins/qnx/blackberrycertificate.h | 2 +- src/plugins/qnx/blackberrycheckdevmodestep.cpp | 2 +- src/plugins/qnx/blackberrycheckdevmodestep.h | 2 +- src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.cpp | 2 +- src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.h | 2 +- src/plugins/qnx/blackberrycheckdevmodestepfactory.cpp | 2 +- src/plugins/qnx/blackberrycheckdevmodestepfactory.h | 2 +- src/plugins/qnx/blackberryconfiguration.cpp | 2 +- src/plugins/qnx/blackberryconfiguration.h | 2 +- src/plugins/qnx/blackberryconfigurationmanager.cpp | 2 +- src/plugins/qnx/blackberryconfigurationmanager.h | 2 +- src/plugins/qnx/blackberrycreatecertificatedialog.cpp | 2 +- src/plugins/qnx/blackberrycreatecertificatedialog.h | 2 +- src/plugins/qnx/blackberrycreatepackagestep.cpp | 2 +- src/plugins/qnx/blackberrycreatepackagestep.h | 2 +- src/plugins/qnx/blackberrycreatepackagestepconfigwidget.cpp | 2 +- src/plugins/qnx/blackberrycreatepackagestepconfigwidget.h | 2 +- src/plugins/qnx/blackberrycreatepackagestepfactory.cpp | 2 +- src/plugins/qnx/blackberrycreatepackagestepfactory.h | 2 +- src/plugins/qnx/blackberrydebugsupport.cpp | 2 +- src/plugins/qnx/blackberrydebugsupport.h | 2 +- src/plugins/qnx/blackberrydebugtokenreader.cpp | 2 +- src/plugins/qnx/blackberrydebugtokenreader.h | 2 +- src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp | 2 +- src/plugins/qnx/blackberrydebugtokenrequestdialog.h | 2 +- src/plugins/qnx/blackberrydebugtokenrequester.cpp | 2 +- src/plugins/qnx/blackberrydebugtokenrequester.h | 2 +- src/plugins/qnx/blackberrydebugtokenuploader.cpp | 2 +- src/plugins/qnx/blackberrydebugtokenuploader.h | 2 +- src/plugins/qnx/blackberrydeployconfiguration.cpp | 2 +- src/plugins/qnx/blackberrydeployconfiguration.h | 2 +- src/plugins/qnx/blackberrydeployconfigurationfactory.cpp | 2 +- src/plugins/qnx/blackberrydeployconfigurationfactory.h | 2 +- src/plugins/qnx/blackberrydeployconfigurationwidget.cpp | 2 +- src/plugins/qnx/blackberrydeployconfigurationwidget.h | 2 +- src/plugins/qnx/blackberrydeployinformation.cpp | 2 +- src/plugins/qnx/blackberrydeployinformation.h | 2 +- src/plugins/qnx/blackberrydeploystep.cpp | 2 +- src/plugins/qnx/blackberrydeploystep.h | 2 +- src/plugins/qnx/blackberrydeploystepconfigwidget.cpp | 2 +- src/plugins/qnx/blackberrydeploystepconfigwidget.h | 2 +- src/plugins/qnx/blackberrydeploystepfactory.cpp | 2 +- src/plugins/qnx/blackberrydeploystepfactory.h | 2 +- src/plugins/qnx/blackberrydeviceconfiguration.cpp | 2 +- src/plugins/qnx/blackberrydeviceconfiguration.h | 2 +- src/plugins/qnx/blackberrydeviceconfigurationfactory.cpp | 2 +- src/plugins/qnx/blackberrydeviceconfigurationfactory.h | 2 +- src/plugins/qnx/blackberrydeviceconfigurationwidget.cpp | 2 +- src/plugins/qnx/blackberrydeviceconfigurationwidget.h | 2 +- src/plugins/qnx/blackberrydeviceconfigurationwizard.cpp | 2 +- src/plugins/qnx/blackberrydeviceconfigurationwizard.h | 2 +- .../qnx/blackberrydeviceconfigurationwizardpages.cpp | 2 +- src/plugins/qnx/blackberrydeviceconfigurationwizardpages.h | 2 +- src/plugins/qnx/blackberrydeviceconnection.cpp | 2 +- src/plugins/qnx/blackberrydeviceconnection.h | 2 +- src/plugins/qnx/blackberrydeviceconnectionmanager.cpp | 2 +- src/plugins/qnx/blackberrydeviceconnectionmanager.h | 2 +- src/plugins/qnx/blackberrydeviceinformation.cpp | 2 +- src/plugins/qnx/blackberrydeviceinformation.h | 2 +- src/plugins/qnx/blackberrydevicelistdetector.cpp | 2 +- src/plugins/qnx/blackberrydevicelistdetector.h | 2 +- src/plugins/qnx/blackberryimportcertificatedialog.cpp | 2 +- src/plugins/qnx/blackberryimportcertificatedialog.h | 2 +- src/plugins/qnx/blackberryinstallwizard.cpp | 2 +- src/plugins/qnx/blackberryinstallwizard.h | 2 +- src/plugins/qnx/blackberryinstallwizardpages.cpp | 2 +- src/plugins/qnx/blackberryinstallwizardpages.h | 2 +- src/plugins/qnx/blackberrykeyspage.cpp | 2 +- src/plugins/qnx/blackberrykeyspage.h | 2 +- src/plugins/qnx/blackberrykeyswidget.cpp | 2 +- src/plugins/qnx/blackberrykeyswidget.h | 2 +- src/plugins/qnx/blackberrylogprocessrunner.cpp | 2 +- src/plugins/qnx/blackberrylogprocessrunner.h | 2 +- src/plugins/qnx/blackberryndkprocess.cpp | 2 +- src/plugins/qnx/blackberryndkprocess.h | 2 +- src/plugins/qnx/blackberryndksettingspage.cpp | 2 +- src/plugins/qnx/blackberryndksettingspage.h | 2 +- src/plugins/qnx/blackberryndksettingswidget.cpp | 2 +- src/plugins/qnx/blackberryndksettingswidget.h | 2 +- src/plugins/qnx/blackberryprocessparser.cpp | 2 +- src/plugins/qnx/blackberryprocessparser.h | 2 +- src/plugins/qnx/blackberryqtversion.cpp | 2 +- src/plugins/qnx/blackberryqtversion.h | 2 +- src/plugins/qnx/blackberryqtversionfactory.cpp | 2 +- src/plugins/qnx/blackberryqtversionfactory.h | 2 +- src/plugins/qnx/blackberryrunconfiguration.cpp | 2 +- src/plugins/qnx/blackberryrunconfiguration.h | 2 +- src/plugins/qnx/blackberryrunconfigurationfactory.cpp | 2 +- src/plugins/qnx/blackberryrunconfigurationfactory.h | 2 +- src/plugins/qnx/blackberryrunconfigurationwidget.cpp | 2 +- src/plugins/qnx/blackberryrunconfigurationwidget.h | 2 +- src/plugins/qnx/blackberryruncontrol.cpp | 2 +- src/plugins/qnx/blackberryruncontrol.h | 2 +- src/plugins/qnx/blackberryruncontrolfactory.cpp | 2 +- src/plugins/qnx/blackberryruncontrolfactory.h | 2 +- src/plugins/qnx/blackberrysetupwizard.cpp | 2 +- src/plugins/qnx/blackberrysetupwizard.h | 2 +- src/plugins/qnx/blackberrysetupwizardpages.cpp | 2 +- src/plugins/qnx/blackberrysetupwizardpages.h | 2 +- src/plugins/qnx/blackberrysigningpasswordsdialog.cpp | 2 +- src/plugins/qnx/blackberrysigningpasswordsdialog.h | 2 +- src/plugins/qnx/blackberrysigningutils.cpp | 2 +- src/plugins/qnx/blackberrysigningutils.h | 2 +- src/plugins/qnx/blackberrysshkeysgenerator.cpp | 2 +- src/plugins/qnx/blackberrysshkeysgenerator.h | 2 +- src/plugins/qnx/cascadesimport/bardescriptorconverter.cpp | 2 +- src/plugins/qnx/cascadesimport/bardescriptorconverter.h | 2 +- src/plugins/qnx/cascadesimport/cascadesimportwizard.cpp | 2 +- src/plugins/qnx/cascadesimport/cascadesimportwizard.h | 2 +- src/plugins/qnx/cascadesimport/fileconverter.cpp | 2 +- src/plugins/qnx/cascadesimport/fileconverter.h | 2 +- src/plugins/qnx/cascadesimport/importlog.cpp | 2 +- src/plugins/qnx/cascadesimport/importlog.h | 2 +- src/plugins/qnx/cascadesimport/importlogconverter.cpp | 2 +- src/plugins/qnx/cascadesimport/importlogconverter.h | 2 +- src/plugins/qnx/cascadesimport/projectfileconverter.cpp | 2 +- src/plugins/qnx/cascadesimport/projectfileconverter.h | 2 +- src/plugins/qnx/cascadesimport/srcprojectwizardpage.cpp | 2 +- src/plugins/qnx/cascadesimport/srcprojectwizardpage.h | 2 +- src/plugins/qnx/pathchooserdelegate.cpp | 2 +- src/plugins/qnx/pathchooserdelegate.h | 2 +- src/plugins/qnx/qnxabstractqtversion.cpp | 2 +- src/plugins/qnx/qnxabstractqtversion.h | 2 +- src/plugins/qnx/qnxabstractrunsupport.cpp | 2 +- src/plugins/qnx/qnxabstractrunsupport.h | 2 +- src/plugins/qnx/qnxanalyzesupport.cpp | 2 +- src/plugins/qnx/qnxanalyzesupport.h | 2 +- src/plugins/qnx/qnxbaseqtconfigwidget.cpp | 2 +- src/plugins/qnx/qnxbaseqtconfigwidget.h | 2 +- src/plugins/qnx/qnxconstants.h | 2 +- src/plugins/qnx/qnxdebugsupport.cpp | 2 +- src/plugins/qnx/qnxdebugsupport.h | 2 +- src/plugins/qnx/qnxdeployconfiguration.cpp | 2 +- src/plugins/qnx/qnxdeployconfiguration.h | 2 +- src/plugins/qnx/qnxdeployconfigurationfactory.cpp | 2 +- src/plugins/qnx/qnxdeployconfigurationfactory.h | 2 +- src/plugins/qnx/qnxdeploystepfactory.cpp | 2 +- src/plugins/qnx/qnxdeploystepfactory.h | 2 +- src/plugins/qnx/qnxdeviceconfiguration.cpp | 2 +- src/plugins/qnx/qnxdeviceconfiguration.h | 2 +- src/plugins/qnx/qnxdeviceconfigurationfactory.cpp | 2 +- src/plugins/qnx/qnxdeviceconfigurationfactory.h | 2 +- src/plugins/qnx/qnxdeviceconfigurationwizard.cpp | 2 +- src/plugins/qnx/qnxdeviceconfigurationwizard.h | 2 +- src/plugins/qnx/qnxdeviceconfigurationwizardpages.cpp | 2 +- src/plugins/qnx/qnxdeviceconfigurationwizardpages.h | 2 +- src/plugins/qnx/qnxdeviceprocesslist.cpp | 2 +- src/plugins/qnx/qnxdeviceprocesslist.h | 2 +- src/plugins/qnx/qnxdeviceprocesssignaloperation.cpp | 2 +- src/plugins/qnx/qnxdeviceprocesssignaloperation.h | 2 +- src/plugins/qnx/qnxdevicetester.cpp | 2 +- src/plugins/qnx/qnxdevicetester.h | 2 +- src/plugins/qnx/qnxplugin.cpp | 2 +- src/plugins/qnx/qnxplugin.h | 2 +- src/plugins/qnx/qnxqtversion.cpp | 2 +- src/plugins/qnx/qnxqtversion.h | 2 +- src/plugins/qnx/qnxqtversionfactory.cpp | 2 +- src/plugins/qnx/qnxqtversionfactory.h | 2 +- src/plugins/qnx/qnxrunconfiguration.cpp | 2 +- src/plugins/qnx/qnxrunconfiguration.h | 2 +- src/plugins/qnx/qnxrunconfigurationfactory.cpp | 2 +- src/plugins/qnx/qnxrunconfigurationfactory.h | 2 +- src/plugins/qnx/qnxruncontrol.cpp | 2 +- src/plugins/qnx/qnxruncontrol.h | 2 +- src/plugins/qnx/qnxruncontrolfactory.cpp | 2 +- src/plugins/qnx/qnxruncontrolfactory.h | 2 +- src/plugins/qnx/qnxtoolchain.cpp | 2 +- src/plugins/qnx/qnxtoolchain.h | 2 +- src/plugins/qnx/qnxutils.cpp | 2 +- src/plugins/qnx/qnxutils.h | 2 +- src/plugins/qnx/slog2inforunner.cpp | 2 +- src/plugins/qnx/slog2inforunner.h | 2 +- src/plugins/qtsupport/QtSupport.pluginspec.in | 2 +- src/plugins/qtsupport/baseqtversion.cpp | 2 +- src/plugins/qtsupport/baseqtversion.h | 2 +- .../qtsupport/customexecutableconfigurationwidget.cpp | 2 +- src/plugins/qtsupport/customexecutableconfigurationwidget.h | 2 +- src/plugins/qtsupport/customexecutablerunconfiguration.cpp | 2 +- src/plugins/qtsupport/customexecutablerunconfiguration.h | 2 +- src/plugins/qtsupport/debugginghelper.cpp | 2 +- src/plugins/qtsupport/debugginghelper.h | 2 +- src/plugins/qtsupport/debugginghelperbuildtask.cpp | 2 +- src/plugins/qtsupport/debugginghelperbuildtask.h | 2 +- src/plugins/qtsupport/desktopqtversion.cpp | 2 +- src/plugins/qtsupport/desktopqtversion.h | 2 +- src/plugins/qtsupport/desktopqtversionfactory.cpp | 2 +- src/plugins/qtsupport/desktopqtversionfactory.h | 2 +- src/plugins/qtsupport/exampleslistmodel.cpp | 2 +- src/plugins/qtsupport/exampleslistmodel.h | 2 +- src/plugins/qtsupport/gettingstartedwelcomepage.cpp | 2 +- src/plugins/qtsupport/gettingstartedwelcomepage.h | 2 +- src/plugins/qtsupport/profilereader.cpp | 2 +- src/plugins/qtsupport/profilereader.h | 2 +- src/plugins/qtsupport/qmldumptool.cpp | 2 +- src/plugins/qtsupport/qmldumptool.h | 2 +- src/plugins/qtsupport/qtconfigwidget.cpp | 2 +- src/plugins/qtsupport/qtconfigwidget.h | 2 +- src/plugins/qtsupport/qtfeatureprovider.h | 2 +- src/plugins/qtsupport/qtkitconfigwidget.cpp | 2 +- src/plugins/qtsupport/qtkitconfigwidget.h | 2 +- src/plugins/qtsupport/qtkitinformation.cpp | 2 +- src/plugins/qtsupport/qtkitinformation.h | 2 +- src/plugins/qtsupport/qtoptionspage.cpp | 2 +- src/plugins/qtsupport/qtoptionspage.h | 2 +- src/plugins/qtsupport/qtoutputformatter.cpp | 2 +- src/plugins/qtsupport/qtoutputformatter.h | 2 +- src/plugins/qtsupport/qtparser.cpp | 2 +- src/plugins/qtsupport/qtparser.h | 2 +- src/plugins/qtsupport/qtsupport_global.h | 2 +- src/plugins/qtsupport/qtsupportconstants.h | 2 +- src/plugins/qtsupport/qtsupportplugin.cpp | 2 +- src/plugins/qtsupport/qtsupportplugin.h | 2 +- src/plugins/qtsupport/qtversionfactory.cpp | 2 +- src/plugins/qtsupport/qtversionfactory.h | 2 +- src/plugins/qtsupport/qtversionmanager.cpp | 2 +- src/plugins/qtsupport/qtversionmanager.h | 2 +- src/plugins/qtsupport/screenshotcropper.cpp | 2 +- src/plugins/qtsupport/screenshotcropper.h | 2 +- src/plugins/qtsupport/simulatorqtversion.cpp | 2 +- src/plugins/qtsupport/simulatorqtversion.h | 2 +- src/plugins/qtsupport/simulatorqtversionfactory.cpp | 2 +- src/plugins/qtsupport/simulatorqtversionfactory.h | 2 +- src/plugins/qtsupport/uicodemodelsupport.cpp | 2 +- src/plugins/qtsupport/uicodemodelsupport.h | 2 +- src/plugins/qtsupport/winceqtversion.cpp | 2 +- src/plugins/qtsupport/winceqtversion.h | 2 +- src/plugins/qtsupport/winceqtversionfactory.cpp | 2 +- src/plugins/qtsupport/winceqtversionfactory.h | 2 +- src/plugins/remotelinux/RemoteLinux.pluginspec.in | 2 +- src/plugins/remotelinux/abstractpackagingstep.cpp | 2 +- src/plugins/remotelinux/abstractpackagingstep.h | 2 +- .../remotelinux/abstractremotelinuxdeployservice.cpp | 2 +- src/plugins/remotelinux/abstractremotelinuxdeployservice.h | 2 +- src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp | 2 +- src/plugins/remotelinux/abstractremotelinuxdeploystep.h | 2 +- src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp | 2 +- src/plugins/remotelinux/abstractremotelinuxrunsupport.h | 2 +- .../remotelinux/abstractuploadandinstallpackageservice.cpp | 2 +- .../remotelinux/abstractuploadandinstallpackageservice.h | 2 +- src/plugins/remotelinux/embeddedlinuxqtversion.cpp | 2 +- src/plugins/remotelinux/embeddedlinuxqtversion.h | 2 +- src/plugins/remotelinux/embeddedlinuxqtversionfactory.cpp | 2 +- src/plugins/remotelinux/embeddedlinuxqtversionfactory.h | 2 +- src/plugins/remotelinux/genericdirectuploadservice.cpp | 2 +- src/plugins/remotelinux/genericdirectuploadservice.h | 2 +- src/plugins/remotelinux/genericdirectuploadstep.cpp | 2 +- src/plugins/remotelinux/genericdirectuploadstep.h | 2 +- .../remotelinux/genericlinuxdeviceconfigurationfactory.cpp | 2 +- .../remotelinux/genericlinuxdeviceconfigurationfactory.h | 2 +- .../remotelinux/genericlinuxdeviceconfigurationwidget.cpp | 2 +- .../remotelinux/genericlinuxdeviceconfigurationwidget.h | 2 +- .../remotelinux/genericlinuxdeviceconfigurationwizard.cpp | 2 +- .../remotelinux/genericlinuxdeviceconfigurationwizard.h | 2 +- .../genericlinuxdeviceconfigurationwizardpages.cpp | 2 +- .../genericlinuxdeviceconfigurationwizardpages.h | 2 +- .../remotelinux/genericremotelinuxdeploystepfactory.cpp | 2 +- .../remotelinux/genericremotelinuxdeploystepfactory.h | 2 +- src/plugins/remotelinux/linuxdevice.cpp | 2 +- src/plugins/remotelinux/linuxdevice.h | 2 +- src/plugins/remotelinux/linuxdeviceprocess.cpp | 2 +- src/plugins/remotelinux/linuxdeviceprocess.h | 2 +- src/plugins/remotelinux/linuxdevicetester.cpp | 2 +- src/plugins/remotelinux/linuxdevicetester.h | 2 +- src/plugins/remotelinux/packageuploader.cpp | 2 +- src/plugins/remotelinux/packageuploader.h | 2 +- src/plugins/remotelinux/publickeydeploymentdialog.cpp | 2 +- src/plugins/remotelinux/publickeydeploymentdialog.h | 2 +- src/plugins/remotelinux/remotelinux_constants.h | 2 +- src/plugins/remotelinux/remotelinux_export.h | 2 +- src/plugins/remotelinux/remotelinuxanalyzesupport.cpp | 2 +- src/plugins/remotelinux/remotelinuxanalyzesupport.h | 2 +- .../remotelinux/remotelinuxcheckforfreediskspaceservice.cpp | 2 +- .../remotelinux/remotelinuxcheckforfreediskspaceservice.h | 2 +- .../remotelinux/remotelinuxcheckforfreediskspacestep.cpp | 2 +- .../remotelinux/remotelinuxcheckforfreediskspacestep.h | 2 +- .../remotelinux/remotelinuxcustomcommanddeploymentstep.cpp | 2 +- .../remotelinux/remotelinuxcustomcommanddeploymentstep.h | 2 +- .../remotelinux/remotelinuxcustomcommanddeployservice.cpp | 2 +- .../remotelinux/remotelinuxcustomcommanddeployservice.h | 2 +- src/plugins/remotelinux/remotelinuxdebugsupport.cpp | 2 +- src/plugins/remotelinux/remotelinuxdebugsupport.h | 2 +- src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp | 2 +- src/plugins/remotelinux/remotelinuxdeployconfiguration.h | 2 +- .../remotelinux/remotelinuxdeployconfigurationfactory.cpp | 2 +- .../remotelinux/remotelinuxdeployconfigurationfactory.h | 2 +- .../remotelinux/remotelinuxdeployconfigurationwidget.cpp | 2 +- .../remotelinux/remotelinuxdeployconfigurationwidget.h | 2 +- src/plugins/remotelinux/remotelinuxdeploymentdatamodel.cpp | 2 +- src/plugins/remotelinux/remotelinuxdeploymentdatamodel.h | 2 +- src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp | 2 +- src/plugins/remotelinux/remotelinuxenvironmentaspect.h | 2 +- .../remotelinux/remotelinuxenvironmentaspectwidget.cpp | 2 +- .../remotelinux/remotelinuxenvironmentaspectwidget.h | 2 +- src/plugins/remotelinux/remotelinuxenvironmentreader.cpp | 2 +- src/plugins/remotelinux/remotelinuxenvironmentreader.h | 2 +- src/plugins/remotelinux/remotelinuxpackageinstaller.cpp | 2 +- src/plugins/remotelinux/remotelinuxpackageinstaller.h | 2 +- src/plugins/remotelinux/remotelinuxplugin.cpp | 2 +- src/plugins/remotelinux/remotelinuxplugin.h | 2 +- src/plugins/remotelinux/remotelinuxrunconfiguration.cpp | 2 +- src/plugins/remotelinux/remotelinuxrunconfiguration.h | 2 +- .../remotelinux/remotelinuxrunconfigurationfactory.cpp | 2 +- .../remotelinux/remotelinuxrunconfigurationfactory.h | 2 +- .../remotelinux/remotelinuxrunconfigurationwidget.cpp | 2 +- src/plugins/remotelinux/remotelinuxrunconfigurationwidget.h | 2 +- src/plugins/remotelinux/remotelinuxruncontrol.cpp | 2 +- src/plugins/remotelinux/remotelinuxruncontrol.h | 2 +- src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp | 2 +- src/plugins/remotelinux/remotelinuxruncontrolfactory.h | 2 +- src/plugins/remotelinux/remotelinuxsignaloperation.cpp | 2 +- src/plugins/remotelinux/remotelinuxsignaloperation.h | 2 +- src/plugins/remotelinux/remotelinuxutils.cpp | 2 +- src/plugins/remotelinux/remotelinuxutils.h | 2 +- src/plugins/remotelinux/sshkeydeployer.cpp | 2 +- src/plugins/remotelinux/sshkeydeployer.h | 2 +- src/plugins/remotelinux/tarpackagecreationstep.cpp | 2 +- src/plugins/remotelinux/tarpackagecreationstep.h | 2 +- .../typespecificdeviceconfigurationlistmodel.cpp | 2 +- .../remotelinux/typespecificdeviceconfigurationlistmodel.h | 2 +- src/plugins/remotelinux/uploadandinstalltarpackagestep.cpp | 2 +- src/plugins/remotelinux/uploadandinstalltarpackagestep.h | 2 +- src/plugins/resourceeditor/ResourceEditor.pluginspec.in | 2 +- src/plugins/resourceeditor/qrceditor/qrceditor.cpp | 2 +- src/plugins/resourceeditor/qrceditor/qrceditor.h | 2 +- src/plugins/resourceeditor/qrceditor/resourcefile.cpp | 2 +- src/plugins/resourceeditor/qrceditor/resourcefile_p.h | 2 +- src/plugins/resourceeditor/qrceditor/resourceview.cpp | 2 +- src/plugins/resourceeditor/qrceditor/resourceview.h | 2 +- src/plugins/resourceeditor/qrceditor/test/main.cpp | 2 +- src/plugins/resourceeditor/qrceditor/test/mainwindow.cpp | 2 +- src/plugins/resourceeditor/qrceditor/test/mainwindow.h | 2 +- src/plugins/resourceeditor/qrceditor/undocommands.cpp | 2 +- src/plugins/resourceeditor/qrceditor/undocommands_p.h | 2 +- src/plugins/resourceeditor/resourceeditorconstants.h | 2 +- src/plugins/resourceeditor/resourceeditorfactory.cpp | 2 +- src/plugins/resourceeditor/resourceeditorfactory.h | 2 +- src/plugins/resourceeditor/resourceeditorplugin.cpp | 2 +- src/plugins/resourceeditor/resourceeditorplugin.h | 2 +- src/plugins/resourceeditor/resourceeditorw.cpp | 2 +- src/plugins/resourceeditor/resourceeditorw.h | 2 +- src/plugins/resourceeditor/resourcewizard.cpp | 2 +- src/plugins/resourceeditor/resourcewizard.h | 2 +- src/plugins/subversion/Subversion.pluginspec.in | 2 +- src/plugins/subversion/annotationhighlighter.cpp | 2 +- src/plugins/subversion/annotationhighlighter.h | 2 +- src/plugins/subversion/checkoutwizard.cpp | 2 +- src/plugins/subversion/checkoutwizard.h | 2 +- src/plugins/subversion/checkoutwizardpage.cpp | 2 +- src/plugins/subversion/checkoutwizardpage.h | 2 +- src/plugins/subversion/settingspage.cpp | 2 +- src/plugins/subversion/settingspage.h | 2 +- src/plugins/subversion/subversionconstants.h | 2 +- src/plugins/subversion/subversioncontrol.cpp | 2 +- src/plugins/subversion/subversioncontrol.h | 2 +- src/plugins/subversion/subversioneditor.cpp | 2 +- src/plugins/subversion/subversioneditor.h | 2 +- src/plugins/subversion/subversionplugin.cpp | 2 +- src/plugins/subversion/subversionplugin.h | 2 +- src/plugins/subversion/subversionsettings.cpp | 2 +- src/plugins/subversion/subversionsettings.h | 2 +- src/plugins/subversion/subversionsubmiteditor.cpp | 2 +- src/plugins/subversion/subversionsubmiteditor.h | 2 +- src/plugins/tasklist/TaskList.pluginspec.in | 2 +- src/plugins/tasklist/stopmonitoringhandler.cpp | 2 +- src/plugins/tasklist/stopmonitoringhandler.h | 2 +- src/plugins/tasklist/taskfile.cpp | 2 +- src/plugins/tasklist/taskfile.h | 2 +- src/plugins/tasklist/taskfilefactory.cpp | 2 +- src/plugins/tasklist/taskfilefactory.h | 2 +- src/plugins/tasklist/tasklistconstants.h | 2 +- src/plugins/tasklist/tasklistplugin.cpp | 2 +- src/plugins/tasklist/tasklistplugin.h | 2 +- src/plugins/texteditor/TextEditor.pluginspec.in | 2 +- src/plugins/texteditor/autocompleter.cpp | 2 +- src/plugins/texteditor/autocompleter.h | 2 +- src/plugins/texteditor/basefilefind.cpp | 2 +- src/plugins/texteditor/basefilefind.h | 2 +- src/plugins/texteditor/basefilefind_p.h | 2 +- src/plugins/texteditor/basehoverhandler.cpp | 2 +- src/plugins/texteditor/basehoverhandler.h | 2 +- src/plugins/texteditor/basetextdocument.cpp | 2 +- src/plugins/texteditor/basetextdocument.h | 2 +- src/plugins/texteditor/basetextdocumentlayout.cpp | 2 +- src/plugins/texteditor/basetextdocumentlayout.h | 2 +- src/plugins/texteditor/basetexteditor.cpp | 2 +- src/plugins/texteditor/basetexteditor.h | 2 +- src/plugins/texteditor/basetexteditor_p.h | 2 +- src/plugins/texteditor/basetextmark.cpp | 2 +- src/plugins/texteditor/basetextmark.h | 2 +- src/plugins/texteditor/basetextmarkregistry.h | 2 +- src/plugins/texteditor/behaviorsettings.cpp | 2 +- src/plugins/texteditor/behaviorsettings.h | 2 +- src/plugins/texteditor/behaviorsettingspage.cpp | 2 +- src/plugins/texteditor/behaviorsettingspage.h | 2 +- src/plugins/texteditor/behaviorsettingswidget.cpp | 2 +- src/plugins/texteditor/behaviorsettingswidget.h | 2 +- src/plugins/texteditor/circularclipboard.cpp | 2 +- src/plugins/texteditor/circularclipboard.h | 2 +- src/plugins/texteditor/circularclipboardassist.cpp | 2 +- src/plugins/texteditor/circularclipboardassist.h | 2 +- src/plugins/texteditor/codeassist/assistenums.h | 2 +- src/plugins/texteditor/codeassist/basicproposalitem.cpp | 2 +- src/plugins/texteditor/codeassist/basicproposalitem.h | 2 +- .../texteditor/codeassist/basicproposalitemlistmodel.cpp | 2 +- .../texteditor/codeassist/basicproposalitemlistmodel.h | 2 +- src/plugins/texteditor/codeassist/codeassistant.cpp | 2 +- src/plugins/texteditor/codeassist/codeassistant.h | 2 +- .../texteditor/codeassist/completionassistprovider.cpp | 2 +- .../texteditor/codeassist/completionassistprovider.h | 2 +- .../texteditor/codeassist/defaultassistinterface.cpp | 2 +- src/plugins/texteditor/codeassist/defaultassistinterface.h | 2 +- src/plugins/texteditor/codeassist/functionhintproposal.cpp | 2 +- src/plugins/texteditor/codeassist/functionhintproposal.h | 2 +- .../texteditor/codeassist/functionhintproposalwidget.cpp | 2 +- .../texteditor/codeassist/functionhintproposalwidget.h | 2 +- src/plugins/texteditor/codeassist/genericproposal.cpp | 2 +- src/plugins/texteditor/codeassist/genericproposal.h | 2 +- src/plugins/texteditor/codeassist/genericproposalwidget.cpp | 2 +- src/plugins/texteditor/codeassist/genericproposalwidget.h | 2 +- src/plugins/texteditor/codeassist/iassistinterface.cpp | 2 +- src/plugins/texteditor/codeassist/iassistinterface.h | 2 +- src/plugins/texteditor/codeassist/iassistprocessor.cpp | 2 +- src/plugins/texteditor/codeassist/iassistprocessor.h | 2 +- src/plugins/texteditor/codeassist/iassistproposal.cpp | 2 +- src/plugins/texteditor/codeassist/iassistproposal.h | 2 +- src/plugins/texteditor/codeassist/iassistproposalitem.cpp | 2 +- src/plugins/texteditor/codeassist/iassistproposalitem.h | 2 +- src/plugins/texteditor/codeassist/iassistproposalmodel.cpp | 2 +- src/plugins/texteditor/codeassist/iassistproposalmodel.h | 2 +- src/plugins/texteditor/codeassist/iassistproposalwidget.cpp | 2 +- src/plugins/texteditor/codeassist/iassistproposalwidget.h | 2 +- src/plugins/texteditor/codeassist/iassistprovider.cpp | 2 +- src/plugins/texteditor/codeassist/iassistprovider.h | 2 +- .../texteditor/codeassist/ifunctionhintproposalmodel.cpp | 2 +- .../texteditor/codeassist/ifunctionhintproposalmodel.h | 2 +- src/plugins/texteditor/codeassist/igenericproposalmodel.cpp | 2 +- src/plugins/texteditor/codeassist/igenericproposalmodel.h | 2 +- .../texteditor/codeassist/keywordscompletionassist.cpp | 2 +- .../texteditor/codeassist/keywordscompletionassist.h | 2 +- .../texteditor/codeassist/quickfixassistprocessor.cpp | 2 +- src/plugins/texteditor/codeassist/quickfixassistprocessor.h | 2 +- .../texteditor/codeassist/quickfixassistprovider.cpp | 2 +- src/plugins/texteditor/codeassist/quickfixassistprovider.h | 2 +- src/plugins/texteditor/codeassist/runner.cpp | 2 +- src/plugins/texteditor/codeassist/runner.h | 2 +- src/plugins/texteditor/codecselector.cpp | 2 +- src/plugins/texteditor/codecselector.h | 2 +- src/plugins/texteditor/codestyleeditor.cpp | 2 +- src/plugins/texteditor/codestyleeditor.h | 2 +- src/plugins/texteditor/codestylepool.cpp | 2 +- src/plugins/texteditor/codestylepool.h | 2 +- src/plugins/texteditor/codestyleselectorwidget.cpp | 2 +- src/plugins/texteditor/codestyleselectorwidget.h | 2 +- src/plugins/texteditor/colorscheme.cpp | 2 +- src/plugins/texteditor/colorscheme.h | 2 +- src/plugins/texteditor/colorschemeedit.cpp | 2 +- src/plugins/texteditor/colorschemeedit.h | 2 +- src/plugins/texteditor/completionsettings.cpp | 2 +- src/plugins/texteditor/completionsettings.h | 2 +- src/plugins/texteditor/convenience.cpp | 2 +- src/plugins/texteditor/convenience.h | 2 +- src/plugins/texteditor/displaysettings.cpp | 2 +- src/plugins/texteditor/displaysettings.h | 2 +- src/plugins/texteditor/displaysettingspage.cpp | 2 +- src/plugins/texteditor/displaysettingspage.h | 2 +- src/plugins/texteditor/extraencodingsettings.cpp | 2 +- src/plugins/texteditor/extraencodingsettings.h | 2 +- src/plugins/texteditor/findincurrentfile.cpp | 2 +- src/plugins/texteditor/findincurrentfile.h | 2 +- src/plugins/texteditor/findinfiles.cpp | 2 +- src/plugins/texteditor/findinfiles.h | 2 +- src/plugins/texteditor/findinopenfiles.cpp | 2 +- src/plugins/texteditor/findinopenfiles.h | 2 +- src/plugins/texteditor/fontsettings.cpp | 2 +- src/plugins/texteditor/fontsettings.h | 2 +- src/plugins/texteditor/fontsettingspage.cpp | 2 +- src/plugins/texteditor/fontsettingspage.h | 2 +- src/plugins/texteditor/generichighlighter/context.cpp | 2 +- src/plugins/texteditor/generichighlighter/context.h | 2 +- .../texteditor/generichighlighter/definitiondownloader.cpp | 2 +- .../texteditor/generichighlighter/definitiondownloader.h | 2 +- src/plugins/texteditor/generichighlighter/dynamicrule.cpp | 2 +- src/plugins/texteditor/generichighlighter/dynamicrule.h | 2 +- .../texteditor/generichighlighter/highlightdefinition.cpp | 2 +- .../texteditor/generichighlighter/highlightdefinition.h | 2 +- .../generichighlighter/highlightdefinitionhandler.cpp | 2 +- .../generichighlighter/highlightdefinitionhandler.h | 2 +- .../generichighlighter/highlightdefinitionmetadata.h | 2 +- src/plugins/texteditor/generichighlighter/highlighter.cpp | 2 +- src/plugins/texteditor/generichighlighter/highlighter.h | 2 +- .../texteditor/generichighlighter/highlighterexception.h | 2 +- .../texteditor/generichighlighter/highlightersettings.cpp | 2 +- .../texteditor/generichighlighter/highlightersettings.h | 2 +- .../generichighlighter/highlightersettingspage.cpp | 2 +- .../texteditor/generichighlighter/highlightersettingspage.h | 2 +- .../generichighlighter/includerulesinstruction.cpp | 2 +- .../texteditor/generichighlighter/includerulesinstruction.h | 2 +- src/plugins/texteditor/generichighlighter/itemdata.cpp | 2 +- src/plugins/texteditor/generichighlighter/itemdata.h | 2 +- src/plugins/texteditor/generichighlighter/keywordlist.cpp | 2 +- src/plugins/texteditor/generichighlighter/keywordlist.h | 2 +- .../generichighlighter/managedefinitionsdialog.cpp | 2 +- .../texteditor/generichighlighter/managedefinitionsdialog.h | 2 +- src/plugins/texteditor/generichighlighter/manager.cpp | 2 +- src/plugins/texteditor/generichighlighter/manager.h | 2 +- src/plugins/texteditor/generichighlighter/progressdata.cpp | 2 +- src/plugins/texteditor/generichighlighter/progressdata.h | 2 +- src/plugins/texteditor/generichighlighter/reuse.h | 2 +- src/plugins/texteditor/generichighlighter/rule.cpp | 2 +- src/plugins/texteditor/generichighlighter/rule.h | 2 +- src/plugins/texteditor/generichighlighter/specificrules.cpp | 2 +- src/plugins/texteditor/generichighlighter/specificrules.h | 2 +- src/plugins/texteditor/helpitem.cpp | 2 +- src/plugins/texteditor/helpitem.h | 2 +- src/plugins/texteditor/highlighterutils.cpp | 2 +- src/plugins/texteditor/highlighterutils.h | 2 +- src/plugins/texteditor/icodestylepreferences.cpp | 2 +- src/plugins/texteditor/icodestylepreferences.h | 2 +- src/plugins/texteditor/icodestylepreferencesfactory.cpp | 2 +- src/plugins/texteditor/icodestylepreferencesfactory.h | 2 +- src/plugins/texteditor/ihighlighterfactory.h | 2 +- src/plugins/texteditor/indenter.cpp | 2 +- src/plugins/texteditor/indenter.h | 2 +- src/plugins/texteditor/ioutlinewidget.h | 2 +- src/plugins/texteditor/itexteditor.cpp | 2 +- src/plugins/texteditor/itexteditor.h | 2 +- src/plugins/texteditor/itextmark.cpp | 2 +- src/plugins/texteditor/itextmark.h | 2 +- src/plugins/texteditor/linenumberfilter.cpp | 2 +- src/plugins/texteditor/linenumberfilter.h | 2 +- src/plugins/texteditor/normalindenter.cpp | 2 +- src/plugins/texteditor/normalindenter.h | 2 +- src/plugins/texteditor/outlinefactory.cpp | 2 +- src/plugins/texteditor/outlinefactory.h | 2 +- src/plugins/texteditor/plaintexteditor.cpp | 2 +- src/plugins/texteditor/plaintexteditor.h | 2 +- src/plugins/texteditor/plaintexteditorfactory.cpp | 2 +- src/plugins/texteditor/plaintexteditorfactory.h | 2 +- src/plugins/texteditor/quickfix.cpp | 2 +- src/plugins/texteditor/quickfix.h | 2 +- src/plugins/texteditor/refactoringchanges.cpp | 2 +- src/plugins/texteditor/refactoringchanges.h | 2 +- src/plugins/texteditor/refactoroverlay.cpp | 2 +- src/plugins/texteditor/refactoroverlay.h | 2 +- src/plugins/texteditor/semantichighlighter.cpp | 2 +- src/plugins/texteditor/semantichighlighter.h | 2 +- src/plugins/texteditor/simplecodestylepreferences.cpp | 2 +- src/plugins/texteditor/simplecodestylepreferences.h | 2 +- src/plugins/texteditor/simplecodestylepreferenceswidget.cpp | 2 +- src/plugins/texteditor/simplecodestylepreferenceswidget.h | 2 +- src/plugins/texteditor/snippets/isnippetprovider.cpp | 2 +- src/plugins/texteditor/snippets/isnippetprovider.h | 2 +- .../texteditor/snippets/plaintextsnippetprovider.cpp | 2 +- src/plugins/texteditor/snippets/plaintextsnippetprovider.h | 2 +- src/plugins/texteditor/snippets/reuse.h | 2 +- src/plugins/texteditor/snippets/snippet.cpp | 2 +- src/plugins/texteditor/snippets/snippet.h | 2 +- src/plugins/texteditor/snippets/snippetassistcollector.cpp | 2 +- src/plugins/texteditor/snippets/snippetassistcollector.h | 2 +- src/plugins/texteditor/snippets/snippeteditor.cpp | 2 +- src/plugins/texteditor/snippets/snippeteditor.h | 2 +- src/plugins/texteditor/snippets/snippetscollection.cpp | 2 +- src/plugins/texteditor/snippets/snippetscollection.h | 2 +- src/plugins/texteditor/snippets/snippetssettings.cpp | 2 +- src/plugins/texteditor/snippets/snippetssettings.h | 2 +- src/plugins/texteditor/snippets/snippetssettingspage.cpp | 2 +- src/plugins/texteditor/snippets/snippetssettingspage.h | 2 +- src/plugins/texteditor/storagesettings.cpp | 2 +- src/plugins/texteditor/storagesettings.h | 2 +- src/plugins/texteditor/syntaxhighlighter.cpp | 2 +- src/plugins/texteditor/syntaxhighlighter.h | 2 +- src/plugins/texteditor/tabsettings.cpp | 2 +- src/plugins/texteditor/tabsettings.h | 2 +- src/plugins/texteditor/tabsettingswidget.cpp | 2 +- src/plugins/texteditor/tabsettingswidget.h | 2 +- src/plugins/texteditor/texteditor_global.h | 2 +- src/plugins/texteditor/texteditoractionhandler.cpp | 2 +- src/plugins/texteditor/texteditoractionhandler.h | 2 +- src/plugins/texteditor/texteditorconstants.cpp | 2 +- src/plugins/texteditor/texteditorconstants.h | 2 +- src/plugins/texteditor/texteditoroptionspage.cpp | 2 +- src/plugins/texteditor/texteditoroptionspage.h | 2 +- src/plugins/texteditor/texteditoroverlay.cpp | 2 +- src/plugins/texteditor/texteditoroverlay.h | 2 +- src/plugins/texteditor/texteditorplugin.cpp | 2 +- src/plugins/texteditor/texteditorplugin.h | 2 +- src/plugins/texteditor/texteditorsettings.cpp | 2 +- src/plugins/texteditor/texteditorsettings.h | 2 +- src/plugins/texteditor/textfilewizard.cpp | 2 +- src/plugins/texteditor/textfilewizard.h | 2 +- src/plugins/texteditor/typingsettings.cpp | 2 +- src/plugins/texteditor/typingsettings.h | 2 +- src/plugins/todo/Todo.pluginspec.in | 2 +- src/plugins/todo/constants.h | 4 ++-- src/plugins/todo/cpptodoitemsscanner.cpp | 4 ++-- src/plugins/todo/cpptodoitemsscanner.h | 4 ++-- src/plugins/todo/keyword.cpp | 4 ++-- src/plugins/todo/keyword.h | 4 ++-- src/plugins/todo/keyworddialog.cpp | 4 ++-- src/plugins/todo/keyworddialog.h | 4 ++-- src/plugins/todo/lineparser.cpp | 4 ++-- src/plugins/todo/lineparser.h | 4 ++-- src/plugins/todo/optionsdialog.cpp | 4 ++-- src/plugins/todo/optionsdialog.h | 4 ++-- src/plugins/todo/optionspage.cpp | 4 ++-- src/plugins/todo/optionspage.h | 4 ++-- src/plugins/todo/qmljstodoitemsscanner.cpp | 4 ++-- src/plugins/todo/qmljstodoitemsscanner.h | 4 ++-- src/plugins/todo/settings.cpp | 4 ++-- src/plugins/todo/settings.h | 4 ++-- src/plugins/todo/todoitem.h | 4 ++-- src/plugins/todo/todoitemsmodel.cpp | 4 ++-- src/plugins/todo/todoitemsmodel.h | 4 ++-- src/plugins/todo/todoitemsprovider.cpp | 4 ++-- src/plugins/todo/todoitemsprovider.h | 4 ++-- src/plugins/todo/todoitemsscanner.cpp | 4 ++-- src/plugins/todo/todoitemsscanner.h | 4 ++-- src/plugins/todo/todooutputpane.cpp | 4 ++-- src/plugins/todo/todooutputpane.h | 4 ++-- src/plugins/todo/todooutputtreeview.cpp | 2 +- src/plugins/todo/todooutputtreeview.h | 2 +- src/plugins/todo/todoplugin.cpp | 4 ++-- src/plugins/todo/todoplugin.h | 4 ++-- src/plugins/updateinfo/UpdateInfo.pluginspec.in | 2 +- src/plugins/updateinfo/settingspage.cpp | 2 +- src/plugins/updateinfo/settingspage.h | 2 +- src/plugins/updateinfo/updateinfobutton.cpp | 2 +- src/plugins/updateinfo/updateinfobutton.h | 2 +- src/plugins/updateinfo/updateinfoplugin.cpp | 2 +- src/plugins/updateinfo/updateinfoplugin.h | 2 +- src/plugins/valgrind/Valgrind.pluginspec.in | 2 +- src/plugins/valgrind/callgrind/callgrindabstractmodel.h | 2 +- src/plugins/valgrind/callgrind/callgrindcallmodel.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindcallmodel.h | 2 +- src/plugins/valgrind/callgrind/callgrindcontroller.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindcontroller.h | 2 +- src/plugins/valgrind/callgrind/callgrindcostitem.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindcostitem.h | 2 +- src/plugins/valgrind/callgrind/callgrindcycledetection.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindcycledetection.h | 2 +- src/plugins/valgrind/callgrind/callgrinddatamodel.cpp | 2 +- src/plugins/valgrind/callgrind/callgrinddatamodel.h | 2 +- src/plugins/valgrind/callgrind/callgrindfunction.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindfunction.h | 2 +- src/plugins/valgrind/callgrind/callgrindfunction_p.h | 2 +- src/plugins/valgrind/callgrind/callgrindfunctioncall.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindfunctioncall.h | 2 +- src/plugins/valgrind/callgrind/callgrindfunctioncycle.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindfunctioncycle.h | 2 +- src/plugins/valgrind/callgrind/callgrindparsedata.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindparsedata.h | 2 +- src/plugins/valgrind/callgrind/callgrindparser.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindparser.h | 2 +- src/plugins/valgrind/callgrind/callgrindproxymodel.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindproxymodel.h | 2 +- src/plugins/valgrind/callgrind/callgrindrunner.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindrunner.h | 2 +- src/plugins/valgrind/callgrind/callgrindstackbrowser.cpp | 2 +- src/plugins/valgrind/callgrind/callgrindstackbrowser.h | 2 +- src/plugins/valgrind/callgrindcostdelegate.cpp | 2 +- src/plugins/valgrind/callgrindcostdelegate.h | 2 +- src/plugins/valgrind/callgrindcostview.cpp | 2 +- src/plugins/valgrind/callgrindcostview.h | 2 +- src/plugins/valgrind/callgrindengine.cpp | 2 +- src/plugins/valgrind/callgrindengine.h | 2 +- src/plugins/valgrind/callgrindhelper.cpp | 2 +- src/plugins/valgrind/callgrindhelper.h | 2 +- src/plugins/valgrind/callgrindnamedelegate.cpp | 2 +- src/plugins/valgrind/callgrindnamedelegate.h | 2 +- src/plugins/valgrind/callgrindtextmark.cpp | 2 +- src/plugins/valgrind/callgrindtextmark.h | 2 +- src/plugins/valgrind/callgrindtool.cpp | 2 +- src/plugins/valgrind/callgrindtool.h | 2 +- src/plugins/valgrind/callgrindvisualisation.cpp | 2 +- src/plugins/valgrind/callgrindvisualisation.h | 2 +- src/plugins/valgrind/memcheck/memcheckrunner.cpp | 2 +- src/plugins/valgrind/memcheck/memcheckrunner.h | 2 +- src/plugins/valgrind/memcheckengine.cpp | 2 +- src/plugins/valgrind/memcheckengine.h | 2 +- src/plugins/valgrind/memcheckerrorview.cpp | 2 +- src/plugins/valgrind/memcheckerrorview.h | 2 +- src/plugins/valgrind/memchecktool.cpp | 2 +- src/plugins/valgrind/memchecktool.h | 2 +- src/plugins/valgrind/suppressiondialog.cpp | 2 +- src/plugins/valgrind/suppressiondialog.h | 2 +- src/plugins/valgrind/valgrindconfigwidget.cpp | 2 +- src/plugins/valgrind/valgrindconfigwidget.h | 2 +- src/plugins/valgrind/valgrindengine.cpp | 2 +- src/plugins/valgrind/valgrindengine.h | 2 +- src/plugins/valgrind/valgrindplugin.cpp | 2 +- src/plugins/valgrind/valgrindplugin.h | 2 +- src/plugins/valgrind/valgrindprocess.cpp | 2 +- src/plugins/valgrind/valgrindprocess.h | 2 +- src/plugins/valgrind/valgrindruncontrolfactory.cpp | 2 +- src/plugins/valgrind/valgrindruncontrolfactory.h | 2 +- src/plugins/valgrind/valgrindrunner.cpp | 2 +- src/plugins/valgrind/valgrindrunner.h | 2 +- src/plugins/valgrind/valgrindsettings.cpp | 2 +- src/plugins/valgrind/valgrindsettings.h | 2 +- src/plugins/valgrind/valgrindtool.cpp | 2 +- src/plugins/valgrind/valgrindtool.h | 2 +- src/plugins/valgrind/workarounds.cpp | 2 +- src/plugins/valgrind/workarounds.h | 2 +- src/plugins/valgrind/xmlprotocol/announcethread.cpp | 2 +- src/plugins/valgrind/xmlprotocol/announcethread.h | 2 +- src/plugins/valgrind/xmlprotocol/error.cpp | 2 +- src/plugins/valgrind/xmlprotocol/error.h | 2 +- src/plugins/valgrind/xmlprotocol/errorlistmodel.cpp | 2 +- src/plugins/valgrind/xmlprotocol/errorlistmodel.h | 2 +- src/plugins/valgrind/xmlprotocol/frame.cpp | 2 +- src/plugins/valgrind/xmlprotocol/frame.h | 2 +- src/plugins/valgrind/xmlprotocol/modelhelpers.cpp | 2 +- src/plugins/valgrind/xmlprotocol/modelhelpers.h | 2 +- src/plugins/valgrind/xmlprotocol/parser.cpp | 2 +- src/plugins/valgrind/xmlprotocol/parser.h | 2 +- src/plugins/valgrind/xmlprotocol/stack.cpp | 2 +- src/plugins/valgrind/xmlprotocol/stack.h | 2 +- src/plugins/valgrind/xmlprotocol/stackmodel.cpp | 2 +- src/plugins/valgrind/xmlprotocol/stackmodel.h | 2 +- src/plugins/valgrind/xmlprotocol/status.cpp | 2 +- src/plugins/valgrind/xmlprotocol/status.h | 2 +- src/plugins/valgrind/xmlprotocol/suppression.cpp | 2 +- src/plugins/valgrind/xmlprotocol/suppression.h | 2 +- src/plugins/valgrind/xmlprotocol/threadedparser.cpp | 2 +- src/plugins/valgrind/xmlprotocol/threadedparser.h | 2 +- src/plugins/vcsbase/VcsBase.pluginspec.in | 2 +- src/plugins/vcsbase/baseannotationhighlighter.cpp | 2 +- src/plugins/vcsbase/baseannotationhighlighter.h | 2 +- src/plugins/vcsbase/basecheckoutwizard.cpp | 2 +- src/plugins/vcsbase/basecheckoutwizard.h | 2 +- src/plugins/vcsbase/basecheckoutwizardpage.cpp | 2 +- src/plugins/vcsbase/basecheckoutwizardpage.h | 2 +- src/plugins/vcsbase/basevcseditorfactory.cpp | 2 +- src/plugins/vcsbase/basevcseditorfactory.h | 2 +- src/plugins/vcsbase/basevcssubmiteditorfactory.cpp | 2 +- src/plugins/vcsbase/basevcssubmiteditorfactory.h | 2 +- src/plugins/vcsbase/checkoutprogresswizardpage.cpp | 2 +- src/plugins/vcsbase/checkoutprogresswizardpage.h | 2 +- src/plugins/vcsbase/checkoutwizarddialog.cpp | 2 +- src/plugins/vcsbase/checkoutwizarddialog.h | 2 +- src/plugins/vcsbase/cleandialog.cpp | 2 +- src/plugins/vcsbase/cleandialog.h | 2 +- src/plugins/vcsbase/command.cpp | 2 +- src/plugins/vcsbase/command.h | 2 +- src/plugins/vcsbase/commonsettingspage.cpp | 2 +- src/plugins/vcsbase/commonsettingspage.h | 2 +- src/plugins/vcsbase/commonvcssettings.cpp | 2 +- src/plugins/vcsbase/commonvcssettings.h | 2 +- src/plugins/vcsbase/corelistener.cpp | 2 +- src/plugins/vcsbase/corelistener.h | 2 +- src/plugins/vcsbase/diffhighlighter.cpp | 2 +- src/plugins/vcsbase/diffhighlighter.h | 2 +- src/plugins/vcsbase/nicknamedialog.cpp | 2 +- src/plugins/vcsbase/nicknamedialog.h | 2 +- src/plugins/vcsbase/submiteditorfile.cpp | 2 +- src/plugins/vcsbase/submiteditorfile.h | 2 +- src/plugins/vcsbase/submiteditorwidget.cpp | 2 +- src/plugins/vcsbase/submiteditorwidget.h | 2 +- src/plugins/vcsbase/submitfieldwidget.cpp | 2 +- src/plugins/vcsbase/submitfieldwidget.h | 2 +- src/plugins/vcsbase/submitfilemodel.cpp | 2 +- src/plugins/vcsbase/submitfilemodel.h | 2 +- src/plugins/vcsbase/vcsbase_global.h | 2 +- src/plugins/vcsbase/vcsbaseclient.cpp | 2 +- src/plugins/vcsbase/vcsbaseclient.h | 2 +- src/plugins/vcsbase/vcsbaseclientsettings.cpp | 2 +- src/plugins/vcsbase/vcsbaseclientsettings.h | 2 +- src/plugins/vcsbase/vcsbaseconstants.h | 2 +- src/plugins/vcsbase/vcsbaseeditor.cpp | 2 +- src/plugins/vcsbase/vcsbaseeditor.h | 2 +- src/plugins/vcsbase/vcsbaseeditorparameterwidget.cpp | 2 +- src/plugins/vcsbase/vcsbaseeditorparameterwidget.h | 2 +- src/plugins/vcsbase/vcsbaseoptionspage.cpp | 2 +- src/plugins/vcsbase/vcsbaseoptionspage.h | 2 +- src/plugins/vcsbase/vcsbaseoutputwindow.cpp | 2 +- src/plugins/vcsbase/vcsbaseoutputwindow.h | 2 +- src/plugins/vcsbase/vcsbaseplugin.cpp | 2 +- src/plugins/vcsbase/vcsbaseplugin.h | 2 +- src/plugins/vcsbase/vcsbasesubmiteditor.cpp | 2 +- src/plugins/vcsbase/vcsbasesubmiteditor.h | 2 +- src/plugins/vcsbase/vcsconfigurationpage.cpp | 2 +- src/plugins/vcsbase/vcsconfigurationpage.h | 2 +- src/plugins/vcsbase/vcsplugin.cpp | 2 +- src/plugins/vcsbase/vcsplugin.h | 2 +- src/plugins/welcome/Welcome.pluginspec.in | 2 +- src/plugins/welcome/communitywelcomepage.h | 2 +- src/plugins/welcome/welcomeplugin.cpp | 2 +- src/plugins/welcome/welcomeplugin.h | 2 +- src/share/qtcreator/externaltools/lrelease.xml | 2 +- src/share/qtcreator/externaltools/lupdate.xml | 2 +- src/share/qtcreator/externaltools/notepad_win.xml | 2 +- src/share/qtcreator/externaltools/qmlscene.xml | 2 +- src/share/qtcreator/externaltools/qmlviewer.xml | 2 +- src/share/qtcreator/externaltools/sort.xml | 2 +- src/share/qtcreator/externaltools/vi.xml | 2 +- src/share/qtcreator/externaltools/vi_mac.xml | 2 +- src/shared/cpaster/cgi.cpp | 2 +- src/shared/cpaster/cgi.h | 2 +- src/shared/cpaster/splitter.cpp | 2 +- src/shared/cpaster/splitter.h | 2 +- src/shared/designerintegrationv2/formresizer.cpp | 2 +- src/shared/designerintegrationv2/formresizer.h | 2 +- src/shared/designerintegrationv2/sizehandlerect.cpp | 2 +- src/shared/designerintegrationv2/sizehandlerect.h | 2 +- src/shared/designerintegrationv2/widgethost.cpp | 2 +- src/shared/designerintegrationv2/widgethost.h | 2 +- src/shared/designerintegrationv2/widgethostconstants.h | 2 +- src/shared/help/bookmarkmanager.cpp | 2 +- src/shared/help/bookmarkmanager.h | 2 +- src/shared/help/contentwindow.cpp | 2 +- src/shared/help/contentwindow.h | 2 +- src/shared/help/filternamedialog.cpp | 2 +- src/shared/help/filternamedialog.h | 2 +- src/shared/help/indexwindow.cpp | 2 +- src/shared/help/indexwindow.h | 2 +- src/shared/help/topicchooser.cpp | 2 +- src/shared/help/topicchooser.h | 2 +- src/shared/modeltest/modeltest.cpp | 2 +- src/shared/modeltest/modeltest.h | 2 +- src/shared/proparser/ioutils.cpp | 2 +- src/shared/proparser/ioutils.h | 2 +- src/shared/proparser/profileevaluator.cpp | 2 +- src/shared/proparser/profileevaluator.h | 2 +- src/shared/proparser/proitems.cpp | 2 +- src/shared/proparser/proitems.h | 2 +- src/shared/proparser/prowriter.cpp | 2 +- src/shared/proparser/prowriter.h | 2 +- src/shared/proparser/qmake_global.h | 2 +- src/shared/proparser/qmakebuiltins.cpp | 2 +- src/shared/proparser/qmakeevaluator.cpp | 2 +- src/shared/proparser/qmakeevaluator.h | 2 +- src/shared/proparser/qmakeevaluator_p.h | 2 +- src/shared/proparser/qmakeglobals.cpp | 2 +- src/shared/proparser/qmakeglobals.h | 2 +- src/shared/proparser/qmakeparser.cpp | 2 +- src/shared/proparser/qmakeparser.h | 2 +- src/shared/proparser/qmakevfs.cpp | 2 +- src/shared/proparser/qmakevfs.h | 2 +- src/shared/qtcreator_gui_pch.h | 2 +- src/shared/qtcreator_pch.h | 2 +- src/shared/qtlockedfile/qtlockedfile.cpp | 2 +- src/shared/qtlockedfile/qtlockedfile.h | 2 +- src/shared/qtlockedfile/qtlockedfile_unix.cpp | 2 +- src/shared/qtlockedfile/qtlockedfile_win.cpp | 2 +- src/shared/qtsingleapplication/qtlocalpeer.cpp | 2 +- src/shared/qtsingleapplication/qtlocalpeer.h | 2 +- src/shared/qtsingleapplication/qtsingleapplication.cpp | 2 +- src/shared/qtsingleapplication/qtsingleapplication.h | 2 +- src/shared/qtsingleapplication/qtsinglecoreapplication.cpp | 2 +- src/shared/qtsingleapplication/qtsinglecoreapplication.h | 2 +- src/shared/registryaccess/registryaccess.cpp | 2 +- src/shared/registryaccess/registryaccess.h | 2 +- src/shared/scriptwrapper/interface_wrap_helpers.h | 2 +- src/shared/scriptwrapper/wrap_helpers.h | 2 +- src/tools/cplusplus-mkvisitor/cplusplus-mkvisitor.cpp | 2 +- src/tools/cplusplus-tools-utils/cplusplus-tools-utils.cpp | 2 +- src/tools/cplusplus-tools-utils/cplusplus-tools-utils.h | 2 +- .../cplusplus-update-frontend/cplusplus-update-frontend.cpp | 2 +- src/tools/iostool/iosdevicemanager.cpp | 2 +- src/tools/iostool/iosdevicemanager.h | 2 +- src/tools/iostool/main.cpp | 2 +- src/tools/makespy/main.cpp | 2 +- src/tools/qmlprofilertool/qmlprofilerapplication.cpp | 2 +- src/tools/qtcdebugger/main.cpp | 2 +- src/tools/qtcreatorcrashhandler/backtracecollector.cpp | 2 +- src/tools/qtcreatorcrashhandler/backtracecollector.h | 2 +- src/tools/qtcreatorcrashhandler/crashhandler.cpp | 2 +- src/tools/qtcreatorcrashhandler/crashhandler.h | 2 +- src/tools/qtcreatorcrashhandler/crashhandlerdialog.cpp | 2 +- src/tools/qtcreatorcrashhandler/crashhandlerdialog.h | 2 +- src/tools/qtcreatorcrashhandler/crashhandlersetup.cpp | 2 +- src/tools/qtcreatorcrashhandler/crashhandlersetup.h | 2 +- src/tools/qtcreatorcrashhandler/main.cpp | 2 +- src/tools/qtcreatorcrashhandler/utils.cpp | 2 +- src/tools/qtcreatorcrashhandler/utils.h | 2 +- src/tools/qtcreatorwidgets/customwidget.h | 2 +- src/tools/qtcreatorwidgets/customwidgets.cpp | 2 +- src/tools/qtcreatorwidgets/customwidgets.h | 2 +- src/tools/qtpromaker/main.cpp | 2 +- src/tools/screenshotcropper/cropimageview.cpp | 2 +- src/tools/screenshotcropper/cropimageview.h | 2 +- src/tools/screenshotcropper/main.cpp | 2 +- src/tools/screenshotcropper/screenshotcropperwindow.cpp | 2 +- src/tools/screenshotcropper/screenshotcropperwindow.h | 2 +- src/tools/sdktool/adddebuggeroperation.cpp | 2 +- src/tools/sdktool/adddebuggeroperation.h | 2 +- src/tools/sdktool/addkeysoperation.cpp | 2 +- src/tools/sdktool/addkeysoperation.h | 2 +- src/tools/sdktool/addkitoperation.cpp | 2 +- src/tools/sdktool/addkitoperation.h | 2 +- src/tools/sdktool/addqtoperation.cpp | 2 +- src/tools/sdktool/addqtoperation.h | 2 +- src/tools/sdktool/addtoolchainoperation.cpp | 2 +- src/tools/sdktool/addtoolchainoperation.h | 2 +- src/tools/sdktool/findkeyoperation.cpp | 2 +- src/tools/sdktool/findkeyoperation.h | 2 +- src/tools/sdktool/findvalueoperation.cpp | 2 +- src/tools/sdktool/findvalueoperation.h | 2 +- src/tools/sdktool/getoperation.cpp | 2 +- src/tools/sdktool/getoperation.h | 2 +- src/tools/sdktool/main.cpp | 2 +- src/tools/sdktool/operation.cpp | 2 +- src/tools/sdktool/operation.h | 2 +- src/tools/sdktool/rmdebuggeroperation.cpp | 2 +- src/tools/sdktool/rmdebuggeroperation.h | 2 +- src/tools/sdktool/rmkeysoperation.cpp | 2 +- src/tools/sdktool/rmkeysoperation.h | 2 +- src/tools/sdktool/rmkitoperation.cpp | 2 +- src/tools/sdktool/rmkitoperation.h | 2 +- src/tools/sdktool/rmqtoperation.cpp | 2 +- src/tools/sdktool/rmqtoperation.h | 2 +- src/tools/sdktool/rmtoolchainoperation.cpp | 2 +- src/tools/sdktool/rmtoolchainoperation.h | 2 +- src/tools/sdktool/settings.cpp | 2 +- src/tools/sdktool/settings.h | 2 +- src/tools/valgrindfake/main.cpp | 2 +- src/tools/valgrindfake/outputgenerator.cpp | 2 +- src/tools/valgrindfake/outputgenerator.h | 2 +- src/tools/wininterrupt/wininterrupt.c | 2 +- tests/auto/aggregation/tst_aggregate.cpp | 2 +- tests/auto/changeset/tst_changeset.cpp | 2 +- tests/auto/cplusplus/ast/tst_ast.cpp | 2 +- tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp | 2 +- tests/auto/cplusplus/codeformatter/tst_codeformatter.cpp | 2 +- tests/auto/cplusplus/cxx11/tst_cxx11.cpp | 2 +- tests/auto/cplusplus/findusages/tst_findusages.cpp | 2 +- tests/auto/cplusplus/lexer/tst_lexer.cpp | 2 +- tests/auto/cplusplus/lookup/tst_lookup.cpp | 2 +- tests/auto/cplusplus/misc/tst_misc.cpp | 2 +- tests/auto/cplusplus/preprocessor/tst_preprocessor.cpp | 2 +- tests/auto/cplusplus/semantic/tst_semantic.cpp | 2 +- .../auto/cplusplus/simplifytypes/tst_simplifytypestest.cpp | 2 +- .../cplusplus/typeprettyprinter/tst_typeprettyprinter.cpp | 2 +- tests/auto/debugger/fixme.cpp | 2 +- tests/auto/debugger/temporarydir.h | 2 +- tests/auto/debugger/tst_dumpers.cpp | 2 +- tests/auto/debugger/tst_gdb.cpp | 2 +- tests/auto/debugger/tst_namedemangler.cpp | 2 +- tests/auto/diff/differ/tst_differ.cpp | 2 +- tests/auto/environment/tst_environment.cpp | 2 +- .../pluginmanager/circularplugins/plugin1/plugin1.cpp | 2 +- .../pluginmanager/circularplugins/plugin1/plugin1.h | 2 +- .../pluginmanager/circularplugins/plugin2/plugin2.cpp | 2 +- .../pluginmanager/circularplugins/plugin2/plugin2.h | 2 +- .../pluginmanager/circularplugins/plugin3/plugin3.cpp | 2 +- .../pluginmanager/circularplugins/plugin3/plugin3.h | 2 +- .../pluginmanager/correctplugins1/plugin1/plugin1.cpp | 2 +- .../pluginmanager/correctplugins1/plugin1/plugin1.h | 2 +- .../pluginmanager/correctplugins1/plugin2/plugin2.cpp | 2 +- .../pluginmanager/correctplugins1/plugin2/plugin2.h | 2 +- .../pluginmanager/correctplugins1/plugin3/plugin3.cpp | 2 +- .../pluginmanager/correctplugins1/plugin3/plugin3.h | 2 +- .../extensionsystem/pluginmanager/tst_pluginmanager.cpp | 2 +- .../extensionsystem/pluginspec/testplugin/testplugin.cpp | 2 +- .../auto/extensionsystem/pluginspec/testplugin/testplugin.h | 2 +- .../pluginspec/testplugin/testplugin_global.h | 2 +- tests/auto/extensionsystem/pluginspec/testspecs/spec1.xml | 2 +- .../extensionsystem/pluginspec/testspecs/spec_wrong1.xml | 2 +- .../extensionsystem/pluginspec/testspecs/spec_wrong2.xml | 2 +- .../extensionsystem/pluginspec/testspecs/spec_wrong3.xml | 2 +- .../extensionsystem/pluginspec/testspecs/spec_wrong4.xml | 2 +- .../extensionsystem/pluginspec/testspecs/spec_wrong5.xml | 2 +- tests/auto/extensionsystem/pluginspec/tst_pluginspec.cpp | 4 ++-- tests/auto/externaltool/tst_externaltooltest.cpp | 2 +- tests/auto/filesearch/tst_filesearch.cpp | 2 +- .../highlighterengine/basetextdocumentlayout.cpp | 2 +- .../highlighterengine/basetextdocumentlayout.h | 2 +- tests/auto/generichighlighter/highlighterengine/formats.cpp | 2 +- tests/auto/generichighlighter/highlighterengine/formats.h | 2 +- .../highlighterengine/highlightermock.cpp | 2 +- .../generichighlighter/highlighterengine/highlightermock.h | 2 +- .../highlighterengine/syntaxhighlighter.cpp | 2 +- .../highlighterengine/syntaxhighlighter.h | 2 +- .../auto/generichighlighter/highlighterengine/tabsettings.h | 2 +- .../highlighterengine/tst_highlighterengine.cpp | 2 +- .../generichighlighter/specificrules/tst_specificrules.cpp | 2 +- tests/auto/ioutils/tst_ioutils.cpp | 2 +- tests/auto/profilewriter/tst_profilewriter.cpp | 2 +- tests/auto/qml/codemodel/check/tst_check.cpp | 2 +- tests/auto/qml/persistenttrie/tst_testtrie.cpp | 2 +- tests/auto/qml/persistenttrie/tst_testtrie.h | 2 +- tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.cpp | 2 +- tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.h | 2 +- tests/auto/qml/qmldesigner/common/statichelpers.cpp | 2 +- tests/auto/qml/qmldesigner/coretests/testrewriterview.cpp | 2 +- tests/auto/qml/qmldesigner/coretests/testrewriterview.h | 2 +- tests/auto/qml/qmldesigner/coretests/tst_testcore.cpp | 2 +- tests/auto/qml/qmldesigner/coretests/tst_testcore.h | 2 +- tests/auto/qml/qmldesigner/data/fx/MyButton.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/TabWidget.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/attributes.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/bigtest.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/components.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/empty.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/helloworld.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/image.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/imports.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/properties.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/selectiontest.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/states.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/subitems/SubItem.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/tabs.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/topitem.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/usingbutton.qml | 2 +- tests/auto/qml/qmldesigner/data/fx/usingmybutton.qml | 2 +- tests/auto/qml/qmldesigner/data/qwidget/test.qml | 2 +- .../qmldesigner/propertyeditortests/testpropertyeditor.cpp | 2 +- .../qmldesigner/propertyeditortests/testpropertyeditor.h | 2 +- tests/auto/qml/qmldesigner/testview.cpp | 2 +- tests/auto/qml/qmldesigner/testview.h | 2 +- .../qml/qmleditor/qmlcodeformatter/tst_qmlcodeformatter.cpp | 2 +- tests/auto/qml/qmleditor/qmllookup/data/localIdLookup.qml | 2 +- tests/auto/qml/qmleditor/qmllookup/data/localRootLookup.qml | 2 +- .../auto/qml/qmleditor/qmllookup/data/localScopeLookup.qml | 2 +- .../qmleditor/qmllookup/data/localScriptMethodLookup.qml | 2 +- tests/auto/qml/qmleditor/qmllookup/tst_qmllookup.cpp | 2 +- tests/auto/qml/qmljssimplereader/tst_qmljssimplereader.cpp | 2 +- .../qml/qmlprojectmanager/fileformat/tst_fileformat.cpp | 2 +- tests/auto/qml/qrcparser/tst_qrcparser.cpp | 2 +- tests/auto/qml/reformatter/tst_reformatter.cpp | 2 +- tests/auto/qtcprocess/tst_qtcprocess.cpp | 2 +- tests/auto/treeviewfind/tst_treeviewfind.cpp | 2 +- .../ansiescapecodehandler/tst_ansiescapecodehandler.cpp | 2 +- tests/auto/utils/fileutils/tst_fileutils.cpp | 2 +- tests/auto/utils_stringutils/tst_stringutils.cpp | 2 +- tests/auto/valgrind/callgrind/callgrindparsertests.cpp | 2 +- tests/auto/valgrind/callgrind/callgrindparsertests.h | 2 +- tests/auto/valgrind/callgrind/modeltest.cpp | 2 +- tests/auto/valgrind/callgrind/modeltest.h | 2 +- tests/auto/valgrind/memcheck/modeldemo.cpp | 2 +- tests/auto/valgrind/memcheck/modeldemo.h | 2 +- tests/auto/valgrind/memcheck/parsertests.cpp | 2 +- tests/auto/valgrind/memcheck/parsertests.h | 2 +- tests/auto/valgrind/memcheck/testapps/free1/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/free2/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/invalidjump/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/leak1/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/leak2/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/leak3/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/leak4/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/overlap/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/syscall/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/uninit1/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/uninit2/main.cpp | 2 +- tests/auto/valgrind/memcheck/testapps/uninit3/main.cpp | 2 +- tests/auto/valgrind/memcheck/testrunner.cpp | 2 +- tests/auto/valgrind/memcheck/testrunner.h | 2 +- tests/cppmodelmanager/testdata_refresh/defines.h | 2 +- tests/cppmodelmanager/testdata_refresh/header.h | 2 +- tests/cppmodelmanager/testdata_refresh/source.cpp | 2 +- tests/manual/appwizards/helpers.cpp | 2 +- tests/manual/appwizards/main.cpp | 2 +- tests/manual/appwizards/qmlimportscenario_01/myqmlapp.qml | 2 +- .../qmlimportscenario_01/qmlproject01/QmlProject01.qml | 2 +- .../qmlimportscenario_01/qmlproject02/QmlProject02.qml | 2 +- tests/manual/cplusplus-frontend/cplusplus-frontend.cpp | 2 +- tests/manual/cplusplus-frontend/tests/t1.cpp | 2 +- tests/manual/cplusplus-tools/detail/header.h | 2 +- tests/manual/cplusplus-tools/detail/source.cpp | 2 +- tests/manual/cplusplus-tools/dummy.cpp | 2 +- tests/manual/cplusplus-tools/dummy.h | 2 +- tests/manual/cplusplus-tools/main.cpp | 2 +- tests/manual/cppquickfix/completeswitchcasestatement.cpp | 2 +- tests/manual/cppquickfix/convertnumericliteral.cpp | 2 +- tests/manual/debugger/boost/main.cpp | 2 +- tests/manual/debugger/gui/mainwindow.cpp | 2 +- tests/manual/debugger/gui/mainwindow.h | 2 +- tests/manual/debugger/gui/tst_gui.cpp | 2 +- tests/manual/debugger/helper/main.cpp | 2 +- tests/manual/debugger/script/math.js | 2 +- tests/manual/debugger/simple/deep/deep/simple_test_app.h | 2 +- tests/manual/debugger/simple/simple_test_app.cpp | 2 +- tests/manual/debugger/simple/simple_test_plugin.cpp | 2 +- tests/manual/debugger/spacy path/app with space.cpp | 2 +- tests/manual/debugger/spacy path/plugin with space.cpp | 2 +- tests/manual/debugger/spacy-file/app with space.cpp | 2 +- tests/manual/debugger/spacy-file/plugin with space.cpp | 2 +- tests/manual/dockwidgets/main.cpp | 2 +- tests/manual/dockwidgets/mainwindow.cpp | 2 +- tests/manual/dockwidgets/mainwindow.h | 2 +- tests/manual/fakevim/main.cpp | 2 +- tests/manual/features/tst_features.cpp | 2 +- tests/manual/plain-cplusplus/Preprocessor.cpp | 2 +- tests/manual/plain-cplusplus/Preprocessor.h | 2 +- tests/manual/plain-cplusplus/main.cpp | 2 +- tests/manual/preprocessor/main.cpp | 2 +- tests/manual/process/main.cpp | 2 +- tests/manual/process/mainwindow.cpp | 2 +- tests/manual/process/mainwindow.h | 2 +- tests/manual/proparser/main.cpp | 2 +- tests/manual/qml/testfiles/components/MyButton.qml | 2 +- tests/manual/qml/testfiles/empty.qml | 2 +- tests/manual/qml/testfiles/flipable.qml | 2 +- tests/manual/qml/testfiles/helloworld.qml | 2 +- tests/manual/qml/testfiles/helloworld_inverted.qml | 2 +- tests/manual/qml/testfiles/images.qml | 2 +- tests/manual/qml/testfiles/listmodel.qml | 2 +- tests/manual/qml/testfiles/listview.qml | 2 +- tests/manual/qml/testfiles/states.qml | 2 +- tests/manual/qml/testfiles/subcomponent.qml | 2 +- tests/manual/qml/testfiles/usingbutton.qml | 2 +- tests/manual/qml/testfiles/webview.qml | 2 +- tests/manual/qml/testfiles_quick2/components/MyButton.qml | 2 +- tests/manual/qml/testfiles_quick2/empty.qml | 2 +- tests/manual/qml/testfiles_quick2/flipable.qml | 2 +- tests/manual/qml/testfiles_quick2/helloworld.qml | 2 +- tests/manual/qml/testfiles_quick2/helloworld_inverted.qml | 2 +- tests/manual/qml/testfiles_quick2/images.qml | 2 +- tests/manual/qml/testfiles_quick2/listmodel.qml | 2 +- tests/manual/qml/testfiles_quick2/listview.qml | 2 +- tests/manual/qml/testfiles_quick2/positioners.qml | 2 +- tests/manual/qml/testfiles_quick2/states.qml | 2 +- tests/manual/qml/testfiles_quick2/subcomponent.qml | 2 +- tests/manual/qml/testfiles_quick2/usingbutton.qml | 2 +- tests/manual/qml/testfiles_quick2/views.qml | 2 +- tests/manual/ssh/errorhandling/main.cpp | 2 +- tests/manual/ssh/remoteprocess/argumentscollector.cpp | 2 +- tests/manual/ssh/remoteprocess/argumentscollector.h | 2 +- tests/manual/ssh/remoteprocess/main.cpp | 2 +- tests/manual/ssh/remoteprocess/remoteprocesstest.cpp | 2 +- tests/manual/ssh/remoteprocess/remoteprocesstest.h | 2 +- tests/manual/ssh/sftp/argumentscollector.cpp | 2 +- tests/manual/ssh/sftp/argumentscollector.h | 2 +- tests/manual/ssh/sftp/main.cpp | 2 +- tests/manual/ssh/sftp/parameters.h | 2 +- tests/manual/ssh/sftp/sftptest.cpp | 2 +- tests/manual/ssh/sftp/sftptest.h | 2 +- tests/manual/ssh/sftpfsmodel/main.cpp | 2 +- tests/manual/ssh/sftpfsmodel/window.cpp | 2 +- tests/manual/ssh/sftpfsmodel/window.h | 2 +- tests/manual/ssh/shell/main.cpp | 2 +- tests/manual/ssh/shell/shell.cpp | 2 +- tests/manual/ssh/shell/shell.h | 2 +- tests/manual/ssh/tunnel/argumentscollector.cpp | 2 +- tests/manual/ssh/tunnel/argumentscollector.h | 2 +- tests/manual/ssh/tunnel/main.cpp | 2 +- tests/manual/ssh/tunnel/tunnel.cpp | 2 +- tests/manual/ssh/tunnel/tunnel.h | 2 +- tests/system/shared/build_utils.py | 2 +- tests/system/shared/classes.py | 2 +- tests/system/shared/debugger.py | 2 +- tests/system/shared/editor_utils.py | 2 +- tests/system/shared/fs_utils.py | 2 +- tests/system/shared/hook_utils.py | 2 +- tests/system/shared/project.py | 2 +- tests/system/shared/project_explorer.py | 2 +- tests/system/shared/qtcreator.py | 2 +- tests/system/shared/suites_qtta.py | 2 +- tests/system/shared/utils.py | 2 +- tests/system/shared/workarounds.py | 2 +- tests/system/suite_APTW/tst_APTW01/test.py | 2 +- tests/system/suite_APTW/tst_APTW02/test.py | 2 +- tests/system/suite_CCOM/tst_CCOM01/test.py | 2 +- tests/system/suite_CCOM/tst_CCOM02/test.py | 2 +- tests/system/suite_CSUP/tst_CSUP01/test.py | 2 +- tests/system/suite_CSUP/tst_CSUP02/test.py | 2 +- tests/system/suite_CSUP/tst_CSUP04/test.py | 2 +- tests/system/suite_CSUP/tst_CSUP05/test.py | 2 +- tests/system/suite_HELP/tst_HELP02/test.py | 2 +- tests/system/suite_HELP/tst_HELP04/test.py | 2 +- tests/system/suite_HELP/tst_HELP05/test.py | 2 +- tests/system/suite_HELP/tst_HELP06/test.py | 2 +- tests/system/suite_QMLS/shared/qmls.py | 2 +- tests/system/suite_QMLS/tst_QMLS01/test.py | 2 +- tests/system/suite_QMLS/tst_QMLS02/test.py | 2 +- tests/system/suite_QMLS/tst_QMLS03/test.py | 2 +- tests/system/suite_QMLS/tst_QMLS04/test.py | 2 +- tests/system/suite_QMLS/tst_QMLS05/test.py | 2 +- tests/system/suite_QMLS/tst_QMLS06/test.py | 2 +- tests/system/suite_QMLS/tst_QMLS07/test.py | 2 +- tests/system/suite_QMLS/tst_QMLS08/test.py | 2 +- tests/system/suite_SCOM/tst_SCOM01/test.py | 2 +- tests/system/suite_SCOM/tst_SCOM02/test.py | 2 +- tests/system/suite_SCOM/tst_SCOM04/test.py | 2 +- tests/system/suite_SCOM/tst_SCOM05/test.py | 2 +- tests/system/suite_WELP/tst_WELP01/test.py | 2 +- tests/system/suite_WELP/tst_WELP02/test.py | 2 +- tests/system/suite_WELP/tst_WELP03/test.py | 2 +- tests/system/suite_WELP/tst_WELP04/test.py | 2 +- .../shared/testdata/simpleQuickUI2/simpleQuickUI2.qml | 2 +- tests/system/suite_debugger/tst_build_new_project/test.py | 2 +- tests/system/suite_debugger/tst_cli_output_console/test.py | 2 +- tests/system/suite_debugger/tst_debug_empty_main/test.py | 2 +- tests/system/suite_debugger/tst_qml_locals/Tree.py | 2 +- tests/system/suite_debugger/tst_qml_locals/test.py | 2 +- tests/system/suite_debugger/tst_simple_analyze/test.py | 2 +- tests/system/suite_debugger/tst_simple_debug/test.py | 2 +- tests/system/suite_editors/tst_basic_cpp_support/test.py | 2 +- tests/system/suite_editors/tst_delete_externally/test.py | 2 +- tests/system/suite_editors/tst_memberoperator/test.py | 2 +- tests/system/suite_editors/tst_modify_readonly/test.py | 2 +- tests/system/suite_editors/tst_qml_editor/test.py | 2 +- tests/system/suite_editors/tst_qml_indent/test.py | 2 +- tests/system/suite_editors/tst_rename_macros/test.py | 2 +- tests/system/suite_editors/tst_revert_changes/test.py | 2 +- tests/system/suite_editors/tst_select_all/test.py | 2 +- tests/system/suite_general/tst_build_speedcrunch/test.py | 2 +- tests/system/suite_general/tst_cmake_speedcrunch/test.py | 2 +- tests/system/suite_general/tst_create_proj_wizard/test.py | 2 +- tests/system/suite_general/tst_default_settings/test.py | 2 +- tests/system/suite_general/tst_installed_languages/test.py | 2 +- tests/system/suite_general/tst_openqt_creator/test.py | 2 +- tests/system/suite_general/tst_rename_file/test.py | 2 +- tests/system/suite_general/tst_session_handling/test.py | 2 +- tests/system/suite_qtquick/tst_qml_outline/test.py | 2 +- tests/system/suite_qtquick/tst_qtquick_creation/test.py | 2 +- tests/system/suite_qtquick/tst_qtquick_creation3/test.py | 2 +- tests/system/suite_qtquick/tst_qtquick_creation4/test.py | 2 +- tests/system/suite_tools/tst_codepasting/test.py | 2 +- tests/system/suite_tools/tst_designer_autocomplete/test.py | 2 +- tests/system/suite_tools/tst_designer_goto_slot/test.py | 2 +- tests/system/suite_tools/tst_external_sort/test.py | 2 +- tests/system/suite_tools/tst_git_clone/test.py | 2 +- tests/system/suite_tools/tst_git_local/test.py | 2 +- tests/system/tools/findUnusedObjects.py | 2 +- tests/system/tools/objectsToTable.py | 2 +- tests/system/tools/toolfunctions.py | 2 +- tests/tools/cplusplus-ast2png/cplusplus-ast2png.cpp | 2 +- tests/tools/cplusplus-ast2png/tests/templ01.cpp | 2 +- tests/tools/qml-ast2dot/main.cpp | 2 +- tests/tools/qtquickappblaster/main.cpp | 2 +- 4778 files changed, 4835 insertions(+), 4835 deletions(-) diff --git a/README b/README index 6a10998828c..e56bba4b5b5 100644 --- a/README +++ b/README @@ -262,10 +262,10 @@ we thank the authors who made this possible: * ClassView and ImageViewer plugins - Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). + Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). All rights reserved. - Copyright (c) 2013 Denis Mingulov. + Copyright (c) 2014 Denis Mingulov. Contact: http://www.qt-project.org/ diff --git a/dist/copyright_template.txt b/dist/copyright_template.txt index 7a7ed4d7f6a..d1635d6f024 100644 --- a/dist/copyright_template.txt +++ b/dist/copyright_template.txt @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/dist/installer/ifw/packages/org.qtproject.qtcreator.application/meta/installscript.qs b/dist/installer/ifw/packages/org.qtproject.qtcreator.application/meta/installscript.qs index 3b8c7e5c5c0..b6878f91fc0 100644 --- a/dist/installer/ifw/packages/org.qtproject.qtcreator.application/meta/installscript.qs +++ b/dist/installer/ifw/packages/org.qtproject.qtcreator.application/meta/installscript.qs @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt SDK. diff --git a/doc/addressbook-sdk.qdoc b/doc/addressbook-sdk.qdoc index 1f6ac54dc59..cd0191cd8bc 100644 --- a/doc/addressbook-sdk.qdoc +++ b/doc/addressbook-sdk.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/coding-style.qdoc b/doc/api/coding-style.qdoc index 8ed4873198d..3d298fba088 100644 --- a/doc/api/coding-style.qdoc +++ b/doc/api/coding-style.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/creating-plugins.qdoc b/doc/api/creating-plugins.qdoc index 2145724a601..624e347ce3a 100644 --- a/doc/api/creating-plugins.qdoc +++ b/doc/api/creating-plugins.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/external-tool-spec.qdoc b/doc/api/external-tool-spec.qdoc index 314d5669ab8..d839a27dc14 100644 --- a/doc/api/external-tool-spec.qdoc +++ b/doc/api/external-tool-spec.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/first-plugin.qdoc b/doc/api/first-plugin.qdoc index 67e5976caa3..7a622d4830e 100644 --- a/doc/api/first-plugin.qdoc +++ b/doc/api/first-plugin.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/getting-and-building.qdoc b/doc/api/getting-and-building.qdoc index b0f87bc2beb..980c80274fa 100644 --- a/doc/api/getting-and-building.qdoc +++ b/doc/api/getting-and-building.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/plugin-lifecycle.qdoc b/doc/api/plugin-lifecycle.qdoc index 50e533d833b..f3d2b827e8f 100644 --- a/doc/api/plugin-lifecycle.qdoc +++ b/doc/api/plugin-lifecycle.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/plugin-specifications.qdoc b/doc/api/plugin-specifications.qdoc index a56bf93b4cc..0eefadbc7c5 100644 --- a/doc/api/plugin-specifications.qdoc +++ b/doc/api/plugin-specifications.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/pluginmanager.qdoc b/doc/api/pluginmanager.qdoc index e221f90d64e..ae0f12bb3d5 100644 --- a/doc/api/pluginmanager.qdoc +++ b/doc/api/pluginmanager.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/qtcreator-api.qdoc b/doc/api/qtcreator-api.qdoc index d7f7eda17cc..d0bc0f36b48 100644 --- a/doc/api/qtcreator-api.qdoc +++ b/doc/api/qtcreator-api.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/qtcreator-dev-wizards.qdoc b/doc/api/qtcreator-dev-wizards.qdoc index 08c33e6eddd..7a4432c8c6d 100644 --- a/doc/api/qtcreator-dev-wizards.qdoc +++ b/doc/api/qtcreator-dev-wizards.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/qtcreator-dev.qdoc b/doc/api/qtcreator-dev.qdoc index 946bd92cb73..b8ef2680f61 100644 --- a/doc/api/qtcreator-dev.qdoc +++ b/doc/api/qtcreator-dev.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/qtcreator-documentation.qdoc b/doc/api/qtcreator-documentation.qdoc index c6a715a745b..0584b01bcd6 100644 --- a/doc/api/qtcreator-documentation.qdoc +++ b/doc/api/qtcreator-documentation.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/api/qtcreator-ui-text.qdoc b/doc/api/qtcreator-ui-text.qdoc index 55425b7bddf..f6f5415b0eb 100644 --- a/doc/api/qtcreator-ui-text.qdoc +++ b/doc/api/qtcreator-ui-text.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/config/qt-html-templates-online.qdocconf b/doc/config/qt-html-templates-online.qdocconf index de55a2f8ca9..c5dc66dff12 100644 --- a/doc/config/qt-html-templates-online.qdocconf +++ b/doc/config/qt-html-templates-online.qdocconf @@ -105,7 +105,7 @@ HTML.footer = \ " <div class=\"footer\">\n" \ " <p>\n" \ " <p>\n" \ - " <acronym title=\"Copyright\">©</acronym> 2013 Digia Plc and/or its\n" \ + " <acronym title=\"Copyright\">©</acronym> 2014 Digia Plc and/or its\n" \ " subsidiaries. Documentation contributions included herein are the copyrights of\n" \ " their respective owners.</p>\n" \ " <br />\n" \ diff --git a/doc/config/qt-html-templates.qdocconf b/doc/config/qt-html-templates.qdocconf index ebedc54cae5..95507fefc52 100644 --- a/doc/config/qt-html-templates.qdocconf +++ b/doc/config/qt-html-templates.qdocconf @@ -24,7 +24,7 @@ HTML.footer = \ "</div> \n" \ "<div class=\"footer\">\n" \ " <p>\n" \ - " <acronym title=\"Copyright\">©</acronym> 2013 Digia Plc and/or its\n" \ + " <acronym title=\"Copyright\">©</acronym> 2014 Digia Plc and/or its\n" \ " subsidiaries. Documentation contributions included herein are the copyrights of\n" \ " their respective owners.</p>\n" \ " <br />\n" \ diff --git a/doc/examples/accelbubble/main.qml b/doc/examples/accelbubble/main.qml index 313be9cd701..3e2f1d62d9f 100644 --- a/doc/examples/accelbubble/main.qml +++ b/doc/examples/accelbubble/main.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part1/addressbook.cpp b/doc/examples/addressbook-sdk/part1/addressbook.cpp index fa0c89eb261..cf752ffaa1b 100644 --- a/doc/examples/addressbook-sdk/part1/addressbook.cpp +++ b/doc/examples/addressbook-sdk/part1/addressbook.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part1/addressbook.h b/doc/examples/addressbook-sdk/part1/addressbook.h index 37016581b27..3b8e5d37111 100644 --- a/doc/examples/addressbook-sdk/part1/addressbook.h +++ b/doc/examples/addressbook-sdk/part1/addressbook.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part1/main.cpp b/doc/examples/addressbook-sdk/part1/main.cpp index d2ac1115f70..6a79c3e206d 100644 --- a/doc/examples/addressbook-sdk/part1/main.cpp +++ b/doc/examples/addressbook-sdk/part1/main.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part2/addressbook.cpp b/doc/examples/addressbook-sdk/part2/addressbook.cpp index d245d2e72df..104380a6705 100644 --- a/doc/examples/addressbook-sdk/part2/addressbook.cpp +++ b/doc/examples/addressbook-sdk/part2/addressbook.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part2/addressbook.h b/doc/examples/addressbook-sdk/part2/addressbook.h index 36bd40ce532..2eab34cc902 100644 --- a/doc/examples/addressbook-sdk/part2/addressbook.h +++ b/doc/examples/addressbook-sdk/part2/addressbook.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part2/main.cpp b/doc/examples/addressbook-sdk/part2/main.cpp index d2ac1115f70..6a79c3e206d 100644 --- a/doc/examples/addressbook-sdk/part2/main.cpp +++ b/doc/examples/addressbook-sdk/part2/main.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part3/addressbook.cpp b/doc/examples/addressbook-sdk/part3/addressbook.cpp index 0410f3f1616..23c16175b9a 100644 --- a/doc/examples/addressbook-sdk/part3/addressbook.cpp +++ b/doc/examples/addressbook-sdk/part3/addressbook.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part3/addressbook.h b/doc/examples/addressbook-sdk/part3/addressbook.h index a2faaded3aa..b573311d011 100644 --- a/doc/examples/addressbook-sdk/part3/addressbook.h +++ b/doc/examples/addressbook-sdk/part3/addressbook.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part3/main.cpp b/doc/examples/addressbook-sdk/part3/main.cpp index 4c8d75aac29..dcc63bf3b53 100644 --- a/doc/examples/addressbook-sdk/part3/main.cpp +++ b/doc/examples/addressbook-sdk/part3/main.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part4/addressbook.cpp b/doc/examples/addressbook-sdk/part4/addressbook.cpp index 4b49c7c791b..2c02eb26bdd 100644 --- a/doc/examples/addressbook-sdk/part4/addressbook.cpp +++ b/doc/examples/addressbook-sdk/part4/addressbook.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part4/addressbook.h b/doc/examples/addressbook-sdk/part4/addressbook.h index 05168248ccf..693362ef1f4 100644 --- a/doc/examples/addressbook-sdk/part4/addressbook.h +++ b/doc/examples/addressbook-sdk/part4/addressbook.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part4/main.cpp b/doc/examples/addressbook-sdk/part4/main.cpp index 4c8d75aac29..dcc63bf3b53 100644 --- a/doc/examples/addressbook-sdk/part4/main.cpp +++ b/doc/examples/addressbook-sdk/part4/main.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part5/addressbook.cpp b/doc/examples/addressbook-sdk/part5/addressbook.cpp index f76ee499706..9e91bb1fb1a 100644 --- a/doc/examples/addressbook-sdk/part5/addressbook.cpp +++ b/doc/examples/addressbook-sdk/part5/addressbook.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part5/addressbook.h b/doc/examples/addressbook-sdk/part5/addressbook.h index 2b2dc737cda..6c95245029a 100644 --- a/doc/examples/addressbook-sdk/part5/addressbook.h +++ b/doc/examples/addressbook-sdk/part5/addressbook.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part5/finddialog.cpp b/doc/examples/addressbook-sdk/part5/finddialog.cpp index 97a6325526d..4ae21a2e454 100644 --- a/doc/examples/addressbook-sdk/part5/finddialog.cpp +++ b/doc/examples/addressbook-sdk/part5/finddialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part5/finddialog.h b/doc/examples/addressbook-sdk/part5/finddialog.h index 462577a218c..868c0803755 100644 --- a/doc/examples/addressbook-sdk/part5/finddialog.h +++ b/doc/examples/addressbook-sdk/part5/finddialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part5/main.cpp b/doc/examples/addressbook-sdk/part5/main.cpp index 4c8d75aac29..dcc63bf3b53 100644 --- a/doc/examples/addressbook-sdk/part5/main.cpp +++ b/doc/examples/addressbook-sdk/part5/main.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part6/addressbook.cpp b/doc/examples/addressbook-sdk/part6/addressbook.cpp index ce59a2da14a..64603bd0a1f 100644 --- a/doc/examples/addressbook-sdk/part6/addressbook.cpp +++ b/doc/examples/addressbook-sdk/part6/addressbook.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part6/addressbook.h b/doc/examples/addressbook-sdk/part6/addressbook.h index c17d83b0fbb..79bd2503574 100644 --- a/doc/examples/addressbook-sdk/part6/addressbook.h +++ b/doc/examples/addressbook-sdk/part6/addressbook.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part6/finddialog.cpp b/doc/examples/addressbook-sdk/part6/finddialog.cpp index 1945f6899e1..b289e0ca193 100644 --- a/doc/examples/addressbook-sdk/part6/finddialog.cpp +++ b/doc/examples/addressbook-sdk/part6/finddialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part6/finddialog.h b/doc/examples/addressbook-sdk/part6/finddialog.h index 1ffb426bbed..32c340a505c 100644 --- a/doc/examples/addressbook-sdk/part6/finddialog.h +++ b/doc/examples/addressbook-sdk/part6/finddialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part6/main.cpp b/doc/examples/addressbook-sdk/part6/main.cpp index 4c8d75aac29..dcc63bf3b53 100644 --- a/doc/examples/addressbook-sdk/part6/main.cpp +++ b/doc/examples/addressbook-sdk/part6/main.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part7/addressbook.cpp b/doc/examples/addressbook-sdk/part7/addressbook.cpp index bf96b1faf62..104bb8d1216 100644 --- a/doc/examples/addressbook-sdk/part7/addressbook.cpp +++ b/doc/examples/addressbook-sdk/part7/addressbook.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part7/addressbook.h b/doc/examples/addressbook-sdk/part7/addressbook.h index 96d29f8a2a5..c76a0cd1b7d 100644 --- a/doc/examples/addressbook-sdk/part7/addressbook.h +++ b/doc/examples/addressbook-sdk/part7/addressbook.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part7/finddialog.cpp b/doc/examples/addressbook-sdk/part7/finddialog.cpp index 1945f6899e1..b289e0ca193 100644 --- a/doc/examples/addressbook-sdk/part7/finddialog.cpp +++ b/doc/examples/addressbook-sdk/part7/finddialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part7/finddialog.h b/doc/examples/addressbook-sdk/part7/finddialog.h index 1ffb426bbed..32c340a505c 100644 --- a/doc/examples/addressbook-sdk/part7/finddialog.h +++ b/doc/examples/addressbook-sdk/part7/finddialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/addressbook-sdk/part7/main.cpp b/doc/examples/addressbook-sdk/part7/main.cpp index 4c8d75aac29..dcc63bf3b53 100644 --- a/doc/examples/addressbook-sdk/part7/main.cpp +++ b/doc/examples/addressbook-sdk/part7/main.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/batterystatus/main.cpp b/doc/examples/batterystatus/main.cpp index e1da43f65ef..4cc7da7ea40 100644 --- a/doc/examples/batterystatus/main.cpp +++ b/doc/examples/batterystatus/main.cpp @@ -1,6 +1,6 @@ /*************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** All rights reserved. ** Contact: http://www.qt-project.org/ ** diff --git a/doc/examples/doc_src_plugins.qdoc b/doc/examples/doc_src_plugins.qdoc index 359f16c4270..7993582f460 100644 --- a/doc/examples/doc_src_plugins.qdoc +++ b/doc/examples/doc_src_plugins.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/textfinder/main.cpp b/doc/examples/textfinder/main.cpp index cc3aeaa347e..d942ba317aa 100644 --- a/doc/examples/textfinder/main.cpp +++ b/doc/examples/textfinder/main.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/textfinder/textfinder.cpp b/doc/examples/textfinder/textfinder.cpp index 981375d0c72..206afcf16d6 100644 --- a/doc/examples/textfinder/textfinder.cpp +++ b/doc/examples/textfinder/textfinder.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/examples/textfinder/textfinder.h b/doc/examples/textfinder/textfinder.h index 8018b2cf332..2dee1c56669 100644 --- a/doc/examples/textfinder/textfinder.h +++ b/doc/examples/textfinder/textfinder.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/analyze/creator-analyze.qdoc b/doc/src/analyze/creator-analyze.qdoc index 8a004665f5e..c5f97e68edd 100644 --- a/doc/src/analyze/creator-analyze.qdoc +++ b/doc/src/analyze/creator-analyze.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/analyze/creator-valgrind-overview.qdoc b/doc/src/analyze/creator-valgrind-overview.qdoc index 7f69b554a19..1fb1b4e29a3 100644 --- a/doc/src/analyze/creator-valgrind-overview.qdoc +++ b/doc/src/analyze/creator-valgrind-overview.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/analyze/creator-valgrind.qdoc b/doc/src/analyze/creator-valgrind.qdoc index 7d00ae97922..98b70d1c46c 100644 --- a/doc/src/analyze/creator-valgrind.qdoc +++ b/doc/src/analyze/creator-valgrind.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/analyze/qtquick-profiler.qdoc b/doc/src/analyze/qtquick-profiler.qdoc index 458a98285f1..777ca4b9237 100644 --- a/doc/src/analyze/qtquick-profiler.qdoc +++ b/doc/src/analyze/qtquick-profiler.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/android/androiddev.qdoc b/doc/src/android/androiddev.qdoc index 30d56285c93..884599a859f 100644 --- a/doc/src/android/androiddev.qdoc +++ b/doc/src/android/androiddev.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/android/creator-android-app-tutorial.qdoc b/doc/src/android/creator-android-app-tutorial.qdoc index 40ff2242350..70ee24416e1 100644 --- a/doc/src/android/creator-android-app-tutorial.qdoc +++ b/doc/src/android/creator-android-app-tutorial.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/android/deploying-android.qdoc b/doc/src/android/deploying-android.qdoc index 6d72012e0c9..6046175c8d2 100644 --- a/doc/src/android/deploying-android.qdoc +++ b/doc/src/android/deploying-android.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/baremetal/creator-baremetal-dev.qdoc b/doc/src/baremetal/creator-baremetal-dev.qdoc index a5f8524e9c4..9d3ee77005f 100644 --- a/doc/src/baremetal/creator-baremetal-dev.qdoc +++ b/doc/src/baremetal/creator-baremetal-dev.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/debugger/creator-debugger-example.qdoc b/doc/src/debugger/creator-debugger-example.qdoc index dce4512697f..6bed94be5bc 100644 --- a/doc/src/debugger/creator-debugger-example.qdoc +++ b/doc/src/debugger/creator-debugger-example.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/debugger/creator-debugger-setup.qdoc b/doc/src/debugger/creator-debugger-setup.qdoc index b44e1aa062c..30e5ed32d06 100644 --- a/doc/src/debugger/creator-debugger-setup.qdoc +++ b/doc/src/debugger/creator-debugger-setup.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/debugger/creator-debugger.qdoc b/doc/src/debugger/creator-debugger.qdoc index 59180402961..142a09916cd 100644 --- a/doc/src/debugger/creator-debugger.qdoc +++ b/doc/src/debugger/creator-debugger.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/debugger/qtquick-debugger-example.qdoc b/doc/src/debugger/qtquick-debugger-example.qdoc index 21d242c91c7..98fbbf332fd 100644 --- a/doc/src/debugger/qtquick-debugger-example.qdoc +++ b/doc/src/debugger/qtquick-debugger-example.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/debugger/qtquick-debugging.qdoc b/doc/src/debugger/qtquick-debugging.qdoc index 2b1cce65aa9..3bf174776fc 100644 --- a/doc/src/debugger/qtquick-debugging.qdoc +++ b/doc/src/debugger/qtquick-debugging.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/editors/creator-coding-edit-mode.qdoc b/doc/src/editors/creator-coding-edit-mode.qdoc index 6ba0eccb443..428a659f0fb 100644 --- a/doc/src/editors/creator-coding-edit-mode.qdoc +++ b/doc/src/editors/creator-coding-edit-mode.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/editors/creator-coding.qdoc b/doc/src/editors/creator-coding.qdoc index 7a2e3aa6970..877dfd8e0d6 100644 --- a/doc/src/editors/creator-coding.qdoc +++ b/doc/src/editors/creator-coding.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/editors/creator-diff-editor.qdoc b/doc/src/editors/creator-diff-editor.qdoc index 941360a7e67..009c75f68d9 100644 --- a/doc/src/editors/creator-diff-editor.qdoc +++ b/doc/src/editors/creator-diff-editor.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/editors/creator-editors-options-text.qdoc b/doc/src/editors/creator-editors-options-text.qdoc index d6544c37b9a..042f655787e 100644 --- a/doc/src/editors/creator-editors-options-text.qdoc +++ b/doc/src/editors/creator-editors-options-text.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/editors/creator-editors-options.qdoc b/doc/src/editors/creator-editors-options.qdoc index eab43bb25b4..5f4efba9581 100644 --- a/doc/src/editors/creator-editors-options.qdoc +++ b/doc/src/editors/creator-editors-options.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/editors/creator-editors-writing-code.qdoc b/doc/src/editors/creator-editors-writing-code.qdoc index b3536fdd068..7043d44197e 100644 --- a/doc/src/editors/creator-editors-writing-code.qdoc +++ b/doc/src/editors/creator-editors-writing-code.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/editors/creator-editors.qdoc b/doc/src/editors/creator-editors.qdoc index 5b9a534bcc0..f8d7a12f0c8 100644 --- a/doc/src/editors/creator-editors.qdoc +++ b/doc/src/editors/creator-editors.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/editors/creator-finding.qdoc b/doc/src/editors/creator-finding.qdoc index 7c7297982ab..13c6d9df9a2 100644 --- a/doc/src/editors/creator-finding.qdoc +++ b/doc/src/editors/creator-finding.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/editors/creator-mime-types.qdoc b/doc/src/editors/creator-mime-types.qdoc index 41ecf874656..ae7c203ef2c 100644 --- a/doc/src/editors/creator-mime-types.qdoc +++ b/doc/src/editors/creator-mime-types.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/creator-cli.qdoc b/doc/src/howto/creator-cli.qdoc index 7dbc28bc4a7..6f138e24bf0 100644 --- a/doc/src/howto/creator-cli.qdoc +++ b/doc/src/howto/creator-cli.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/creator-external-tools.qdoc b/doc/src/howto/creator-external-tools.qdoc index dbe1d0f4318..72a37ced8e9 100644 --- a/doc/src/howto/creator-external-tools.qdoc +++ b/doc/src/howto/creator-external-tools.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/creator-help.qdoc b/doc/src/howto/creator-help.qdoc index 5af48f23e87..faf0de9a19b 100644 --- a/doc/src/howto/creator-help.qdoc +++ b/doc/src/howto/creator-help.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/creator-keyboard-shortcuts.qdoc b/doc/src/howto/creator-keyboard-shortcuts.qdoc index b01fa6bbe80..b3021f25294 100644 --- a/doc/src/howto/creator-keyboard-shortcuts.qdoc +++ b/doc/src/howto/creator-keyboard-shortcuts.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/creator-sessions.qdoc b/doc/src/howto/creator-sessions.qdoc index 61e649cff09..67a1e5c317b 100644 --- a/doc/src/howto/creator-sessions.qdoc +++ b/doc/src/howto/creator-sessions.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/creator-task-lists.qdoc b/doc/src/howto/creator-task-lists.qdoc index f2ff57541c3..92764c557a5 100644 --- a/doc/src/howto/creator-task-lists.qdoc +++ b/doc/src/howto/creator-task-lists.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/creator-tips.qdoc b/doc/src/howto/creator-tips.qdoc index 421b9414e6f..6a6e6ec85bc 100644 --- a/doc/src/howto/creator-tips.qdoc +++ b/doc/src/howto/creator-tips.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/creator-ui.qdoc b/doc/src/howto/creator-ui.qdoc index 4d4b7d08292..f4aa2f002e0 100644 --- a/doc/src/howto/creator-ui.qdoc +++ b/doc/src/howto/creator-ui.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/creator-vcs.qdoc b/doc/src/howto/creator-vcs.qdoc index 4783cd4eeea..daff05eeba4 100644 --- a/doc/src/howto/creator-vcs.qdoc +++ b/doc/src/howto/creator-vcs.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/howto/qtcreator-faq.qdoc b/doc/src/howto/qtcreator-faq.qdoc index 53af07ba7c4..c2e2fb6ef24 100644 --- a/doc/src/howto/qtcreator-faq.qdoc +++ b/doc/src/howto/qtcreator-faq.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/ios/creator-ios-dev.qdoc b/doc/src/ios/creator-ios-dev.qdoc index c75779f2e73..6cd6cbc9488 100644 --- a/doc/src/ios/creator-ios-dev.qdoc +++ b/doc/src/ios/creator-ios-dev.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/linux-mobile/creator-deployment-madde.qdoc b/doc/src/linux-mobile/creator-deployment-madde.qdoc index 52b414c73e1..52e64644506 100644 --- a/doc/src/linux-mobile/creator-deployment-madde.qdoc +++ b/doc/src/linux-mobile/creator-deployment-madde.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/linux-mobile/linuxdev.qdoc b/doc/src/linux-mobile/linuxdev.qdoc index 202708e26f3..24bf4a1f8cc 100644 --- a/doc/src/linux-mobile/linuxdev.qdoc +++ b/doc/src/linux-mobile/linuxdev.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-acknowledgements.qdoc b/doc/src/overview/creator-acknowledgements.qdoc index fbb02e7d305..855f213cf3a 100644 --- a/doc/src/overview/creator-acknowledgements.qdoc +++ b/doc/src/overview/creator-acknowledgements.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-advanced.qdoc b/doc/src/overview/creator-advanced.qdoc index 87dd4cb2675..6ce8b4ff296 100644 --- a/doc/src/overview/creator-advanced.qdoc +++ b/doc/src/overview/creator-advanced.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-configuring.qdoc b/doc/src/overview/creator-configuring.qdoc index 4dad8b6666e..54e3b270d19 100644 --- a/doc/src/overview/creator-configuring.qdoc +++ b/doc/src/overview/creator-configuring.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-deployment-overview.qdoc b/doc/src/overview/creator-deployment-overview.qdoc index 5df48094fe0..f41f35932c8 100644 --- a/doc/src/overview/creator-deployment-overview.qdoc +++ b/doc/src/overview/creator-deployment-overview.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-design-overview.qdoc b/doc/src/overview/creator-design-overview.qdoc index a8527374f8e..0f713757b00 100644 --- a/doc/src/overview/creator-design-overview.qdoc +++ b/doc/src/overview/creator-design-overview.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-getting-started.qdoc b/doc/src/overview/creator-getting-started.qdoc index a2bd6ebcf6d..9a01ca60470 100644 --- a/doc/src/overview/creator-getting-started.qdoc +++ b/doc/src/overview/creator-getting-started.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-glossary.qdoc b/doc/src/overview/creator-glossary.qdoc index 9f10a033bec..57f5b20b658 100644 --- a/doc/src/overview/creator-glossary.qdoc +++ b/doc/src/overview/creator-glossary.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-help-overview.qdoc b/doc/src/overview/creator-help-overview.qdoc index 2ab9e1f2fa1..1d33e57e59b 100644 --- a/doc/src/overview/creator-help-overview.qdoc +++ b/doc/src/overview/creator-help-overview.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-issues.qdoc b/doc/src/overview/creator-issues.qdoc index 4e9cb499274..0816b1fd9b8 100644 --- a/doc/src/overview/creator-issues.qdoc +++ b/doc/src/overview/creator-issues.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-mobile-targets.qdoc b/doc/src/overview/creator-mobile-targets.qdoc index f5089a32883..60a957fda5d 100644 --- a/doc/src/overview/creator-mobile-targets.qdoc +++ b/doc/src/overview/creator-mobile-targets.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-overview.qdoc b/doc/src/overview/creator-overview.qdoc index 952e247eca4..b92186ee5e4 100644 --- a/doc/src/overview/creator-overview.qdoc +++ b/doc/src/overview/creator-overview.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-supported-platforms.qdoc b/doc/src/overview/creator-supported-platforms.qdoc index f7561d4093e..e7980e56498 100644 --- a/doc/src/overview/creator-supported-platforms.qdoc +++ b/doc/src/overview/creator-supported-platforms.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-tech-support.qdoc b/doc/src/overview/creator-tech-support.qdoc index 12bc9427d7f..ebd7f5f5769 100644 --- a/doc/src/overview/creator-tech-support.qdoc +++ b/doc/src/overview/creator-tech-support.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-testing.qdoc b/doc/src/overview/creator-testing.qdoc index 0df70733d08..d25fbecbe13 100644 --- a/doc/src/overview/creator-testing.qdoc +++ b/doc/src/overview/creator-testing.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/creator-tutorials.qdoc b/doc/src/overview/creator-tutorials.qdoc index 7dad18d9f98..7c38ce8a3bf 100644 --- a/doc/src/overview/creator-tutorials.qdoc +++ b/doc/src/overview/creator-tutorials.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/overview/mobile-app-design.qdoc b/doc/src/overview/mobile-app-design.qdoc index 1063513c84e..9e6a479fe8c 100644 --- a/doc/src/overview/mobile-app-design.qdoc +++ b/doc/src/overview/mobile-app-design.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-autotools.qdoc b/doc/src/projects/creator-projects-autotools.qdoc index af969d1f33d..d5720b71c5e 100644 --- a/doc/src/projects/creator-projects-autotools.qdoc +++ b/doc/src/projects/creator-projects-autotools.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2010-2013 Openismus GmbH. +** Copyright (C) 2010-2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/doc/src/projects/creator-projects-build-run-tutorial.qdoc b/doc/src/projects/creator-projects-build-run-tutorial.qdoc index 560841ebd2b..361fcbcfa45 100644 --- a/doc/src/projects/creator-projects-build-run-tutorial.qdoc +++ b/doc/src/projects/creator-projects-build-run-tutorial.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-building-running.qdoc b/doc/src/projects/creator-projects-building-running.qdoc index 246da6b6dee..bc937093d9e 100644 --- a/doc/src/projects/creator-projects-building-running.qdoc +++ b/doc/src/projects/creator-projects-building-running.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-building.qdoc b/doc/src/projects/creator-projects-building.qdoc index f10deca3a69..0c11a88656d 100644 --- a/doc/src/projects/creator-projects-building.qdoc +++ b/doc/src/projects/creator-projects-building.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-builds-customizing.qdoc b/doc/src/projects/creator-projects-builds-customizing.qdoc index f323bfd16d9..6723189ef3b 100644 --- a/doc/src/projects/creator-projects-builds-customizing.qdoc +++ b/doc/src/projects/creator-projects-builds-customizing.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-cmake.qdoc b/doc/src/projects/creator-projects-cmake.qdoc index 8443334240b..54d903e6de9 100644 --- a/doc/src/projects/creator-projects-cmake.qdoc +++ b/doc/src/projects/creator-projects-cmake.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-compilers.qdoc b/doc/src/projects/creator-projects-compilers.qdoc index 4efe75f5d18..261e788a93a 100644 --- a/doc/src/projects/creator-projects-compilers.qdoc +++ b/doc/src/projects/creator-projects-compilers.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-creating.qdoc b/doc/src/projects/creator-projects-creating.qdoc index 895fcf9f16e..dbf3584a454 100644 --- a/doc/src/projects/creator-projects-creating.qdoc +++ b/doc/src/projects/creator-projects-creating.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-custom-wizards.qdoc b/doc/src/projects/creator-projects-custom-wizards.qdoc index 9c50be37adf..943d5572068 100644 --- a/doc/src/projects/creator-projects-custom-wizards.qdoc +++ b/doc/src/projects/creator-projects-custom-wizards.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-debuggers.qdoc b/doc/src/projects/creator-projects-debuggers.qdoc index b6b5632498f..9fbd3769d14 100644 --- a/doc/src/projects/creator-projects-debuggers.qdoc +++ b/doc/src/projects/creator-projects-debuggers.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-generic.qdoc b/doc/src/projects/creator-projects-generic.qdoc index 0af79f70097..43275d63d15 100644 --- a/doc/src/projects/creator-projects-generic.qdoc +++ b/doc/src/projects/creator-projects-generic.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-libraries.qdoc b/doc/src/projects/creator-projects-libraries.qdoc index c38952b619b..79bfac1ca93 100644 --- a/doc/src/projects/creator-projects-libraries.qdoc +++ b/doc/src/projects/creator-projects-libraries.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-opening.qdoc b/doc/src/projects/creator-projects-opening.qdoc index 6d73254e1a8..22bbebfe564 100644 --- a/doc/src/projects/creator-projects-opening.qdoc +++ b/doc/src/projects/creator-projects-opening.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-other.qdoc b/doc/src/projects/creator-projects-other.qdoc index 1a4c3242e57..7e3cf586dab 100644 --- a/doc/src/projects/creator-projects-other.qdoc +++ b/doc/src/projects/creator-projects-other.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-overview.qdoc b/doc/src/projects/creator-projects-overview.qdoc index 594cb016fd5..5ab60cb88e5 100644 --- a/doc/src/projects/creator-projects-overview.qdoc +++ b/doc/src/projects/creator-projects-overview.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-qbs.qdoc b/doc/src/projects/creator-projects-qbs.qdoc index 5a489ccdfa5..0c39b11baf3 100644 --- a/doc/src/projects/creator-projects-qbs.qdoc +++ b/doc/src/projects/creator-projects-qbs.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-qt-versions.qdoc b/doc/src/projects/creator-projects-qt-versions.qdoc index 4b3164c3955..8d5bfdc4e59 100644 --- a/doc/src/projects/creator-projects-qt-versions.qdoc +++ b/doc/src/projects/creator-projects-qt-versions.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-running.qdoc b/doc/src/projects/creator-projects-running.qdoc index 92cac2b55e5..d1e59b2eb81 100644 --- a/doc/src/projects/creator-projects-running.qdoc +++ b/doc/src/projects/creator-projects-running.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-settings-build.qdoc b/doc/src/projects/creator-projects-settings-build.qdoc index 81184b9cc87..37061695c97 100644 --- a/doc/src/projects/creator-projects-settings-build.qdoc +++ b/doc/src/projects/creator-projects-settings-build.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-settings-code-style.qdoc b/doc/src/projects/creator-projects-settings-code-style.qdoc index 53351d42143..9f2a266c975 100644 --- a/doc/src/projects/creator-projects-settings-code-style.qdoc +++ b/doc/src/projects/creator-projects-settings-code-style.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-settings-dependencies.qdoc b/doc/src/projects/creator-projects-settings-dependencies.qdoc index 41cfe28a973..8d3c19e3916 100644 --- a/doc/src/projects/creator-projects-settings-dependencies.qdoc +++ b/doc/src/projects/creator-projects-settings-dependencies.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-settings-editor.qdoc b/doc/src/projects/creator-projects-settings-editor.qdoc index 25747f16eea..9e4d2a7418d 100644 --- a/doc/src/projects/creator-projects-settings-editor.qdoc +++ b/doc/src/projects/creator-projects-settings-editor.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-settings-overview.qdoc b/doc/src/projects/creator-projects-settings-overview.qdoc index 868c1b72163..f883910353a 100644 --- a/doc/src/projects/creator-projects-settings-overview.qdoc +++ b/doc/src/projects/creator-projects-settings-overview.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-settings-run.qdoc b/doc/src/projects/creator-projects-settings-run.qdoc index 06c907851f9..1c6016a1511 100644 --- a/doc/src/projects/creator-projects-settings-run.qdoc +++ b/doc/src/projects/creator-projects-settings-run.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-settings-sharing.qdoc b/doc/src/projects/creator-projects-settings-sharing.qdoc index 6ed1a87be92..78d6a8d419b 100644 --- a/doc/src/projects/creator-projects-settings-sharing.qdoc +++ b/doc/src/projects/creator-projects-settings-sharing.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/projects/creator-projects-targets.qdoc b/doc/src/projects/creator-projects-targets.qdoc index 7c97e2ea16d..b7ea7cfeb80 100644 --- a/doc/src/projects/creator-projects-targets.qdoc +++ b/doc/src/projects/creator-projects-targets.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qnx/creator-deployment-bb10.qdoc b/doc/src/qnx/creator-deployment-bb10.qdoc index f4832cdf103..527729876c0 100644 --- a/doc/src/qnx/creator-deployment-bb10.qdoc +++ b/doc/src/qnx/creator-deployment-bb10.qdoc @@ -2,7 +2,7 @@ ** ** This file is part of Qt Creator ** -** Copyright (C) 2011 - 2013 Research In Motion +** Copyright (C) 2011 - 2014 Research In Motion ** ** Contact: Research In Motion (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) diff --git a/doc/src/qnx/creator-deployment-qnx.qdoc b/doc/src/qnx/creator-deployment-qnx.qdoc index 15bed070e85..4d391651253 100644 --- a/doc/src/qnx/creator-deployment-qnx.qdoc +++ b/doc/src/qnx/creator-deployment-qnx.qdoc @@ -2,7 +2,7 @@ ** ** This file is part of Qt Creator ** -** Copyright (C) 2011 - 2013 Research In Motion +** Copyright (C) 2011 - 2014 Research In Motion ** ** Contact: Research In Motion (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) diff --git a/doc/src/qnx/creator-developing-bb10.qdoc b/doc/src/qnx/creator-developing-bb10.qdoc index 83926824e5e..1e406a98e13 100644 --- a/doc/src/qnx/creator-developing-bb10.qdoc +++ b/doc/src/qnx/creator-developing-bb10.qdoc @@ -2,7 +2,7 @@ ** ** This file is part of Qt Creator ** -** Copyright (C) 2011 - 2013 Research In Motion +** Copyright (C) 2011 - 2014 Research In Motion ** ** Contact: Research In Motion (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) diff --git a/doc/src/qnx/creator-developing-qnx.qdoc b/doc/src/qnx/creator-developing-qnx.qdoc index 428f46ff96e..e60dd60c413 100644 --- a/doc/src/qnx/creator-developing-qnx.qdoc +++ b/doc/src/qnx/creator-developing-qnx.qdoc @@ -2,7 +2,7 @@ ** ** This file is part of Qt Creator ** -** Copyright (C) 2011 - 2013 Research In Motion +** Copyright (C) 2011 - 2014 Research In Motion ** ** Contact: Research In Motion (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) diff --git a/doc/src/qtcreator.qdoc b/doc/src/qtcreator.qdoc index 008ee84731a..e5a01f13079 100644 --- a/doc/src/qtcreator.qdoc +++ b/doc/src/qtcreator.qdoc @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-app-development.qdoc b/doc/src/qtquick/qtquick-app-development.qdoc index 9eee0b3e71e..212ed1cfafe 100644 --- a/doc/src/qtquick/qtquick-app-development.qdoc +++ b/doc/src/qtquick/qtquick-app-development.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-app-tutorial.qdoc b/doc/src/qtquick/qtquick-app-tutorial.qdoc index 8bb8df685b6..936a1786a41 100644 --- a/doc/src/qtquick/qtquick-app-tutorial.qdoc +++ b/doc/src/qtquick/qtquick-app-tutorial.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-buttons.qdoc b/doc/src/qtquick/qtquick-buttons.qdoc index 8aa8e065613..617c60fb5c9 100644 --- a/doc/src/qtquick/qtquick-buttons.qdoc +++ b/doc/src/qtquick/qtquick-buttons.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-components.qdoc b/doc/src/qtquick/qtquick-components.qdoc index c71cea94861..bf6a5987787 100644 --- a/doc/src/qtquick/qtquick-components.qdoc +++ b/doc/src/qtquick/qtquick-components.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-creating.qdoc b/doc/src/qtquick/qtquick-creating.qdoc index d92900fa307..fc03315dbec 100644 --- a/doc/src/qtquick/qtquick-creating.qdoc +++ b/doc/src/qtquick/qtquick-creating.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-designer.qdoc b/doc/src/qtquick/qtquick-designer.qdoc index 05a44cbc81d..e041148b3ef 100644 --- a/doc/src/qtquick/qtquick-designer.qdoc +++ b/doc/src/qtquick/qtquick-designer.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-exporting-qml.qdoc b/doc/src/qtquick/qtquick-exporting-qml.qdoc index 9244df48d2d..746bbc0770d 100644 --- a/doc/src/qtquick/qtquick-exporting-qml.qdoc +++ b/doc/src/qtquick/qtquick-exporting-qml.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-modules-with-plugins.qdoc b/doc/src/qtquick/qtquick-modules-with-plugins.qdoc index 8849b865a15..0ff4f1ffef4 100644 --- a/doc/src/qtquick/qtquick-modules-with-plugins.qdoc +++ b/doc/src/qtquick/qtquick-modules-with-plugins.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-screens.qdoc b/doc/src/qtquick/qtquick-screens.qdoc index 1dc04d2397e..da940fd7ea0 100644 --- a/doc/src/qtquick/qtquick-screens.qdoc +++ b/doc/src/qtquick/qtquick-screens.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/qtquick/qtquick-toolbars.qdoc b/doc/src/qtquick/qtquick-toolbars.qdoc index f1d8353c7da..16fcf422966 100644 --- a/doc/src/qtquick/qtquick-toolbars.qdoc +++ b/doc/src/qtquick/qtquick-toolbars.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/widgets/qtdesigner-app-tutorial.qdoc b/doc/src/widgets/qtdesigner-app-tutorial.qdoc index 06fcd438cf7..852efc9c9da 100644 --- a/doc/src/widgets/qtdesigner-app-tutorial.qdoc +++ b/doc/src/widgets/qtdesigner-app-tutorial.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/widgets/qtdesigner-overview.qdoc b/doc/src/widgets/qtdesigner-overview.qdoc index 66422fbd6b6..4be1ded78d1 100644 --- a/doc/src/widgets/qtdesigner-overview.qdoc +++ b/doc/src/widgets/qtdesigner-overview.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/src/widgets/qtdesigner-plugins.qdoc b/doc/src/widgets/qtdesigner-plugins.qdoc index 72e97488125..2c8eac05aa4 100644 --- a/doc/src/widgets/qtdesigner-plugins.qdoc +++ b/doc/src/widgets/qtdesigner-plugins.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/doc/templates/scripts/jquery.js b/doc/templates/scripts/jquery.js index 7852684bc9f..760f9f6289d 100644 --- a/doc/templates/scripts/jquery.js +++ b/doc/templates/scripts/jquery.js @@ -2,13 +2,13 @@ * jQuery JavaScript Library v1.4.1 * http://jquery.com/ * - * Copyright 2013, John Resig + * Copyright 2014, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * Includes Sizzle.js * http://sizzlejs.com/ - * Copyright 2013, The Dojo Foundation + * Copyright 2014, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * * Date: Mon Jan 25 19:43:33 2010 -0500 diff --git a/doc/titlecase/to-title-case.js b/doc/titlecase/to-title-case.js index 2ccab522142..439a76bad4e 100755 --- a/doc/titlecase/to-title-case.js +++ b/doc/titlecase/to-title-case.js @@ -1,6 +1,6 @@ /* * Derived from To Title Case 1.1.2 <http://individed.com/code/to-title-case/> - * Copyright (c) 2008-2013 David Gouch, Fawzi Mohamed. + * Copyright (c) 2008-2014 David Gouch, Fawzi Mohamed. * Licensed under the MIT License. */ diff --git a/scripts/dependencyinfo.py b/scripts/dependencyinfo.py index 0c04152994f..c747238712b 100644 --- a/scripts/dependencyinfo.py +++ b/scripts/dependencyinfo.py @@ -1,6 +1,6 @@ #! /usr/bin/env python2 ################################################################################ -# Copyright (C) 2013 Digia Plc +# Copyright (C) 2014 Digia Plc # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/scripts/deployqt.py b/scripts/deployqt.py index d19ae9504cb..4e83dfb2ebc 100755 --- a/scripts/deployqt.py +++ b/scripts/deployqt.py @@ -1,6 +1,6 @@ #!/usr/bin/env python ################################################################################ -# Copyright (C) 2013 Digia Plc +# Copyright (C) 2014 Digia Plc # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/scripts/packageIfw.py b/scripts/packageIfw.py index aa69e0c3fad..7e4706dad7a 100755 --- a/scripts/packageIfw.py +++ b/scripts/packageIfw.py @@ -1,6 +1,6 @@ #!/usr/bin/env python ################################################################################ -# Copyright (C) 2013 Digia Plc +# Copyright (C) 2014 Digia Plc # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/scripts/unixdeployqt.sh b/scripts/unixdeployqt.sh index d53841c86f3..f0fac7b038b 100755 --- a/scripts/unixdeployqt.sh +++ b/scripts/unixdeployqt.sh @@ -1,6 +1,6 @@ #!/bin/bash ################################################################################ -# Copyright (C) 2013 Digia Plc +# Copyright (C) 2014 Digia Plc # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/share/qtcreator/debugger/boosttypes.py b/share/qtcreator/debugger/boosttypes.py index 1c111e453db..778bbf14290 100644 --- a/share/qtcreator/debugger/boosttypes.py +++ b/share/qtcreator/debugger/boosttypes.py @@ -1,6 +1,6 @@ ############################################################################ # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/creatortypes.py b/share/qtcreator/debugger/creatortypes.py index b60064e39f0..3bd2e154678 100644 --- a/share/qtcreator/debugger/creatortypes.py +++ b/share/qtcreator/debugger/creatortypes.py @@ -1,6 +1,6 @@ ############################################################################ # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/dumper.cpp b/share/qtcreator/debugger/dumper.cpp index 3c7a3da81f7..1215155475f 100644 --- a/share/qtcreator/debugger/dumper.cpp +++ b/share/qtcreator/debugger/dumper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/dumper.h b/share/qtcreator/debugger/dumper.h index 0f2b2545899..49ca6ca51f0 100644 --- a/share/qtcreator/debugger/dumper.h +++ b/share/qtcreator/debugger/dumper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/dumper.py b/share/qtcreator/debugger/dumper.py index 63ee3a53b30..eb1436774e7 100644 --- a/share/qtcreator/debugger/dumper.py +++ b/share/qtcreator/debugger/dumper.py @@ -1,6 +1,6 @@ ############################################################################ # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/dumper_p.h b/share/qtcreator/debugger/dumper_p.h index bff736c329d..c9ce0ea9abc 100644 --- a/share/qtcreator/debugger/dumper_p.h +++ b/share/qtcreator/debugger/dumper_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/lldbbridge.py b/share/qtcreator/debugger/lldbbridge.py index 1f9c94a2dd2..ec70940f8e8 100644 --- a/share/qtcreator/debugger/lldbbridge.py +++ b/share/qtcreator/debugger/lldbbridge.py @@ -1,6 +1,6 @@ ############################################################################ # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/misctypes.py b/share/qtcreator/debugger/misctypes.py index 11515d9dd82..4738313a57c 100644 --- a/share/qtcreator/debugger/misctypes.py +++ b/share/qtcreator/debugger/misctypes.py @@ -1,6 +1,6 @@ ############################################################################ # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/qttypes.py b/share/qtcreator/debugger/qttypes.py index 5754b4a8d1c..064f483db31 100644 --- a/share/qtcreator/debugger/qttypes.py +++ b/share/qtcreator/debugger/qttypes.py @@ -1,6 +1,6 @@ ############################################################################ # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/stdtypes.py b/share/qtcreator/debugger/stdtypes.py index 53f4e43af56..8734a0cf432 100644 --- a/share/qtcreator/debugger/stdtypes.py +++ b/share/qtcreator/debugger/stdtypes.py @@ -1,6 +1,6 @@ ############################################################################ # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/share/qtcreator/debugger/test/main.cpp b/share/qtcreator/debugger/test/main.cpp index cebb4a32d1c..2fcfcaebfbe 100644 --- a/share/qtcreator/debugger/test/main.cpp +++ b/share/qtcreator/debugger/test/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/glsl/glsl_120.frag b/share/qtcreator/glsl/glsl_120.frag index 1f9d16f08e1..a5f1b1ed15d 100644 --- a/share/qtcreator/glsl/glsl_120.frag +++ b/share/qtcreator/glsl/glsl_120.frag @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/glsl/glsl_120.vert b/share/qtcreator/glsl/glsl_120.vert index c94fe5f480a..657a6d0fd45 100644 --- a/share/qtcreator/glsl/glsl_120.vert +++ b/share/qtcreator/glsl/glsl_120.vert @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/glsl/glsl_120_common.glsl b/share/qtcreator/glsl/glsl_120_common.glsl index d4917e3a013..04903366a9a 100644 --- a/share/qtcreator/glsl/glsl_120_common.glsl +++ b/share/qtcreator/glsl/glsl_120_common.glsl @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/glsl/glsl_es_100.frag b/share/qtcreator/glsl/glsl_es_100.frag index 18280bd4da6..8b843cf917f 100644 --- a/share/qtcreator/glsl/glsl_es_100.frag +++ b/share/qtcreator/glsl/glsl_es_100.frag @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/glsl/glsl_es_100.vert b/share/qtcreator/glsl/glsl_es_100.vert index 3db7876d6d1..00cb4334e0b 100644 --- a/share/qtcreator/glsl/glsl_es_100.vert +++ b/share/qtcreator/glsl/glsl_es_100.vert @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/glsl/glsl_es_100_common.glsl b/share/qtcreator/glsl/glsl_es_100_common.glsl index 08fbe14d456..ca338ad0f6c 100644 --- a/share/qtcreator/glsl/glsl_es_100_common.glsl +++ b/share/qtcreator/glsl/glsl_es_100_common.glsl @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmldump/Info.plist.in b/share/qtcreator/qml/qmldump/Info.plist.in index e6849033799..5454e718f0b 100644 --- a/share/qtcreator/qml/qmldump/Info.plist.in +++ b/share/qtcreator/qml/qmldump/Info.plist.in @@ -3,7 +3,7 @@ <plist version=\"1.0\"> <dict> <key>NSHumanReadableCopyright</key> - <string>(C) 2013 Digia Plc + <string>(C) 2014 Digia Plc Commercial Usage Licensees holding valid Qt Commercial licenses may use this file in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Digia. diff --git a/share/qtcreator/qml/qmldump/main.cpp b/share/qtcreator/qml/qmldump/main.cpp index c4317ffd593..f60798f5a4d 100644 --- a/share/qtcreator/qml/qmldump/main.cpp +++ b/share/qtcreator/qml/qmldump/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmldump/qmlstreamwriter.cpp b/share/qtcreator/qml/qmldump/qmlstreamwriter.cpp index 0a3fc713ce1..b50b88bc7b9 100644 --- a/share/qtcreator/qml/qmldump/qmlstreamwriter.cpp +++ b/share/qtcreator/qml/qmldump/qmlstreamwriter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmldump/qmlstreamwriter.h b/share/qtcreator/qml/qmldump/qmlstreamwriter.h index f4f002707e5..a5ecbc2e0b1 100644 --- a/share/qtcreator/qml/qmldump/qmlstreamwriter.h +++ b/share/qtcreator/qml/qmldump/qmlstreamwriter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.cpp index 494881f668a..0b5bd2af01d 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.h b/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.h index 90a3c3f5b96..a5eb00c468a 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.cpp index 9192b6cfcea..8decb991212 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.h b/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.h index 648be83b6b5..51e233e4d6c 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.cpp index 4a1d90b52a1..1020d3c28fb 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.h b/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.h index 8cb8615351e..d5274052dec 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.cpp index 200c57203a6..78d052b0db5 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.h b/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.h index 287a6860df1..bbec0ace150 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.cpp index 6b2d9158cde..8dae08d6f51 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.h b/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.h index 3de4d114cfa..35fe27575d2 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.cpp index b3418fefc28..c5df8ee44fe 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.h b/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.h index 24356caf9d1..10b6bc7b8ff 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.cpp index d87afcac5b2..b61dbcb140a 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.h b/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.h index f5e56767dfc..a4d2eea80fd 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.cpp index 3cf00d4993c..6698e789f57 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.h b/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.h index 7a19ddc73cd..492cbb6c6f7 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.cpp index b2e71344aa5..62f7a69f98c 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.h b/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.h index 4251179eb5b..70abea98397 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.cpp index b8d5eee1121..af6ca11d644 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.h b/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.h index ac83fbb643e..3a253c160d1 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.cpp index 7db21440eed..04e1cfeb12a 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.h b/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.h index e7e57c07d54..60f3699b06c 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.cpp index 497c1140f89..145dca27cd3 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.h b/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.h index a0120bb2d45..4d3d46a4655 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.cpp index 87bad4b54c9..426c72a9ac0 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.h b/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.h index 30e7ecd0ee1..639aae27493 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.cpp index a4571edd3b9..940404bbaec 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.h b/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.h index b4862bed892..b5fbc34afc9 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.cpp index ada088a1c1f..b19154fc512 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.h b/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.h index 761951a065c..bc6db5f883b 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.cpp index 420e80e26ac..4dd8fceb619 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.h b/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.h index 933ff2ac578..a48d5242ac7 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.cpp index 5105f0a7346..0df2bd5afff 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.h b/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.h index 3d35e91c99f..9a0c90fbc25 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.cpp index 619e71845ad..6cc0901da9c 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.h b/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.h index 561b3494751..6291c08ae84 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.cpp index 3a3c73d146f..34595503f5e 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.h b/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.h index 667170f9d62..5769cfab956 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.cpp index 51bd3635489..ddef65feb22 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.h b/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.h index c342ba8df9b..aa90c541367 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.cpp index 7713c214d45..46669911acd 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.h b/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.h index 47cec46d8e4..4d2bd1f49f7 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.cpp index edc0dcfd161..23e61e879a2 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.h b/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.h index 2e85ec44b8d..ccddf51425c 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.cpp index 809537fe847..4ced7bc606c 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.h b/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.h index 3c4a7716c39..a7ffb69ea3a 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/tokencommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/tokencommand.cpp index 3637f325cdb..5b4e643ec78 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/tokencommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/tokencommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/tokencommand.h b/share/qtcreator/qml/qmlpuppet/commands/tokencommand.h index e82b805792c..c8b2b661a39 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/tokencommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/tokencommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.cpp index 6f090b8e08c..636074074e6 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.cpp +++ b/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.h b/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.h index e618a1ef40e..23b4b76b7d2 100644 --- a/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.h +++ b/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.cpp b/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.cpp index 52313953249..d07078b3fb4 100644 --- a/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.cpp +++ b/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.h b/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.h index 33f4db16ea1..d372f83c624 100644 --- a/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.h +++ b/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/idcontainer.cpp b/share/qtcreator/qml/qmlpuppet/container/idcontainer.cpp index 371d70c4cf2..f247254944a 100644 --- a/share/qtcreator/qml/qmlpuppet/container/idcontainer.cpp +++ b/share/qtcreator/qml/qmlpuppet/container/idcontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/idcontainer.h b/share/qtcreator/qml/qmlpuppet/container/idcontainer.h index e23d9bf6fe8..fd041a7384d 100644 --- a/share/qtcreator/qml/qmlpuppet/container/idcontainer.h +++ b/share/qtcreator/qml/qmlpuppet/container/idcontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/imagecontainer.cpp b/share/qtcreator/qml/qmlpuppet/container/imagecontainer.cpp index 6a35403de41..b312c39702a 100644 --- a/share/qtcreator/qml/qmlpuppet/container/imagecontainer.cpp +++ b/share/qtcreator/qml/qmlpuppet/container/imagecontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/imagecontainer.h b/share/qtcreator/qml/qmlpuppet/container/imagecontainer.h index f372972ecda..35611c34e3e 100644 --- a/share/qtcreator/qml/qmlpuppet/container/imagecontainer.h +++ b/share/qtcreator/qml/qmlpuppet/container/imagecontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/informationcontainer.cpp b/share/qtcreator/qml/qmlpuppet/container/informationcontainer.cpp index 020beed68d5..6ed776d7636 100644 --- a/share/qtcreator/qml/qmlpuppet/container/informationcontainer.cpp +++ b/share/qtcreator/qml/qmlpuppet/container/informationcontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/informationcontainer.h b/share/qtcreator/qml/qmlpuppet/container/informationcontainer.h index d4111755726..ee330596761 100644 --- a/share/qtcreator/qml/qmlpuppet/container/informationcontainer.h +++ b/share/qtcreator/qml/qmlpuppet/container/informationcontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/instancecontainer.cpp b/share/qtcreator/qml/qmlpuppet/container/instancecontainer.cpp index 10a16616e6f..10a96845fd2 100644 --- a/share/qtcreator/qml/qmlpuppet/container/instancecontainer.cpp +++ b/share/qtcreator/qml/qmlpuppet/container/instancecontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/instancecontainer.h b/share/qtcreator/qml/qmlpuppet/container/instancecontainer.h index 07e5ab05217..3967408e98a 100644 --- a/share/qtcreator/qml/qmlpuppet/container/instancecontainer.h +++ b/share/qtcreator/qml/qmlpuppet/container/instancecontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.cpp b/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.cpp index 33ffb8b1102..c5772829686 100644 --- a/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.cpp +++ b/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.h b/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.h index 497af0f2502..a6b6269aa8f 100644 --- a/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.h +++ b/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.cpp b/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.cpp index 3064f946e95..156013a9bdd 100644 --- a/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.cpp +++ b/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.h b/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.h index 1968c3f23cb..b911cc73d33 100644 --- a/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.h +++ b/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.cpp b/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.cpp index 265397ca672..137e3af21d9 100644 --- a/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.cpp +++ b/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.h b/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.h index d2607594163..366f0deac48 100644 --- a/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.h +++ b/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.cpp b/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.cpp index 6148d98fc5b..b82223a7b87 100644 --- a/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.cpp +++ b/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.h b/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.h index 231d5139662..688fc13dbf3 100644 --- a/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.h +++ b/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp b/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp index 6617308a7b5..f10d7330b00 100644 --- a/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp +++ b/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h b/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h index dc17f8408f4..8622c802598 100644 --- a/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h +++ b/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/interfaces/commondefines.h b/share/qtcreator/qml/qmlpuppet/interfaces/commondefines.h index 7cad0bdcd39..4aa85fa4fa9 100644 --- a/share/qtcreator/qml/qmlpuppet/interfaces/commondefines.h +++ b/share/qtcreator/qml/qmlpuppet/interfaces/commondefines.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceclientinterface.h b/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceclientinterface.h index 36beb442da5..7eeba652a30 100644 --- a/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceclientinterface.h +++ b/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceclientinterface.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp b/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp index 9155a4b17f8..50fb037761c 100644 --- a/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp +++ b/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h b/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h index 5abd5cadef2..8f450475153 100644 --- a/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h +++ b/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/Info.plist.in b/share/qtcreator/qml/qmlpuppet/qml2puppet/Info.plist.in index 3680913d165..e66c53abf7c 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/Info.plist.in +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/Info.plist.in @@ -3,7 +3,7 @@ <plist version=\"1.0\"> <dict> <key>NSHumanReadableCopyright</key> - <string>(C) 2013 Digia Plc + <string>(C) 2014 Digia Plc Commercial Usage Licensees holding valid Qt Commercial licenses may use this file in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Digia. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.cpp index bc7d69c9956..e8092936404 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.h index d320a5f8deb..5a9e292b923 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp index e973fa95137..10f6549b1be 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.h index 5f3745c0d6c..eaa210eee38 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.cpp index 608d28d13ae..2294ecda31c 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.h index f69eb1dc679..67844b7779d 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.cpp index 658c2e1d33a..ee0782a59df 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.h index bc0f1dc1824..53fbfc26c9c 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.cpp index 9d04a304601..440e00a2465 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.h index 10adcca0873..7b309ff4282 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.cpp index af5b7ff3efb..13c1fdc271b 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.h index d67653a2981..4c7b6e438b7 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp index 795c18920e9..0bf1ed0e39b 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.h index 7a92f83b044..c54e1f89ce6 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.cpp index 8cfdae383cf..aedb69ef62d 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.h index 6615baa76f7..198ad561d59 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.cpp index ce9ca27592e..5ade726e641 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.h index 82b1670e500..44799ba4464 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.cpp index 0a1e8216388..ac049f61c65 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.h index 47f05a74c39..16f3f74ec02 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.cpp index 6443495c345..ae32a7e5b41 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.h index bff431c0ad4..7ecdd90c331 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.cpp index 734e419efad..08457bda971 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.h index 8ab8333f1f8..2c20e2d84cc 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.cpp index 1a2330b84e7..ccfe49f56bf 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.h index 23e09028a93..7eaa27c65bc 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.cpp index 22b26ee1722..687149d4a7f 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.h index ad33649157a..87b8b1025b0 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.cpp index 3243450e0e4..952e62e867c 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.h index 7aa99fa3013..c750521798e 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.cpp index b0b45bb85ba..8d727a72e17 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.h index 4d1ab416c4c..d5f017b0d4c 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.cpp index dfc6dcfb843..8668e9b3b8d 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.h index 8d2f47acbea..248941817f6 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.cpp index c7aa5534f32..a24c32ccb67 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.h index 593f7fb181e..57be4d05c5d 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.cpp index 8c87f45445a..003cee79958 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h index 4d6630098c8..c380aebf1a9 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.cpp index 9d7f8dd449f..5af3788e216 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.h index 3e2e4ac3e60..fe79296dcae 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.cpp index e476d9ff4a7..4a7bf65edfb 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.h index c6eb49628b0..aa66a685d23 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.cpp index 93f9d31c8a9..91741df1729 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.h index 1896036c68b..3d178e05385 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.cpp index 82834da7dd7..4c03f042ab9 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.h index c9c7773d3af..43c7d215d59 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.cpp index 3d6d9d15e42..aa114f38af7 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.h index 0ca5102ba5f..ddee8202b8f 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppetmain.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppetmain.cpp index ad9a1d4c7dd..f2eb3897307 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppetmain.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppetmain.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/Info.plist.in b/share/qtcreator/qml/qmlpuppet/qmlpuppet/Info.plist.in index 4e52526ca25..2b6fedecdf4 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/Info.plist.in +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/Info.plist.in @@ -3,7 +3,7 @@ <plist version=\"1.0\"> <dict> <key>NSHumanReadableCopyright</key> - <string>(C) 2013 Digia Plc + <string>(C) 2014 Digia Plc Commercial Usage Licensees holding valid Qt Commercial licenses may use this file in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Digia. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.cpp index 8beab695d56..48c0efa0c65 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.h index 4fc823afcfa..3cbcb8ecd3f 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.cpp index 3e4927ffd46..9b9e74455dc 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.h index 0cc6d68891c..affab8de556 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.cpp index 608d28d13ae..2294ecda31c 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.h index f69eb1dc679..67844b7779d 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.cpp index f843e0e4724..075abbd0822 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.h index c062b411883..e1024d7d02c 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.cpp index 9d04a304601..440e00a2465 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.h index 4041f6705be..d51082dfe22 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.cpp index 0f9a391b4be..ad0c196656c 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.h index 8c047f88b15..d385094b536 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.cpp index 8b5561f6c3f..0f138f68827 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.h index 8350bc96121..530ae6ddc90 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.cpp index 101281d7de5..70e080fdeb6 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.h index 1dbec0bd0e7..9d9e3952edd 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.cpp index 9cd7aa3e3f2..b426c48d8f5 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.h index 67da5a69f17..e7e8e218364 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.cpp index 28b1d37b4c5..edfd7b1dfb9 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.h index 8c1bb7c059b..8a0aad81911 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.cpp index 7da7543d576..77d24d4ea28 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.h index 9e746cfbb73..5c99a4f7156 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.cpp index ce82b55c54a..fd180f71907 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.h index a789375d242..1a997963532 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.cpp index b0647a72b4e..09f90713668 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.h index 89be53582d7..bdce9b279e8 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.cpp index d262b404ce3..19e5a00264f 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.h index 7ca7855e18e..3ce40d0fa6b 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.cpp index 0848e582323..18c22b89339 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.h index 990f245eef9..11dc2790eff 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.cpp index 26cf4f42d7c..4252933c30e 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.h index b7a7e6e27c8..57cde0afc16 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.cpp index 70b60c6e176..f1899cbb7b6 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.h index 864dba0ec60..216c2284ce9 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.cpp index c2ed3884443..a3eda5cd18d 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.h index 9a72a7f6494..e173bef122d 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.cpp index 062782031af..bd987262f99 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.h index d67c93c23d3..83e98535035 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.cpp index 0c6fc902752..126a0371328 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.h index ba03c477cb1..bb962dd5b04 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.cpp index 3c7790b674f..4755516a235 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.h index c8983e2c425..f8315f97c5d 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.cpp index 7540cf0d34a..d49ff79d109 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.h b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.h index 8e2cd67dff8..b50bc54f1f5 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.h +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppetmain.cpp b/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppetmain.cpp index 13ce89e792d..73b2b492528 100644 --- a/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppetmain.cpp +++ b/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppetmain.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentHorizontalButtons.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentHorizontalButtons.qml index c25f41639f8..5ef6c25a537 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentHorizontalButtons.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentHorizontalButtons.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentVerticalButtons.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentVerticalButtons.qml index 25a398bda96..27578fe5661 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentVerticalButtons.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentVerticalButtons.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AnchorButtons.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AnchorButtons.qml index 1d0e602c088..a6f3649d308 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AnchorButtons.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AnchorButtons.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/BoolButtonRowButton.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/BoolButtonRowButton.qml index 7128cdbe905..529acc6985f 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/BoolButtonRowButton.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/BoolButtonRowButton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Button.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Button.qml index b38bf061f98..7be5d12f352 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Button.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Button.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow.qml index 4447e058661..064368fc2ae 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow2.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow2.qml index 8c7e7a3df8f..ccef7bcffed 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow2.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml index 737b49afe71..6995a3bd652 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CheckBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CheckBox.qml index f565694f728..763642f4f0d 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CheckBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CheckBox.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorButton.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorButton.qml index b50dcbbc5f1..7928f82f3fe 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorButton.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorButton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorCheckButton.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorCheckButton.qml index 869cc7133b8..7a50cd19b16 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorCheckButton.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorCheckButton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorEditor.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorEditor.qml index 889b2ce16c5..168925f6fbd 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorEditor.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorEditor.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorLogic.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorLogic.qml index b4817ecef49..3d9336090b7 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorLogic.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorLogic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml index 39419cc54e5..8c17b4a40b6 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Constants.js b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Constants.js index a673afe5b08..d49c371d059 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Constants.js +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Constants.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml index f49c3121c08..10b3aab8c9e 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomSpinBoxStyle.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomSpinBoxStyle.qml index 9186fcd8bc4..2fbca27961b 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomSpinBoxStyle.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomSpinBoxStyle.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExpandingSpacer.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExpandingSpacer.qml index 7986378ebcb..259f482bf21 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExpandingSpacer.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExpandingSpacer.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExtendedFunctionButton.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExtendedFunctionButton.qml index 9e4170cf1be..140678ca930 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExtendedFunctionButton.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExtendedFunctionButton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FlickableSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FlickableSection.qml index 4f150e2afa9..36722e94656 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FlickableSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FlickableSection.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontComboBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontComboBox.qml index 5827c604761..9c15b039b3a 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontComboBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontComboBox.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontSection.qml index d7cca7a9d37..a618fedf964 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontSection.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontStyleButtons.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontStyleButtons.qml index 0281764bd25..fd392c691d3 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontStyleButtons.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontStyleButtons.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/GradientLine.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/GradientLine.qml index 3f541e27da8..57ab5294419 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/GradientLine.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/GradientLine.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/HueSlider.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/HueSlider.qml index 6e715962d4c..8cd4bad9685 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/HueSlider.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/HueSlider.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Graphical Effects module. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/IconLabel.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/IconLabel.qml index df0ffc33598..22222e5ef26 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/IconLabel.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/IconLabel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Label.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Label.qml index 7da1bac7ef2..3395542cdac 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Label.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Label.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/LineEdit.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/LineEdit.qml index ee947a82496..bcdc246062c 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/LineEdit.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/LineEdit.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/OriginControl.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/OriginControl.qml index cd81feaedd8..5a427b70d84 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/OriginControl.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/OriginControl.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/RoundedPanel.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/RoundedPanel.qml index fdf294c148b..7c52a18f39b 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/RoundedPanel.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/RoundedPanel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SecondColumnLayout.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SecondColumnLayout.qml index cdeee94ded2..7bf3a701b7a 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SecondColumnLayout.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SecondColumnLayout.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Section.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Section.qml index 9380e844ce2..c7e867733ac 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Section.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Section.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SectionLayout.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SectionLayout.qml index 5355ff78ad0..0814c5144e2 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SectionLayout.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SectionLayout.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SliderSpinBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SliderSpinBox.qml index a36f9acf9a3..32efcc3ee18 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SliderSpinBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SliderSpinBox.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml index 43cc05fa84d..241897fe960 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml index ce981403963..dac63cbc24a 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Tab.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Tab.qml index e0befb271c7..d572c3bea67 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Tab.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Tab.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/TabView.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/TabView.qml index 2f46721e2a8..5a8794b1dfd 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/TabView.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/TabView.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/UrlChooser.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/UrlChooser.qml index 08010ceeec8..21b2c869227 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/UrlChooser.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/UrlChooser.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml index 610163d5d5e..1a79b72ac45 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/BorderImageSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/BorderImageSpecifics.qml index cc3dd56d998..9517146508b 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/BorderImageSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/BorderImageSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml index c8ee80a4d46..e3f5a33db3c 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml index 020c8d39a4a..1914eeaf57d 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml index 90f2c84fc4e..6e9387a20b0 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml index 995874e73d7..1a242d0aae1 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml index 74ecee46398..97412453fbf 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml index c22a26ac890..6aa751bab69 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml index 69b5f7a9ba9..89f187cf8b5 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ImageSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ImageSpecifics.qml index 8939739f6ac..cc03f887974 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ImageSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ImageSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml index e5612a2f91f..d8dfdbe26d8 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml index 7f35c1c50be..9e32e49ab95 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Quick Controls module of the Qt Toolkit. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml index 306469376d4..00650d6ebfa 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml index 153c2cf49ed..9c227506885 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml index dcce0fe38d4..1f56b346abe 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/QtObjectPane.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/QtObjectPane.qml index db3d84b7c73..8e86a559bdb 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/QtObjectPane.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/QtObjectPane.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml index 04e89619ec3..df43a5cc84f 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml index a65994eeea2..99ee0b4cff0 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml index 178dd8a7db7..3b50623ce6c 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml index 2342cf1c717..8c04d36416a 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSection.qml index 770ba6a1bb7..1dbace86eb6 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSection.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml index 8ab8bcadf4e..10e351c33f4 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextSpecifics.qml index 4ce5322f6fd..173cf745d22 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Window/WindowSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Window/WindowSpecifics.qml index 35b303d5dc8..ed23013f95e 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Window/WindowSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Window/WindowSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml index dd0b2834c58..e7ad020a536 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/bb-bardescriptor/wizard.xml b/share/qtcreator/templates/wizards/bb-bardescriptor/wizard.xml index 009f2190a86..27fb61d834f 100644 --- a/share/qtcreator/templates/wizards/bb-bardescriptor/wizard.xml +++ b/share/qtcreator/templates/wizards/bb-bardescriptor/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/bb-cascades-app/wizard.xml b/share/qtcreator/templates/wizards/bb-cascades-app/wizard.xml index f61033f2c1f..a709153132e 100644 --- a/share/qtcreator/templates/wizards/bb-cascades-app/wizard.xml +++ b/share/qtcreator/templates/wizards/bb-cascades-app/wizard.xml @@ -4,7 +4,7 @@ ** ** This file is part of Qt Creator ** -** Copyright (C) 2011 - 2013 Research In Motion +** Copyright (C) 2011 - 2014 Research In Motion ** ** Contact: Research In Motion (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) diff --git a/share/qtcreator/templates/wizards/bb-qt5-bardescriptor/wizard.xml b/share/qtcreator/templates/wizards/bb-qt5-bardescriptor/wizard.xml index 08cc38b76a7..2451e2bfa37 100644 --- a/share/qtcreator/templates/wizards/bb-qt5-bardescriptor/wizard.xml +++ b/share/qtcreator/templates/wizards/bb-qt5-bardescriptor/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/codesnippet/wizard.xml b/share/qtcreator/templates/wizards/codesnippet/wizard.xml index 523dc89a961..6a67b722f9a 100644 --- a/share/qtcreator/templates/wizards/codesnippet/wizard.xml +++ b/share/qtcreator/templates/wizards/codesnippet/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/helloworld/wizard_sample.xml b/share/qtcreator/templates/wizards/helloworld/wizard_sample.xml index df3724c2689..07a183da2d2 100644 --- a/share/qtcreator/templates/wizards/helloworld/wizard_sample.xml +++ b/share/qtcreator/templates/wizards/helloworld/wizard_sample.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/listmodel/wizard_sample.xml b/share/qtcreator/templates/wizards/listmodel/wizard_sample.xml index d608fe3a1de..618145b45ca 100644 --- a/share/qtcreator/templates/wizards/listmodel/wizard_sample.xml +++ b/share/qtcreator/templates/wizards/listmodel/wizard_sample.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/plaincapp/cmake/wizard.xml b/share/qtcreator/templates/wizards/plaincapp/cmake/wizard.xml index 0c9ae22b1b3..5adb4254651 100644 --- a/share/qtcreator/templates/wizards/plaincapp/cmake/wizard.xml +++ b/share/qtcreator/templates/wizards/plaincapp/cmake/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/plaincapp/qbs/wizard.xml b/share/qtcreator/templates/wizards/plaincapp/qbs/wizard.xml index 95a44930c87..bee1e595c43 100644 --- a/share/qtcreator/templates/wizards/plaincapp/qbs/wizard.xml +++ b/share/qtcreator/templates/wizards/plaincapp/qbs/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/plaincapp/qmake/wizard.xml b/share/qtcreator/templates/wizards/plaincapp/qmake/wizard.xml index 389f156fc18..da1c2d3dc77 100644 --- a/share/qtcreator/templates/wizards/plaincapp/qmake/wizard.xml +++ b/share/qtcreator/templates/wizards/plaincapp/qmake/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/plaincppapp/cmake/wizard.xml b/share/qtcreator/templates/wizards/plaincppapp/cmake/wizard.xml index d5212bd4cda..03470f7bf79 100644 --- a/share/qtcreator/templates/wizards/plaincppapp/cmake/wizard.xml +++ b/share/qtcreator/templates/wizards/plaincppapp/cmake/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/plaincppapp/qbs/wizard.xml b/share/qtcreator/templates/wizards/plaincppapp/qbs/wizard.xml index e1fb3c338d4..08e38df3350 100644 --- a/share/qtcreator/templates/wizards/plaincppapp/qbs/wizard.xml +++ b/share/qtcreator/templates/wizards/plaincppapp/qbs/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/plaincppapp/qmake/wizard.xml b/share/qtcreator/templates/wizards/plaincppapp/qmake/wizard.xml index a9e3640b8ed..9399f89f03d 100644 --- a/share/qtcreator/templates/wizards/plaincppapp/qmake/wizard.xml +++ b/share/qtcreator/templates/wizards/plaincppapp/qmake/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/qtcreatorplugin/wizard.xml b/share/qtcreator/templates/wizards/qtcreatorplugin/wizard.xml index f6777c3a4f6..5429154261b 100644 --- a/share/qtcreator/templates/wizards/qtcreatorplugin/wizard.xml +++ b/share/qtcreator/templates/wizards/qtcreatorplugin/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/qtquick1-extension/wizard.xml b/share/qtcreator/templates/wizards/qtquick1-extension/wizard.xml index 5f305c04417..ceabc683766 100644 --- a/share/qtcreator/templates/wizards/qtquick1-extension/wizard.xml +++ b/share/qtcreator/templates/wizards/qtquick1-extension/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/qtquick2-extension/wizard.xml b/share/qtcreator/templates/wizards/qtquick2-extension/wizard.xml index 8de803a7231..6ee6464b815 100644 --- a/share/qtcreator/templates/wizards/qtquick2-extension/wizard.xml +++ b/share/qtcreator/templates/wizards/qtquick2-extension/wizard.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/scriptgeneratedproject/generate.pl b/share/qtcreator/templates/wizards/scriptgeneratedproject/generate.pl index 59e962522e2..9f4bfa1eaa2 100755 --- a/share/qtcreator/templates/wizards/scriptgeneratedproject/generate.pl +++ b/share/qtcreator/templates/wizards/scriptgeneratedproject/generate.pl @@ -2,7 +2,7 @@ ############################################################################ # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/share/qtcreator/templates/wizards/scriptgeneratedproject/wizard_sample.xml b/share/qtcreator/templates/wizards/scriptgeneratedproject/wizard_sample.xml index 749927f7bcc..c84ebbc4d34 100644 --- a/share/qtcreator/templates/wizards/scriptgeneratedproject/wizard_sample.xml +++ b/share/qtcreator/templates/wizards/scriptgeneratedproject/wizard_sample.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/translations/check-ts.pl b/share/qtcreator/translations/check-ts.pl index 320a5ef4d04..57ad5563ef4 100755 --- a/share/qtcreator/translations/check-ts.pl +++ b/share/qtcreator/translations/check-ts.pl @@ -2,7 +2,7 @@ ############################################################################ # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/develop.qml b/share/qtcreator/welcomescreen/develop.qml index d57432cfc87..55a49922e39 100644 --- a/share/qtcreator/welcomescreen/develop.qml +++ b/share/qtcreator/welcomescreen/develop.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/dummydata/examplesModel.qml b/share/qtcreator/welcomescreen/dummydata/examplesModel.qml index a3cbf216c8b..ff84253d6a8 100644 --- a/share/qtcreator/welcomescreen/dummydata/examplesModel.qml +++ b/share/qtcreator/welcomescreen/dummydata/examplesModel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/dummydata/pagesModel.qml b/share/qtcreator/welcomescreen/dummydata/pagesModel.qml index 91ce857df7d..e9d79fba387 100644 --- a/share/qtcreator/welcomescreen/dummydata/pagesModel.qml +++ b/share/qtcreator/welcomescreen/dummydata/pagesModel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/dummydata/projectList.qml b/share/qtcreator/welcomescreen/dummydata/projectList.qml index 75411e8d55e..817faa5ecad 100644 --- a/share/qtcreator/welcomescreen/dummydata/projectList.qml +++ b/share/qtcreator/welcomescreen/dummydata/projectList.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/dummydata/sessionList.qml b/share/qtcreator/welcomescreen/dummydata/sessionList.qml index 07352b21306..17130f4b9cb 100644 --- a/share/qtcreator/welcomescreen/dummydata/sessionList.qml +++ b/share/qtcreator/welcomescreen/dummydata/sessionList.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/dummydata/tutorialsModel.qml b/share/qtcreator/welcomescreen/dummydata/tutorialsModel.qml index c2930d980e7..6035da7e24d 100644 --- a/share/qtcreator/welcomescreen/dummydata/tutorialsModel.qml +++ b/share/qtcreator/welcomescreen/dummydata/tutorialsModel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/examples.qml b/share/qtcreator/welcomescreen/examples.qml index 8ff9865c0f3..07c98f7bbce 100644 --- a/share/qtcreator/welcomescreen/examples.qml +++ b/share/qtcreator/welcomescreen/examples.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/tutorials.qml b/share/qtcreator/welcomescreen/tutorials.qml index b2de14ad8e5..ee0bd33efcd 100644 --- a/share/qtcreator/welcomescreen/tutorials.qml +++ b/share/qtcreator/welcomescreen/tutorials.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/welcomescreen.qml b/share/qtcreator/welcomescreen/welcomescreen.qml index d5f4e945ecc..dfd79653917 100644 --- a/share/qtcreator/welcomescreen/welcomescreen.qml +++ b/share/qtcreator/welcomescreen/welcomescreen.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/Button.qml b/share/qtcreator/welcomescreen/widgets/Button.qml index c4f329c2858..a9214e709a4 100644 --- a/share/qtcreator/welcomescreen/widgets/Button.qml +++ b/share/qtcreator/welcomescreen/widgets/Button.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/ComboBox.qml b/share/qtcreator/welcomescreen/widgets/ComboBox.qml index 544c3f498b9..fbe5786073d 100644 --- a/share/qtcreator/welcomescreen/widgets/ComboBox.qml +++ b/share/qtcreator/welcomescreen/widgets/ComboBox.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/CustomColors.qml b/share/qtcreator/welcomescreen/widgets/CustomColors.qml index 20cc1bed23c..6beb3b0e17c 100644 --- a/share/qtcreator/welcomescreen/widgets/CustomColors.qml +++ b/share/qtcreator/welcomescreen/widgets/CustomColors.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/CustomFonts.qml b/share/qtcreator/welcomescreen/widgets/CustomFonts.qml index c10e8ace654..d7e9508be82 100644 --- a/share/qtcreator/welcomescreen/widgets/CustomFonts.qml +++ b/share/qtcreator/welcomescreen/widgets/CustomFonts.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/CustomTab.qml b/share/qtcreator/welcomescreen/widgets/CustomTab.qml index b76cffedc6c..d89cd6e172c 100644 --- a/share/qtcreator/welcomescreen/widgets/CustomTab.qml +++ b/share/qtcreator/welcomescreen/widgets/CustomTab.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/CustomizedGridView.qml b/share/qtcreator/welcomescreen/widgets/CustomizedGridView.qml index 59984d6d7ff..876a3a65f02 100644 --- a/share/qtcreator/welcomescreen/widgets/CustomizedGridView.qml +++ b/share/qtcreator/welcomescreen/widgets/CustomizedGridView.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/Delegate.qml b/share/qtcreator/welcomescreen/widgets/Delegate.qml index 54d30538e70..aca86f3bf8f 100644 --- a/share/qtcreator/welcomescreen/widgets/Delegate.qml +++ b/share/qtcreator/welcomescreen/widgets/Delegate.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/LeftSideBar.qml b/share/qtcreator/welcomescreen/widgets/LeftSideBar.qml index b76cffedc6c..d89cd6e172c 100644 --- a/share/qtcreator/welcomescreen/widgets/LeftSideBar.qml +++ b/share/qtcreator/welcomescreen/widgets/LeftSideBar.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/LinkedText.qml b/share/qtcreator/welcomescreen/widgets/LinkedText.qml index b460ac50a98..57ca4fae06c 100644 --- a/share/qtcreator/welcomescreen/widgets/LinkedText.qml +++ b/share/qtcreator/welcomescreen/widgets/LinkedText.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/LinksBar.qml b/share/qtcreator/welcomescreen/widgets/LinksBar.qml index 88038a85ccb..8feba815284 100644 --- a/share/qtcreator/welcomescreen/widgets/LinksBar.qml +++ b/share/qtcreator/welcomescreen/widgets/LinksBar.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/Logo.qml b/share/qtcreator/welcomescreen/widgets/Logo.qml index 059c1c4dd0f..8b5b3ae6455 100644 --- a/share/qtcreator/welcomescreen/widgets/Logo.qml +++ b/share/qtcreator/welcomescreen/widgets/Logo.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/NativeText.qml b/share/qtcreator/welcomescreen/widgets/NativeText.qml index df33557b909..2809ccdb38b 100644 --- a/share/qtcreator/welcomescreen/widgets/NativeText.qml +++ b/share/qtcreator/welcomescreen/widgets/NativeText.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/PageCaption.qml b/share/qtcreator/welcomescreen/widgets/PageCaption.qml index 906e3b5d5e9..c17f41be361 100644 --- a/share/qtcreator/welcomescreen/widgets/PageCaption.qml +++ b/share/qtcreator/welcomescreen/widgets/PageCaption.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/PageLoader.qml b/share/qtcreator/welcomescreen/widgets/PageLoader.qml index 3acca9ff9dd..053c1eba884 100644 --- a/share/qtcreator/welcomescreen/widgets/PageLoader.qml +++ b/share/qtcreator/welcomescreen/widgets/PageLoader.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/ProjectItem.qml b/share/qtcreator/welcomescreen/widgets/ProjectItem.qml index 72fcd1ece99..b1e4b3c6634 100644 --- a/share/qtcreator/welcomescreen/widgets/ProjectItem.qml +++ b/share/qtcreator/welcomescreen/widgets/ProjectItem.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/RecentProjects.qml b/share/qtcreator/welcomescreen/widgets/RecentProjects.qml index a1d73baffbc..75f8d7d4cd7 100644 --- a/share/qtcreator/welcomescreen/widgets/RecentProjects.qml +++ b/share/qtcreator/welcomescreen/widgets/RecentProjects.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/SearchBar.qml b/share/qtcreator/welcomescreen/widgets/SearchBar.qml index e2bb784e883..5e592ed7ff5 100644 --- a/share/qtcreator/welcomescreen/widgets/SearchBar.qml +++ b/share/qtcreator/welcomescreen/widgets/SearchBar.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/SessionItem.qml b/share/qtcreator/welcomescreen/widgets/SessionItem.qml index 4c9d219d620..15b78afe339 100644 --- a/share/qtcreator/welcomescreen/widgets/SessionItem.qml +++ b/share/qtcreator/welcomescreen/widgets/SessionItem.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/Sessions.qml b/share/qtcreator/welcomescreen/widgets/Sessions.qml index 54e53627434..ae451bde22a 100644 --- a/share/qtcreator/welcomescreen/widgets/Sessions.qml +++ b/share/qtcreator/welcomescreen/widgets/Sessions.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/SideBar.qml b/share/qtcreator/welcomescreen/widgets/SideBar.qml index 20ba652277f..c2d4153409e 100644 --- a/share/qtcreator/welcomescreen/widgets/SideBar.qml +++ b/share/qtcreator/welcomescreen/widgets/SideBar.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/Tabs.qml b/share/qtcreator/welcomescreen/widgets/Tabs.qml index 6ca0b8dc3ec..7aeb90debc9 100644 --- a/share/qtcreator/welcomescreen/widgets/Tabs.qml +++ b/share/qtcreator/welcomescreen/widgets/Tabs.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/ToolTip.qml b/share/qtcreator/welcomescreen/widgets/ToolTip.qml index 8f68935ef2c..ffd8447e302 100644 --- a/share/qtcreator/welcomescreen/widgets/ToolTip.qml +++ b/share/qtcreator/welcomescreen/widgets/ToolTip.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleDelegate.qml b/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleDelegate.qml index cadd814b3d5..e4e20f1f91b 100644 --- a/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleDelegate.qml +++ b/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleDelegate.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleGridView.qml b/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleGridView.qml index 6640143b751..c0f1701a35b 100644 --- a/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleGridView.qml +++ b/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleGridView.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/dummydata/examplesModel.qml b/share/qtcreator/welcomescreen/widgets/dummydata/examplesModel.qml index 1e687236946..53fdf66f0ac 100644 --- a/share/qtcreator/welcomescreen/widgets/dummydata/examplesModel.qml +++ b/share/qtcreator/welcomescreen/widgets/dummydata/examplesModel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/dummydata/mockupTags.qml b/share/qtcreator/welcomescreen/widgets/dummydata/mockupTags.qml index 8b410ccda56..45a3fc04fa7 100644 --- a/share/qtcreator/welcomescreen/widgets/dummydata/mockupTags.qml +++ b/share/qtcreator/welcomescreen/widgets/dummydata/mockupTags.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/dummydata/pagesModel.qml b/share/qtcreator/welcomescreen/widgets/dummydata/pagesModel.qml index de41e0dbd09..7bbc9876954 100644 --- a/share/qtcreator/welcomescreen/widgets/dummydata/pagesModel.qml +++ b/share/qtcreator/welcomescreen/widgets/dummydata/pagesModel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/share/qtcreator/welcomescreen/widgets/dummydata/tabsModel.qml b/share/qtcreator/welcomescreen/widgets/dummydata/tabsModel.qml index c13d74b7428..41012b1d96f 100644 --- a/share/qtcreator/welcomescreen/widgets/dummydata/tabsModel.qml +++ b/share/qtcreator/welcomescreen/widgets/dummydata/tabsModel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/app/Info.plist.in b/src/app/Info.plist.in index b75d3470959..290a4e7bc73 100644 --- a/src/app/Info.plist.in +++ b/src/app/Info.plist.in @@ -231,7 +231,7 @@ </dict> </array> <key>NSHumanReadableCopyright</key> - <string>(C) 2013 Digia Plc</string> + <string>(C) 2014 Digia Plc</string> <key>CFBundleIconFile</key> <string>$$ICON</string> <key>CFBundlePackageType</key> diff --git a/src/app/app_version.h.in b/src/app/app_version.h.in index 1107bc08bf8..b54d31dbd0d 100644 --- a/src/app/app_version.h.in +++ b/src/app/app_version.h.in @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. @@ -45,7 +45,7 @@ namespace Constants { const char * const IDE_VERSION_LONG = IDE_VERSION_STR; const char * const IDE_AUTHOR = \"Digia Plc\"; -const char * const IDE_YEAR = \"2013\"; +const char * const IDE_YEAR = \"2014\"; #ifdef IDE_VERSION_DESCRIPTION const char * const IDE_VERSION_DESCRIPTION_STR = STRINGIFY(IDE_VERSION_DESCRIPTION); diff --git a/src/app/main.cpp b/src/app/main.cpp index da6f0716c7d..4eb564ffa01 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/3rdparty/cplusplus/cppassert.h b/src/libs/3rdparty/cplusplus/cppassert.h index 22c5cae4723..f63ef0eb7c4 100644 --- a/src/libs/3rdparty/cplusplus/cppassert.h +++ b/src/libs/3rdparty/cplusplus/cppassert.h @@ -1,6 +1,6 @@ /**************************************************************************** * ** - * ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). + * ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). * ** Contact: http://www.qt-project.org/legal * ** * ** This file is part of Qt Creator. diff --git a/src/libs/aggregation/aggregate.cpp b/src/libs/aggregation/aggregate.cpp index c6bd27dc53d..504df93ede2 100644 --- a/src/libs/aggregation/aggregate.cpp +++ b/src/libs/aggregation/aggregate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/aggregation/aggregate.h b/src/libs/aggregation/aggregate.h index 88faec9c2cf..5443ee63c23 100644 --- a/src/libs/aggregation/aggregate.h +++ b/src/libs/aggregation/aggregate.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/aggregation/aggregation_global.h b/src/libs/aggregation/aggregation_global.h index 2610ee3c6e7..dba3af58d75 100644 --- a/src/libs/aggregation/aggregation_global.h +++ b/src/libs/aggregation/aggregation_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/aggregation/examples/text/main.cpp b/src/libs/aggregation/examples/text/main.cpp index 00df01a2e8e..4edd76fb817 100644 --- a/src/libs/aggregation/examples/text/main.cpp +++ b/src/libs/aggregation/examples/text/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/aggregation/examples/text/main.h b/src/libs/aggregation/examples/text/main.h index 328b545e5c8..749a85fd295 100644 --- a/src/libs/aggregation/examples/text/main.h +++ b/src/libs/aggregation/examples/text/main.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/aggregation/examples/text/myinterfaces.h b/src/libs/aggregation/examples/text/myinterfaces.h index af32d19bf8a..ef1a4f7a85d 100644 --- a/src/libs/aggregation/examples/text/myinterfaces.h +++ b/src/libs/aggregation/examples/text/myinterfaces.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/ASTParent.cpp b/src/libs/cplusplus/ASTParent.cpp index 37b470c10c3..717c2d1d5bf 100644 --- a/src/libs/cplusplus/ASTParent.cpp +++ b/src/libs/cplusplus/ASTParent.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/ASTParent.h b/src/libs/cplusplus/ASTParent.h index 02f4a4fea57..840ce693f6c 100644 --- a/src/libs/cplusplus/ASTParent.h +++ b/src/libs/cplusplus/ASTParent.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/ASTPath.cpp b/src/libs/cplusplus/ASTPath.cpp index e4dc4a1bbcc..8e1a09dff5d 100644 --- a/src/libs/cplusplus/ASTPath.cpp +++ b/src/libs/cplusplus/ASTPath.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/ASTPath.h b/src/libs/cplusplus/ASTPath.h index 1bf29d2dc22..cf23bb55036 100644 --- a/src/libs/cplusplus/ASTPath.h +++ b/src/libs/cplusplus/ASTPath.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/BackwardsScanner.cpp b/src/libs/cplusplus/BackwardsScanner.cpp index 4d74cb39973..ee7f03737ab 100644 --- a/src/libs/cplusplus/BackwardsScanner.cpp +++ b/src/libs/cplusplus/BackwardsScanner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/BackwardsScanner.h b/src/libs/cplusplus/BackwardsScanner.h index 78212210f0c..5476ec36228 100644 --- a/src/libs/cplusplus/BackwardsScanner.h +++ b/src/libs/cplusplus/BackwardsScanner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/CppDocument.cpp b/src/libs/cplusplus/CppDocument.cpp index 46fee7f443c..61d82d945ed 100644 --- a/src/libs/cplusplus/CppDocument.cpp +++ b/src/libs/cplusplus/CppDocument.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/CppDocument.h b/src/libs/cplusplus/CppDocument.h index 886f2bed422..a9eed211928 100644 --- a/src/libs/cplusplus/CppDocument.h +++ b/src/libs/cplusplus/CppDocument.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/CppRewriter.cpp b/src/libs/cplusplus/CppRewriter.cpp index 7a103b85c12..6e507214933 100644 --- a/src/libs/cplusplus/CppRewriter.cpp +++ b/src/libs/cplusplus/CppRewriter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/CppRewriter.h b/src/libs/cplusplus/CppRewriter.h index d7a98adfc3f..8c787db4a99 100644 --- a/src/libs/cplusplus/CppRewriter.h +++ b/src/libs/cplusplus/CppRewriter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/DependencyTable.cpp b/src/libs/cplusplus/DependencyTable.cpp index 6d3cc0651ea..7ce2c162e03 100644 --- a/src/libs/cplusplus/DependencyTable.cpp +++ b/src/libs/cplusplus/DependencyTable.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/DependencyTable.h b/src/libs/cplusplus/DependencyTable.h index 607f2041909..2b6378f2540 100644 --- a/src/libs/cplusplus/DependencyTable.h +++ b/src/libs/cplusplus/DependencyTable.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/DeprecatedGenTemplateInstance.cpp b/src/libs/cplusplus/DeprecatedGenTemplateInstance.cpp index bbae274faf8..f33804a4f4a 100644 --- a/src/libs/cplusplus/DeprecatedGenTemplateInstance.cpp +++ b/src/libs/cplusplus/DeprecatedGenTemplateInstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/DeprecatedGenTemplateInstance.h b/src/libs/cplusplus/DeprecatedGenTemplateInstance.h index ece0f660592..7d49cdda477 100644 --- a/src/libs/cplusplus/DeprecatedGenTemplateInstance.h +++ b/src/libs/cplusplus/DeprecatedGenTemplateInstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/Dumpers.cpp b/src/libs/cplusplus/Dumpers.cpp index b3a4cc55cf1..52daefb1016 100644 --- a/src/libs/cplusplus/Dumpers.cpp +++ b/src/libs/cplusplus/Dumpers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/Dumpers.h b/src/libs/cplusplus/Dumpers.h index 864894b65d8..19684fb2853 100644 --- a/src/libs/cplusplus/Dumpers.h +++ b/src/libs/cplusplus/Dumpers.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/ExpressionUnderCursor.cpp b/src/libs/cplusplus/ExpressionUnderCursor.cpp index 35e16ab0c1b..fefb55347e7 100644 --- a/src/libs/cplusplus/ExpressionUnderCursor.cpp +++ b/src/libs/cplusplus/ExpressionUnderCursor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/ExpressionUnderCursor.h b/src/libs/cplusplus/ExpressionUnderCursor.h index 0d47ca5ae80..c77b74687ad 100644 --- a/src/libs/cplusplus/ExpressionUnderCursor.h +++ b/src/libs/cplusplus/ExpressionUnderCursor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/FastPreprocessor.cpp b/src/libs/cplusplus/FastPreprocessor.cpp index 66df01c3488..c663375a8ba 100644 --- a/src/libs/cplusplus/FastPreprocessor.cpp +++ b/src/libs/cplusplus/FastPreprocessor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/FastPreprocessor.h b/src/libs/cplusplus/FastPreprocessor.h index ec585e28ca5..eabc4d03ded 100644 --- a/src/libs/cplusplus/FastPreprocessor.h +++ b/src/libs/cplusplus/FastPreprocessor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/FindUsages.cpp b/src/libs/cplusplus/FindUsages.cpp index 870c6960288..14921e54d80 100644 --- a/src/libs/cplusplus/FindUsages.cpp +++ b/src/libs/cplusplus/FindUsages.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/FindUsages.h b/src/libs/cplusplus/FindUsages.h index 1a7fd906886..2d63c2a859b 100644 --- a/src/libs/cplusplus/FindUsages.h +++ b/src/libs/cplusplus/FindUsages.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/Icons.cpp b/src/libs/cplusplus/Icons.cpp index db57e05e594..c52566720db 100644 --- a/src/libs/cplusplus/Icons.cpp +++ b/src/libs/cplusplus/Icons.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/Icons.h b/src/libs/cplusplus/Icons.h index 7396744c71d..09800f5d7b2 100644 --- a/src/libs/cplusplus/Icons.h +++ b/src/libs/cplusplus/Icons.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/LookupContext.cpp b/src/libs/cplusplus/LookupContext.cpp index 28c5c00dc0b..ecf54a5f1a3 100644 --- a/src/libs/cplusplus/LookupContext.cpp +++ b/src/libs/cplusplus/LookupContext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/LookupContext.h b/src/libs/cplusplus/LookupContext.h index d61cb4af174..84c9d470069 100644 --- a/src/libs/cplusplus/LookupContext.h +++ b/src/libs/cplusplus/LookupContext.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/LookupItem.cpp b/src/libs/cplusplus/LookupItem.cpp index a3608292d17..54340a13e8e 100644 --- a/src/libs/cplusplus/LookupItem.cpp +++ b/src/libs/cplusplus/LookupItem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/LookupItem.h b/src/libs/cplusplus/LookupItem.h index e3161249c2e..97d88fa0279 100644 --- a/src/libs/cplusplus/LookupItem.h +++ b/src/libs/cplusplus/LookupItem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/Macro.cpp b/src/libs/cplusplus/Macro.cpp index d35fc697426..b957e32156f 100644 --- a/src/libs/cplusplus/Macro.cpp +++ b/src/libs/cplusplus/Macro.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/Macro.h b/src/libs/cplusplus/Macro.h index a3d83b1f00d..0258345cfe6 100644 --- a/src/libs/cplusplus/Macro.h +++ b/src/libs/cplusplus/Macro.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/MatchingText.cpp b/src/libs/cplusplus/MatchingText.cpp index 6dedaec364b..b6fbd047882 100644 --- a/src/libs/cplusplus/MatchingText.cpp +++ b/src/libs/cplusplus/MatchingText.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/MatchingText.h b/src/libs/cplusplus/MatchingText.h index 32db6df60a4..3fea1a8d027 100644 --- a/src/libs/cplusplus/MatchingText.h +++ b/src/libs/cplusplus/MatchingText.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/NamePrettyPrinter.cpp b/src/libs/cplusplus/NamePrettyPrinter.cpp index 065b7a821dd..e5fdfd1e8f3 100644 --- a/src/libs/cplusplus/NamePrettyPrinter.cpp +++ b/src/libs/cplusplus/NamePrettyPrinter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/NamePrettyPrinter.h b/src/libs/cplusplus/NamePrettyPrinter.h index f5f02970228..62ff2f36d78 100644 --- a/src/libs/cplusplus/NamePrettyPrinter.h +++ b/src/libs/cplusplus/NamePrettyPrinter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/Overview.cpp b/src/libs/cplusplus/Overview.cpp index c5865ab541b..04c3c8b2bda 100644 --- a/src/libs/cplusplus/Overview.cpp +++ b/src/libs/cplusplus/Overview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/Overview.h b/src/libs/cplusplus/Overview.h index 020e70ede96..0f4b3973b57 100644 --- a/src/libs/cplusplus/Overview.h +++ b/src/libs/cplusplus/Overview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/OverviewModel.cpp b/src/libs/cplusplus/OverviewModel.cpp index 41dee2a19ae..372d80fe5ac 100644 --- a/src/libs/cplusplus/OverviewModel.cpp +++ b/src/libs/cplusplus/OverviewModel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/OverviewModel.h b/src/libs/cplusplus/OverviewModel.h index e8b30345432..3f739c2a665 100644 --- a/src/libs/cplusplus/OverviewModel.h +++ b/src/libs/cplusplus/OverviewModel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/PPToken.cpp b/src/libs/cplusplus/PPToken.cpp index b3e41103bbe..7b34c1ed35a 100644 --- a/src/libs/cplusplus/PPToken.cpp +++ b/src/libs/cplusplus/PPToken.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/PPToken.h b/src/libs/cplusplus/PPToken.h index bf9dc29706b..1168fc90a4c 100644 --- a/src/libs/cplusplus/PPToken.h +++ b/src/libs/cplusplus/PPToken.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/PreprocessorClient.cpp b/src/libs/cplusplus/PreprocessorClient.cpp index 5028cffd817..c7eb9a06e36 100644 --- a/src/libs/cplusplus/PreprocessorClient.cpp +++ b/src/libs/cplusplus/PreprocessorClient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/PreprocessorClient.h b/src/libs/cplusplus/PreprocessorClient.h index 217337a112b..4802289dfa4 100644 --- a/src/libs/cplusplus/PreprocessorClient.h +++ b/src/libs/cplusplus/PreprocessorClient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/PreprocessorEnvironment.cpp b/src/libs/cplusplus/PreprocessorEnvironment.cpp index 5760fbebd8e..792e48bb947 100644 --- a/src/libs/cplusplus/PreprocessorEnvironment.cpp +++ b/src/libs/cplusplus/PreprocessorEnvironment.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/PreprocessorEnvironment.h b/src/libs/cplusplus/PreprocessorEnvironment.h index 050dda1a865..2d6ce96005c 100644 --- a/src/libs/cplusplus/PreprocessorEnvironment.h +++ b/src/libs/cplusplus/PreprocessorEnvironment.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/ResolveExpression.cpp b/src/libs/cplusplus/ResolveExpression.cpp index b6f6d630bb4..9470efc2b4c 100644 --- a/src/libs/cplusplus/ResolveExpression.cpp +++ b/src/libs/cplusplus/ResolveExpression.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/ResolveExpression.h b/src/libs/cplusplus/ResolveExpression.h index 79f843107cd..67ea6a7e651 100644 --- a/src/libs/cplusplus/ResolveExpression.h +++ b/src/libs/cplusplus/ResolveExpression.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/SimpleLexer.cpp b/src/libs/cplusplus/SimpleLexer.cpp index fc6f3460766..44115775890 100644 --- a/src/libs/cplusplus/SimpleLexer.cpp +++ b/src/libs/cplusplus/SimpleLexer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/SimpleLexer.h b/src/libs/cplusplus/SimpleLexer.h index a730b2d42a2..1eb4ab6c3bc 100644 --- a/src/libs/cplusplus/SimpleLexer.h +++ b/src/libs/cplusplus/SimpleLexer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/SnapshotSymbolVisitor.cpp b/src/libs/cplusplus/SnapshotSymbolVisitor.cpp index 1406d778beb..41c52bf2860 100644 --- a/src/libs/cplusplus/SnapshotSymbolVisitor.cpp +++ b/src/libs/cplusplus/SnapshotSymbolVisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/SnapshotSymbolVisitor.h b/src/libs/cplusplus/SnapshotSymbolVisitor.h index 3f2e1d162f8..cbbd624214b 100644 --- a/src/libs/cplusplus/SnapshotSymbolVisitor.h +++ b/src/libs/cplusplus/SnapshotSymbolVisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/SymbolNameVisitor.cpp b/src/libs/cplusplus/SymbolNameVisitor.cpp index cacbb69ea9a..ae721283db8 100644 --- a/src/libs/cplusplus/SymbolNameVisitor.cpp +++ b/src/libs/cplusplus/SymbolNameVisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/SymbolNameVisitor.h b/src/libs/cplusplus/SymbolNameVisitor.h index 57e8997583b..1bf0e400c7c 100644 --- a/src/libs/cplusplus/SymbolNameVisitor.h +++ b/src/libs/cplusplus/SymbolNameVisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/TypeOfExpression.cpp b/src/libs/cplusplus/TypeOfExpression.cpp index 01e9c8f7df7..d31567798dd 100644 --- a/src/libs/cplusplus/TypeOfExpression.cpp +++ b/src/libs/cplusplus/TypeOfExpression.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/TypeOfExpression.h b/src/libs/cplusplus/TypeOfExpression.h index 3df6814e12a..19aa81c1949 100644 --- a/src/libs/cplusplus/TypeOfExpression.h +++ b/src/libs/cplusplus/TypeOfExpression.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/TypePrettyPrinter.cpp b/src/libs/cplusplus/TypePrettyPrinter.cpp index 364edb66af9..ac3f62fb122 100644 --- a/src/libs/cplusplus/TypePrettyPrinter.cpp +++ b/src/libs/cplusplus/TypePrettyPrinter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/TypePrettyPrinter.h b/src/libs/cplusplus/TypePrettyPrinter.h index abd310b0715..c2a2dd77da9 100644 --- a/src/libs/cplusplus/TypePrettyPrinter.h +++ b/src/libs/cplusplus/TypePrettyPrinter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/findcdbbreakpoint.cpp b/src/libs/cplusplus/findcdbbreakpoint.cpp index e4f8724efbe..2a9cd85c257 100644 --- a/src/libs/cplusplus/findcdbbreakpoint.cpp +++ b/src/libs/cplusplus/findcdbbreakpoint.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/findcdbbreakpoint.h b/src/libs/cplusplus/findcdbbreakpoint.h index 7cc9ac6bda2..82b45c53815 100644 --- a/src/libs/cplusplus/findcdbbreakpoint.h +++ b/src/libs/cplusplus/findcdbbreakpoint.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/pp-cctype.h b/src/libs/cplusplus/pp-cctype.h index c9c8043b850..503a6a510f3 100644 --- a/src/libs/cplusplus/pp-cctype.h +++ b/src/libs/cplusplus/pp-cctype.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/pp-engine.cpp b/src/libs/cplusplus/pp-engine.cpp index 05a7a083d38..8197b7ef5a4 100644 --- a/src/libs/cplusplus/pp-engine.cpp +++ b/src/libs/cplusplus/pp-engine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/pp-engine.h b/src/libs/cplusplus/pp-engine.h index 8781b7ac19b..8ff8712cab4 100644 --- a/src/libs/cplusplus/pp-engine.h +++ b/src/libs/cplusplus/pp-engine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/pp-scanner.cpp b/src/libs/cplusplus/pp-scanner.cpp index 2b23a3e2289..51d5c5671d8 100644 --- a/src/libs/cplusplus/pp-scanner.cpp +++ b/src/libs/cplusplus/pp-scanner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/pp-scanner.h b/src/libs/cplusplus/pp-scanner.h index d80b379498f..8ccd84134a4 100644 --- a/src/libs/cplusplus/pp-scanner.h +++ b/src/libs/cplusplus/pp-scanner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/cplusplus/pp.h b/src/libs/cplusplus/pp.h index acd84456e06..b9f98f1ffd6 100644 --- a/src/libs/cplusplus/pp.h +++ b/src/libs/cplusplus/pp.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/extensionsystem_global.h b/src/libs/extensionsystem/extensionsystem_global.h index b7a710783a6..2f5f4857adf 100644 --- a/src/libs/extensionsystem/extensionsystem_global.h +++ b/src/libs/extensionsystem/extensionsystem_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/invoker.cpp b/src/libs/extensionsystem/invoker.cpp index 834a9e68bd7..7f7c9bd6d9e 100644 --- a/src/libs/extensionsystem/invoker.cpp +++ b/src/libs/extensionsystem/invoker.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/invoker.h b/src/libs/extensionsystem/invoker.h index 5eaf194bb7d..d272230eea9 100644 --- a/src/libs/extensionsystem/invoker.h +++ b/src/libs/extensionsystem/invoker.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/iplugin.cpp b/src/libs/extensionsystem/iplugin.cpp index e8670620684..5d144aaa18e 100644 --- a/src/libs/extensionsystem/iplugin.cpp +++ b/src/libs/extensionsystem/iplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/iplugin.h b/src/libs/extensionsystem/iplugin.h index 1b3e537b242..fc7b14b1af6 100644 --- a/src/libs/extensionsystem/iplugin.h +++ b/src/libs/extensionsystem/iplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/iplugin_p.h b/src/libs/extensionsystem/iplugin_p.h index 77d35df421b..ce3ceb4f00a 100644 --- a/src/libs/extensionsystem/iplugin_p.h +++ b/src/libs/extensionsystem/iplugin_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/optionsparser.cpp b/src/libs/extensionsystem/optionsparser.cpp index 00abdc57040..36714c3a1e9 100644 --- a/src/libs/extensionsystem/optionsparser.cpp +++ b/src/libs/extensionsystem/optionsparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/optionsparser.h b/src/libs/extensionsystem/optionsparser.h index 20af05db8ff..d415f128c48 100644 --- a/src/libs/extensionsystem/optionsparser.h +++ b/src/libs/extensionsystem/optionsparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/plugincollection.cpp b/src/libs/extensionsystem/plugincollection.cpp index a54801d07d2..45043dad440 100644 --- a/src/libs/extensionsystem/plugincollection.cpp +++ b/src/libs/extensionsystem/plugincollection.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/plugincollection.h b/src/libs/extensionsystem/plugincollection.h index 8cbf263bc83..23d5376c7df 100644 --- a/src/libs/extensionsystem/plugincollection.h +++ b/src/libs/extensionsystem/plugincollection.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/plugindetailsview.cpp b/src/libs/extensionsystem/plugindetailsview.cpp index 949c8d16c89..2cbcb0a7f44 100644 --- a/src/libs/extensionsystem/plugindetailsview.cpp +++ b/src/libs/extensionsystem/plugindetailsview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/plugindetailsview.h b/src/libs/extensionsystem/plugindetailsview.h index 5759a4a33f5..2109748dd6f 100644 --- a/src/libs/extensionsystem/plugindetailsview.h +++ b/src/libs/extensionsystem/plugindetailsview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginerroroverview.cpp b/src/libs/extensionsystem/pluginerroroverview.cpp index 84c44bf01db..52b95dccc68 100644 --- a/src/libs/extensionsystem/pluginerroroverview.cpp +++ b/src/libs/extensionsystem/pluginerroroverview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginerroroverview.h b/src/libs/extensionsystem/pluginerroroverview.h index 6aa2ee78993..d80af4bce78 100644 --- a/src/libs/extensionsystem/pluginerroroverview.h +++ b/src/libs/extensionsystem/pluginerroroverview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginerrorview.cpp b/src/libs/extensionsystem/pluginerrorview.cpp index e90cf11d83e..3c3170e0d24 100644 --- a/src/libs/extensionsystem/pluginerrorview.cpp +++ b/src/libs/extensionsystem/pluginerrorview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginerrorview.h b/src/libs/extensionsystem/pluginerrorview.h index e057d4ec06e..6fd3b003ce2 100644 --- a/src/libs/extensionsystem/pluginerrorview.h +++ b/src/libs/extensionsystem/pluginerrorview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginmanager.cpp b/src/libs/extensionsystem/pluginmanager.cpp index bbb6b2d930c..8e800cd1d6c 100644 --- a/src/libs/extensionsystem/pluginmanager.cpp +++ b/src/libs/extensionsystem/pluginmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginmanager.h b/src/libs/extensionsystem/pluginmanager.h index a00e2e0099d..1a199e53e34 100644 --- a/src/libs/extensionsystem/pluginmanager.h +++ b/src/libs/extensionsystem/pluginmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginmanager_p.h b/src/libs/extensionsystem/pluginmanager_p.h index 15e2521b572..b3f845aa66c 100644 --- a/src/libs/extensionsystem/pluginmanager_p.h +++ b/src/libs/extensionsystem/pluginmanager_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginspec.cpp b/src/libs/extensionsystem/pluginspec.cpp index dff461984e2..c29099465ee 100644 --- a/src/libs/extensionsystem/pluginspec.cpp +++ b/src/libs/extensionsystem/pluginspec.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginspec.h b/src/libs/extensionsystem/pluginspec.h index 53135b0cc44..15e561742d8 100644 --- a/src/libs/extensionsystem/pluginspec.h +++ b/src/libs/extensionsystem/pluginspec.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginspec_p.h b/src/libs/extensionsystem/pluginspec_p.h index 8c10b9aa8ef..f6944cf1371 100644 --- a/src/libs/extensionsystem/pluginspec_p.h +++ b/src/libs/extensionsystem/pluginspec_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginview.cpp b/src/libs/extensionsystem/pluginview.cpp index b8401fc568a..0e072647761 100644 --- a/src/libs/extensionsystem/pluginview.cpp +++ b/src/libs/extensionsystem/pluginview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/pluginview.h b/src/libs/extensionsystem/pluginview.h index bbe2574d096..4a4fd92a046 100644 --- a/src/libs/extensionsystem/pluginview.h +++ b/src/libs/extensionsystem/pluginview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/test/manual/pluginview/plugindialog.cpp b/src/libs/extensionsystem/test/manual/pluginview/plugindialog.cpp index f3d6964441a..d9588cdeb07 100644 --- a/src/libs/extensionsystem/test/manual/pluginview/plugindialog.cpp +++ b/src/libs/extensionsystem/test/manual/pluginview/plugindialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/test/manual/pluginview/plugindialog.h b/src/libs/extensionsystem/test/manual/pluginview/plugindialog.h index 0fa7b61c973..9be7ed44778 100644 --- a/src/libs/extensionsystem/test/manual/pluginview/plugindialog.h +++ b/src/libs/extensionsystem/test/manual/pluginview/plugindialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin1/plugin1.cpp b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin1/plugin1.cpp index ae1d817ba71..66f15256319 100644 --- a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin1/plugin1.cpp +++ b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin1/plugin1.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin1/plugin1.h b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin1/plugin1.h index 841b105c3fe..4bc7058a1b0 100644 --- a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin1/plugin1.h +++ b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin1/plugin1.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin2/plugin2.cpp b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin2/plugin2.cpp index 00deef2769c..74eca5c9059 100644 --- a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin2/plugin2.cpp +++ b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin2/plugin2.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin2/plugin2.h b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin2/plugin2.h index c570a8d0ee1..ae3eca56d79 100644 --- a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin2/plugin2.h +++ b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin2/plugin2.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin3/plugin3.cpp b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin3/plugin3.cpp index e7a9f260757..894e018561d 100644 --- a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin3/plugin3.cpp +++ b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin3/plugin3.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin3/plugin3.h b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin3/plugin3.h index f7d6eb38edf..003801c4ecd 100644 --- a/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin3/plugin3.h +++ b/src/libs/extensionsystem/test/manual/pluginview/plugins/plugin3/plugin3.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glsl.g b/src/libs/glsl/glsl.g index 3c7632ee03d..84b18ebf176 100644 --- a/src/libs/glsl/glsl.g +++ b/src/libs/glsl/glsl.g @@ -1,6 +1,6 @@ ----------------------------------------------------------------------------- -- --- Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +-- Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). -- Contact: http://www.qt-project.org/legal -- -- This file is part of Qt Creator. @@ -214,7 +214,7 @@ /: /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. @@ -421,7 +421,7 @@ private: /. /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glsl.h b/src/libs/glsl/glsl.h index 8c07e4afa79..c78ad287bb0 100644 --- a/src/libs/glsl/glsl.h +++ b/src/libs/glsl/glsl.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslast.cpp b/src/libs/glsl/glslast.cpp index 5cfedc7b80b..286a6251e07 100644 --- a/src/libs/glsl/glslast.cpp +++ b/src/libs/glsl/glslast.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslast.h b/src/libs/glsl/glslast.h index 479a9514d1f..e3ecef833e4 100644 --- a/src/libs/glsl/glslast.h +++ b/src/libs/glsl/glslast.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslastdump.cpp b/src/libs/glsl/glslastdump.cpp index 5b7c53c4ca5..fa28fb86246 100644 --- a/src/libs/glsl/glslastdump.cpp +++ b/src/libs/glsl/glslastdump.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslastdump.h b/src/libs/glsl/glslastdump.h index 8009bb8e434..64ce9c39bab 100644 --- a/src/libs/glsl/glslastdump.h +++ b/src/libs/glsl/glslastdump.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslastvisitor.cpp b/src/libs/glsl/glslastvisitor.cpp index d24d98afe31..1b94949e324 100644 --- a/src/libs/glsl/glslastvisitor.cpp +++ b/src/libs/glsl/glslastvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslastvisitor.h b/src/libs/glsl/glslastvisitor.h index cf1a2da7701..624ffa4cb14 100644 --- a/src/libs/glsl/glslastvisitor.h +++ b/src/libs/glsl/glslastvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslengine.cpp b/src/libs/glsl/glslengine.cpp index 043ce762327..b8c2e9e0a04 100644 --- a/src/libs/glsl/glslengine.cpp +++ b/src/libs/glsl/glslengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslengine.h b/src/libs/glsl/glslengine.h index 3441ed5b5c9..3a57d70d769 100644 --- a/src/libs/glsl/glslengine.h +++ b/src/libs/glsl/glslengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslkeywords.cpp b/src/libs/glsl/glslkeywords.cpp index d9bfdb6f757..0b5fc05f2a5 100644 --- a/src/libs/glsl/glslkeywords.cpp +++ b/src/libs/glsl/glslkeywords.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glsllexer.cpp b/src/libs/glsl/glsllexer.cpp index b5743d7bb5f..a2ed0d08482 100644 --- a/src/libs/glsl/glsllexer.cpp +++ b/src/libs/glsl/glsllexer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glsllexer.h b/src/libs/glsl/glsllexer.h index 97266eebc99..7e4401aa7af 100644 --- a/src/libs/glsl/glsllexer.h +++ b/src/libs/glsl/glsllexer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslmemorypool.cpp b/src/libs/glsl/glslmemorypool.cpp index 7a751209af4..f3f8f03324c 100644 --- a/src/libs/glsl/glslmemorypool.cpp +++ b/src/libs/glsl/glslmemorypool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslmemorypool.h b/src/libs/glsl/glslmemorypool.h index 366c8d79c0b..71e309d7028 100644 --- a/src/libs/glsl/glslmemorypool.h +++ b/src/libs/glsl/glslmemorypool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslparser.cpp b/src/libs/glsl/glslparser.cpp index 4d5fd6efcbd..a5bf641acd5 100644 --- a/src/libs/glsl/glslparser.cpp +++ b/src/libs/glsl/glslparser.cpp @@ -3,7 +3,7 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslparser.h b/src/libs/glsl/glslparser.h index 86d8dceacc4..3ca55890c91 100644 --- a/src/libs/glsl/glslparser.h +++ b/src/libs/glsl/glslparser.h @@ -3,7 +3,7 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslparsertable.cpp b/src/libs/glsl/glslparsertable.cpp index 13012b7e902..eca5c053fe9 100644 --- a/src/libs/glsl/glslparsertable.cpp +++ b/src/libs/glsl/glslparsertable.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslparsertable_p.h b/src/libs/glsl/glslparsertable_p.h index 1df542ee98f..5fe6d2aea9f 100644 --- a/src/libs/glsl/glslparsertable_p.h +++ b/src/libs/glsl/glslparsertable_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslsemantic.cpp b/src/libs/glsl/glslsemantic.cpp index a1523be479e..63b1959b24f 100644 --- a/src/libs/glsl/glslsemantic.cpp +++ b/src/libs/glsl/glslsemantic.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslsemantic.h b/src/libs/glsl/glslsemantic.h index dbfb6f01981..d59f9848f15 100644 --- a/src/libs/glsl/glslsemantic.h +++ b/src/libs/glsl/glslsemantic.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslsymbol.cpp b/src/libs/glsl/glslsymbol.cpp index 6602a1468b9..cd1b878c811 100644 --- a/src/libs/glsl/glslsymbol.cpp +++ b/src/libs/glsl/glslsymbol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslsymbol.h b/src/libs/glsl/glslsymbol.h index acce658c331..7875d9ac9d6 100644 --- a/src/libs/glsl/glslsymbol.h +++ b/src/libs/glsl/glslsymbol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslsymbols.cpp b/src/libs/glsl/glslsymbols.cpp index 5c4978f0212..a0e226f87df 100644 --- a/src/libs/glsl/glslsymbols.cpp +++ b/src/libs/glsl/glslsymbols.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glslsymbols.h b/src/libs/glsl/glslsymbols.h index 5be5caf4e1d..f2e2f8e8269 100644 --- a/src/libs/glsl/glslsymbols.h +++ b/src/libs/glsl/glslsymbols.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glsltype.cpp b/src/libs/glsl/glsltype.cpp index 3ef2f40f3af..29f8da0dfda 100644 --- a/src/libs/glsl/glsltype.cpp +++ b/src/libs/glsl/glsltype.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glsltype.h b/src/libs/glsl/glsltype.h index 293c4798b21..5ebc1a435e8 100644 --- a/src/libs/glsl/glsltype.h +++ b/src/libs/glsl/glsltype.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glsltypes.cpp b/src/libs/glsl/glsltypes.cpp index 1ac7222ac7f..fad83157ff9 100644 --- a/src/libs/glsl/glsltypes.cpp +++ b/src/libs/glsl/glsltypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/glsl/glsltypes.h b/src/libs/glsl/glsltypes.h index 198c5b9e218..f104160ce18 100644 --- a/src/libs/glsl/glsltypes.h +++ b/src/libs/glsl/glsltypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/languageutils/componentversion.cpp b/src/libs/languageutils/componentversion.cpp index 99aff4a5b8e..5f3d24962c9 100644 --- a/src/libs/languageutils/componentversion.cpp +++ b/src/libs/languageutils/componentversion.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/languageutils/componentversion.h b/src/libs/languageutils/componentversion.h index 7fe35e8792a..5b10780e711 100644 --- a/src/libs/languageutils/componentversion.h +++ b/src/libs/languageutils/componentversion.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/languageutils/fakemetaobject.cpp b/src/libs/languageutils/fakemetaobject.cpp index 980b69d16fb..aa3e2594f9e 100644 --- a/src/libs/languageutils/fakemetaobject.cpp +++ b/src/libs/languageutils/fakemetaobject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/languageutils/fakemetaobject.h b/src/libs/languageutils/fakemetaobject.h index ed485d9f622..dad33c598ae 100644 --- a/src/libs/languageutils/fakemetaobject.h +++ b/src/libs/languageutils/fakemetaobject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/languageutils/languageutils_global.h b/src/libs/languageutils/languageutils_global.h index 2ac70907c03..0db3db1f1a9 100644 --- a/src/libs/languageutils/languageutils_global.h +++ b/src/libs/languageutils/languageutils_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/baseenginedebugclient.cpp b/src/libs/qmldebug/baseenginedebugclient.cpp index fbd0f0753e1..6df1f4542bc 100644 --- a/src/libs/qmldebug/baseenginedebugclient.cpp +++ b/src/libs/qmldebug/baseenginedebugclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/baseenginedebugclient.h b/src/libs/qmldebug/baseenginedebugclient.h index b4a39090c47..67fc521048a 100644 --- a/src/libs/qmldebug/baseenginedebugclient.h +++ b/src/libs/qmldebug/baseenginedebugclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/basetoolsclient.cpp b/src/libs/qmldebug/basetoolsclient.cpp index 351a351e8a0..951d04bc4ec 100644 --- a/src/libs/qmldebug/basetoolsclient.cpp +++ b/src/libs/qmldebug/basetoolsclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/basetoolsclient.h b/src/libs/qmldebug/basetoolsclient.h index 9342118f5af..3eea5c7cae8 100644 --- a/src/libs/qmldebug/basetoolsclient.h +++ b/src/libs/qmldebug/basetoolsclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/declarativeenginedebugclient.cpp b/src/libs/qmldebug/declarativeenginedebugclient.cpp index 069e2975702..d6d6621e04d 100644 --- a/src/libs/qmldebug/declarativeenginedebugclient.cpp +++ b/src/libs/qmldebug/declarativeenginedebugclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/declarativeenginedebugclient.h b/src/libs/qmldebug/declarativeenginedebugclient.h index 3dc91025477..de9e043256b 100644 --- a/src/libs/qmldebug/declarativeenginedebugclient.h +++ b/src/libs/qmldebug/declarativeenginedebugclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/declarativeenginedebugclientv2.h b/src/libs/qmldebug/declarativeenginedebugclientv2.h index aeb2ef6ee24..1f06b4cc044 100644 --- a/src/libs/qmldebug/declarativeenginedebugclientv2.h +++ b/src/libs/qmldebug/declarativeenginedebugclientv2.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/declarativetoolsclient.cpp b/src/libs/qmldebug/declarativetoolsclient.cpp index ba540eeb6b7..98304b85dda 100644 --- a/src/libs/qmldebug/declarativetoolsclient.cpp +++ b/src/libs/qmldebug/declarativetoolsclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/declarativetoolsclient.h b/src/libs/qmldebug/declarativetoolsclient.h index 4f942639a9e..84a65cb969b 100644 --- a/src/libs/qmldebug/declarativetoolsclient.h +++ b/src/libs/qmldebug/declarativetoolsclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qdebugmessageclient.cpp b/src/libs/qmldebug/qdebugmessageclient.cpp index 8b9517bcf89..af9b3359be2 100644 --- a/src/libs/qmldebug/qdebugmessageclient.cpp +++ b/src/libs/qmldebug/qdebugmessageclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qdebugmessageclient.h b/src/libs/qmldebug/qdebugmessageclient.h index 60bf0769f5c..9848e5c549d 100644 --- a/src/libs/qmldebug/qdebugmessageclient.h +++ b/src/libs/qmldebug/qdebugmessageclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmldebug_global.h b/src/libs/qmldebug/qmldebug_global.h index 9d410835770..400dfdb8026 100644 --- a/src/libs/qmldebug/qmldebug_global.h +++ b/src/libs/qmldebug/qmldebug_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmldebugclient.cpp b/src/libs/qmldebug/qmldebugclient.cpp index a5b652842db..c689e1ed50b 100644 --- a/src/libs/qmldebug/qmldebugclient.cpp +++ b/src/libs/qmldebug/qmldebugclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmldebugclient.h b/src/libs/qmldebug/qmldebugclient.h index 84dada731d0..677c573312b 100644 --- a/src/libs/qmldebug/qmldebugclient.h +++ b/src/libs/qmldebug/qmldebugclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmldebugconstants.h b/src/libs/qmldebug/qmldebugconstants.h index 8f207a1af5b..3e83bc60080 100644 --- a/src/libs/qmldebug/qmldebugconstants.h +++ b/src/libs/qmldebug/qmldebugconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmlenginedebugclient.h b/src/libs/qmldebug/qmlenginedebugclient.h index 9d0fcf0ca4b..4d572c4d1ef 100644 --- a/src/libs/qmldebug/qmlenginedebugclient.h +++ b/src/libs/qmldebug/qmlenginedebugclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmloutputparser.cpp b/src/libs/qmldebug/qmloutputparser.cpp index 33a44a30863..0936e56ebed 100644 --- a/src/libs/qmldebug/qmloutputparser.cpp +++ b/src/libs/qmldebug/qmloutputparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmloutputparser.h b/src/libs/qmldebug/qmloutputparser.h index 8d394c789fc..025fa00a427 100644 --- a/src/libs/qmldebug/qmloutputparser.h +++ b/src/libs/qmldebug/qmloutputparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmlprofilereventlocation.h b/src/libs/qmldebug/qmlprofilereventlocation.h index 8190490654b..a237e73e20d 100644 --- a/src/libs/qmldebug/qmlprofilereventlocation.h +++ b/src/libs/qmldebug/qmlprofilereventlocation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmlprofilereventtypes.h b/src/libs/qmldebug/qmlprofilereventtypes.h index a5ece2928cb..f1ed21bfaf5 100644 --- a/src/libs/qmldebug/qmlprofilereventtypes.h +++ b/src/libs/qmldebug/qmlprofilereventtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmlprofilertraceclient.cpp b/src/libs/qmldebug/qmlprofilertraceclient.cpp index b0824ddfdbd..d37081e531e 100644 --- a/src/libs/qmldebug/qmlprofilertraceclient.cpp +++ b/src/libs/qmldebug/qmlprofilertraceclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmlprofilertraceclient.h b/src/libs/qmldebug/qmlprofilertraceclient.h index b8364c0ab09..8705207321b 100644 --- a/src/libs/qmldebug/qmlprofilertraceclient.h +++ b/src/libs/qmldebug/qmlprofilertraceclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmltoolsclient.cpp b/src/libs/qmldebug/qmltoolsclient.cpp index 12f876b2b8e..d6d857e9ea6 100644 --- a/src/libs/qmldebug/qmltoolsclient.cpp +++ b/src/libs/qmldebug/qmltoolsclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qmltoolsclient.h b/src/libs/qmldebug/qmltoolsclient.h index b153842da1e..ca70491449c 100644 --- a/src/libs/qmldebug/qmltoolsclient.h +++ b/src/libs/qmldebug/qmltoolsclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qpacketprotocol.cpp b/src/libs/qmldebug/qpacketprotocol.cpp index 97792c2491c..da4bd8cd7cd 100644 --- a/src/libs/qmldebug/qpacketprotocol.cpp +++ b/src/libs/qmldebug/qpacketprotocol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qpacketprotocol.h b/src/libs/qmldebug/qpacketprotocol.h index b1ce313809b..7c672d81e52 100644 --- a/src/libs/qmldebug/qpacketprotocol.h +++ b/src/libs/qmldebug/qpacketprotocol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qv8profilerclient.cpp b/src/libs/qmldebug/qv8profilerclient.cpp index f93335c4fe6..b4ff8396787 100644 --- a/src/libs/qmldebug/qv8profilerclient.cpp +++ b/src/libs/qmldebug/qv8profilerclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmldebug/qv8profilerclient.h b/src/libs/qmldebug/qv8profilerclient.h index 39e77bd98f6..1af1e8dcbec 100644 --- a/src/libs/qmldebug/qv8profilerclient.h +++ b/src/libs/qmldebug/qv8profilerclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/colorbox.cpp b/src/libs/qmleditorwidgets/colorbox.cpp index ca6aef689f4..2993cca24ee 100644 --- a/src/libs/qmleditorwidgets/colorbox.cpp +++ b/src/libs/qmleditorwidgets/colorbox.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/colorbox.h b/src/libs/qmleditorwidgets/colorbox.h index b33998a1255..b3fcb62346d 100644 --- a/src/libs/qmleditorwidgets/colorbox.h +++ b/src/libs/qmleditorwidgets/colorbox.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/colorbutton.cpp b/src/libs/qmleditorwidgets/colorbutton.cpp index 4ef410160f9..d67e79b8924 100644 --- a/src/libs/qmleditorwidgets/colorbutton.cpp +++ b/src/libs/qmleditorwidgets/colorbutton.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/colorbutton.h b/src/libs/qmleditorwidgets/colorbutton.h index 44357d1df9e..72ac6518639 100644 --- a/src/libs/qmleditorwidgets/colorbutton.h +++ b/src/libs/qmleditorwidgets/colorbutton.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/contextpanetextwidget.cpp b/src/libs/qmleditorwidgets/contextpanetextwidget.cpp index 153ad6095c8..03111ded8c4 100644 --- a/src/libs/qmleditorwidgets/contextpanetextwidget.cpp +++ b/src/libs/qmleditorwidgets/contextpanetextwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/contextpanetextwidget.h b/src/libs/qmleditorwidgets/contextpanetextwidget.h index 09ff5e8c26f..9b00717267c 100644 --- a/src/libs/qmleditorwidgets/contextpanetextwidget.h +++ b/src/libs/qmleditorwidgets/contextpanetextwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/contextpanewidget.cpp b/src/libs/qmleditorwidgets/contextpanewidget.cpp index 84fdb2177e4..bd6607cc945 100644 --- a/src/libs/qmleditorwidgets/contextpanewidget.cpp +++ b/src/libs/qmleditorwidgets/contextpanewidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/contextpanewidget.h b/src/libs/qmleditorwidgets/contextpanewidget.h index 22a445ffa05..5f6d0f190b2 100644 --- a/src/libs/qmleditorwidgets/contextpanewidget.h +++ b/src/libs/qmleditorwidgets/contextpanewidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/contextpanewidgetimage.cpp b/src/libs/qmleditorwidgets/contextpanewidgetimage.cpp index ab2a3b898f6..32064997529 100644 --- a/src/libs/qmleditorwidgets/contextpanewidgetimage.cpp +++ b/src/libs/qmleditorwidgets/contextpanewidgetimage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/contextpanewidgetimage.h b/src/libs/qmleditorwidgets/contextpanewidgetimage.h index 6a71909f5c5..136c6f2a2f4 100644 --- a/src/libs/qmleditorwidgets/contextpanewidgetimage.h +++ b/src/libs/qmleditorwidgets/contextpanewidgetimage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp b/src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp index 9fa4d2af1d2..ea04e98e911 100644 --- a/src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp +++ b/src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/contextpanewidgetrectangle.h b/src/libs/qmleditorwidgets/contextpanewidgetrectangle.h index 6d95ed01625..baa71fdd59f 100644 --- a/src/libs/qmleditorwidgets/contextpanewidgetrectangle.h +++ b/src/libs/qmleditorwidgets/contextpanewidgetrectangle.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/customcolordialog.cpp b/src/libs/qmleditorwidgets/customcolordialog.cpp index 784bab36cca..9f349ba2339 100644 --- a/src/libs/qmleditorwidgets/customcolordialog.cpp +++ b/src/libs/qmleditorwidgets/customcolordialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/customcolordialog.h b/src/libs/qmleditorwidgets/customcolordialog.h index a61ad7a8bdb..ddfb771478d 100644 --- a/src/libs/qmleditorwidgets/customcolordialog.h +++ b/src/libs/qmleditorwidgets/customcolordialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp b/src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp index 6d6508ca0a5..6ae6fe3a88e 100644 --- a/src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp +++ b/src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/easingpane/easingcontextpane.h b/src/libs/qmleditorwidgets/easingpane/easingcontextpane.h index 2c9316e1eba..68e3f5ffffb 100644 --- a/src/libs/qmleditorwidgets/easingpane/easingcontextpane.h +++ b/src/libs/qmleditorwidgets/easingpane/easingcontextpane.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/easingpane/easinggraph.cpp b/src/libs/qmleditorwidgets/easingpane/easinggraph.cpp index 9cfeb4e90f3..c3a0f28abb5 100644 --- a/src/libs/qmleditorwidgets/easingpane/easinggraph.cpp +++ b/src/libs/qmleditorwidgets/easingpane/easinggraph.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/easingpane/easinggraph.h b/src/libs/qmleditorwidgets/easingpane/easinggraph.h index 72531a47f45..c02b181442c 100644 --- a/src/libs/qmleditorwidgets/easingpane/easinggraph.h +++ b/src/libs/qmleditorwidgets/easingpane/easinggraph.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/filewidget.cpp b/src/libs/qmleditorwidgets/filewidget.cpp index 930f19d7ef6..5aa16390901 100644 --- a/src/libs/qmleditorwidgets/filewidget.cpp +++ b/src/libs/qmleditorwidgets/filewidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/filewidget.h b/src/libs/qmleditorwidgets/filewidget.h index dca23b64659..b8ac76d13ce 100644 --- a/src/libs/qmleditorwidgets/filewidget.h +++ b/src/libs/qmleditorwidgets/filewidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/fontsizespinbox.cpp b/src/libs/qmleditorwidgets/fontsizespinbox.cpp index dd536432238..acff7770859 100644 --- a/src/libs/qmleditorwidgets/fontsizespinbox.cpp +++ b/src/libs/qmleditorwidgets/fontsizespinbox.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/fontsizespinbox.h b/src/libs/qmleditorwidgets/fontsizespinbox.h index ab79a2cde93..b455bc8c256 100644 --- a/src/libs/qmleditorwidgets/fontsizespinbox.h +++ b/src/libs/qmleditorwidgets/fontsizespinbox.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/gradientline.cpp b/src/libs/qmleditorwidgets/gradientline.cpp index f55d53528ee..c00f6d30d7e 100644 --- a/src/libs/qmleditorwidgets/gradientline.cpp +++ b/src/libs/qmleditorwidgets/gradientline.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/gradientline.h b/src/libs/qmleditorwidgets/gradientline.h index 23245149675..55b6b3c5596 100644 --- a/src/libs/qmleditorwidgets/gradientline.h +++ b/src/libs/qmleditorwidgets/gradientline.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/huecontrol.cpp b/src/libs/qmleditorwidgets/huecontrol.cpp index fbc3f1cfd62..66feb1f092d 100644 --- a/src/libs/qmleditorwidgets/huecontrol.cpp +++ b/src/libs/qmleditorwidgets/huecontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/huecontrol.h b/src/libs/qmleditorwidgets/huecontrol.h index b0425d9a316..4792eaeae05 100644 --- a/src/libs/qmleditorwidgets/huecontrol.h +++ b/src/libs/qmleditorwidgets/huecontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmleditorwidgets/qmleditorwidgets_global.h b/src/libs/qmleditorwidgets/qmleditorwidgets_global.h index 4b24b40bce3..c469b8acf24 100644 --- a/src/libs/qmleditorwidgets/qmleditorwidgets_global.h +++ b/src/libs/qmleditorwidgets/qmleditorwidgets_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/consoleitem.cpp b/src/libs/qmljs/consoleitem.cpp index 60429e3da23..d2a7a741a4f 100644 --- a/src/libs/qmljs/consoleitem.cpp +++ b/src/libs/qmljs/consoleitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/consoleitem.h b/src/libs/qmljs/consoleitem.h index c1717df0b14..65673e04242 100644 --- a/src/libs/qmljs/consoleitem.h +++ b/src/libs/qmljs/consoleitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/consolemanagerinterface.cpp b/src/libs/qmljs/consolemanagerinterface.cpp index 5aa6848c36b..7f052f0c1cb 100644 --- a/src/libs/qmljs/consolemanagerinterface.cpp +++ b/src/libs/qmljs/consolemanagerinterface.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/consolemanagerinterface.h b/src/libs/qmljs/consolemanagerinterface.h index c24fd9c6ba6..967103534d4 100644 --- a/src/libs/qmljs/consolemanagerinterface.h +++ b/src/libs/qmljs/consolemanagerinterface.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/iscriptevaluator.h b/src/libs/qmljs/iscriptevaluator.h index 79bb071bcb2..2417eb76700 100644 --- a/src/libs/qmljs/iscriptevaluator.h +++ b/src/libs/qmljs/iscriptevaluator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/jsoncheck.cpp b/src/libs/qmljs/jsoncheck.cpp index d712b843df9..a2e9782017e 100644 --- a/src/libs/qmljs/jsoncheck.cpp +++ b/src/libs/qmljs/jsoncheck.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/jsoncheck.h b/src/libs/qmljs/jsoncheck.h index a6d7186bd0d..614a8d7e858 100644 --- a/src/libs/qmljs/jsoncheck.h +++ b/src/libs/qmljs/jsoncheck.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmldirparser.cpp b/src/libs/qmljs/parser/qmldirparser.cpp index f2d7cf41157..1e152a101c1 100644 --- a/src/libs/qmljs/parser/qmldirparser.cpp +++ b/src/libs/qmljs/parser/qmldirparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmldirparser_p.h b/src/libs/qmljs/parser/qmldirparser_p.h index 12f74e0fac1..e6056b526f2 100644 --- a/src/libs/qmljs/parser/qmldirparser_p.h +++ b/src/libs/qmljs/parser/qmldirparser_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmlerror.cpp b/src/libs/qmljs/parser/qmlerror.cpp index 7c155cfcb43..2f152bdbbd1 100644 --- a/src/libs/qmljs/parser/qmlerror.cpp +++ b/src/libs/qmljs/parser/qmlerror.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmlerror.h b/src/libs/qmljs/parser/qmlerror.h index 675608062c6..3784b2e915c 100644 --- a/src/libs/qmljs/parser/qmlerror.h +++ b/src/libs/qmljs/parser/qmlerror.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljs.g b/src/libs/qmljs/parser/qmljs.g index 876ec193594..3231b374331 100644 --- a/src/libs/qmljs/parser/qmljs.g +++ b/src/libs/qmljs/parser/qmljs.g @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------- -- --- Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +-- Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). -- Contact: http://www.qt-project.org/legal -- -- This file is part of the QtQml module of the Qt Toolkit. @@ -89,7 +89,7 @@ /./**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. @@ -142,7 +142,7 @@ /:/**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/src/libs/qmljs/parser/qmljsast.cpp b/src/libs/qmljs/parser/qmljsast.cpp index fc4d8856307..6f749e06329 100644 --- a/src/libs/qmljs/parser/qmljsast.cpp +++ b/src/libs/qmljs/parser/qmljsast.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsast_p.h b/src/libs/qmljs/parser/qmljsast_p.h index eb03b8c8f6a..f96913db487 100644 --- a/src/libs/qmljs/parser/qmljsast_p.h +++ b/src/libs/qmljs/parser/qmljsast_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsastfwd_p.h b/src/libs/qmljs/parser/qmljsastfwd_p.h index 05f7c4acb03..49f036a6d86 100644 --- a/src/libs/qmljs/parser/qmljsastfwd_p.h +++ b/src/libs/qmljs/parser/qmljsastfwd_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsastvisitor.cpp b/src/libs/qmljs/parser/qmljsastvisitor.cpp index c11c63990c4..bc2e2931649 100644 --- a/src/libs/qmljs/parser/qmljsastvisitor.cpp +++ b/src/libs/qmljs/parser/qmljsastvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsastvisitor_p.h b/src/libs/qmljs/parser/qmljsastvisitor_p.h index cc4ff897cfc..132d472db9d 100644 --- a/src/libs/qmljs/parser/qmljsastvisitor_p.h +++ b/src/libs/qmljs/parser/qmljsastvisitor_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsengine_p.cpp b/src/libs/qmljs/parser/qmljsengine_p.cpp index e1d28cfd6b2..10fc3d10e27 100644 --- a/src/libs/qmljs/parser/qmljsengine_p.cpp +++ b/src/libs/qmljs/parser/qmljsengine_p.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsengine_p.h b/src/libs/qmljs/parser/qmljsengine_p.h index e266491d4d4..29b69d1d7ad 100644 --- a/src/libs/qmljs/parser/qmljsengine_p.h +++ b/src/libs/qmljs/parser/qmljsengine_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsglobal_p.h b/src/libs/qmljs/parser/qmljsglobal_p.h index bfd3dfda745..69a191fc736 100644 --- a/src/libs/qmljs/parser/qmljsglobal_p.h +++ b/src/libs/qmljs/parser/qmljsglobal_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsgrammar.cpp b/src/libs/qmljs/parser/qmljsgrammar.cpp index d74297d6cfc..eff2f0fdc15 100644 --- a/src/libs/qmljs/parser/qmljsgrammar.cpp +++ b/src/libs/qmljs/parser/qmljsgrammar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsgrammar_p.h b/src/libs/qmljs/parser/qmljsgrammar_p.h index c9e627260a8..263f980f1e9 100644 --- a/src/libs/qmljs/parser/qmljsgrammar_p.h +++ b/src/libs/qmljs/parser/qmljsgrammar_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljskeywords_p.h b/src/libs/qmljs/parser/qmljskeywords_p.h index ae7e9451779..b2a54e104ee 100644 --- a/src/libs/qmljs/parser/qmljskeywords_p.h +++ b/src/libs/qmljs/parser/qmljskeywords_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljslexer.cpp b/src/libs/qmljs/parser/qmljslexer.cpp index 8f93e30063e..036be75cf3f 100644 --- a/src/libs/qmljs/parser/qmljslexer.cpp +++ b/src/libs/qmljs/parser/qmljslexer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljslexer_p.h b/src/libs/qmljs/parser/qmljslexer_p.h index 02e16d2c684..dd32b1afd1d 100644 --- a/src/libs/qmljs/parser/qmljslexer_p.h +++ b/src/libs/qmljs/parser/qmljslexer_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsmemorypool_p.h b/src/libs/qmljs/parser/qmljsmemorypool_p.h index 97cc52b7855..acd939fc50b 100644 --- a/src/libs/qmljs/parser/qmljsmemorypool_p.h +++ b/src/libs/qmljs/parser/qmljsmemorypool_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsparser.cpp b/src/libs/qmljs/parser/qmljsparser.cpp index 00080ef53b0..e016b915f03 100644 --- a/src/libs/qmljs/parser/qmljsparser.cpp +++ b/src/libs/qmljs/parser/qmljsparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/parser/qmljsparser_p.h b/src/libs/qmljs/parser/qmljsparser_p.h index d5204310b5a..48706a7b38d 100644 --- a/src/libs/qmljs/parser/qmljsparser_p.h +++ b/src/libs/qmljs/parser/qmljsparser_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/persistenttrie.cpp b/src/libs/qmljs/persistenttrie.cpp index 521d90f31cf..0b3ac10c279 100644 --- a/src/libs/qmljs/persistenttrie.cpp +++ b/src/libs/qmljs/persistenttrie.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/persistenttrie.h b/src/libs/qmljs/persistenttrie.h index 22666ddb894..d3f60ae80e3 100644 --- a/src/libs/qmljs/persistenttrie.h +++ b/src/libs/qmljs/persistenttrie.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljs_global.h b/src/libs/qmljs/qmljs_global.h index e23caca44c5..78449df0ae2 100644 --- a/src/libs/qmljs/qmljs_global.h +++ b/src/libs/qmljs/qmljs_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsbind.cpp b/src/libs/qmljs/qmljsbind.cpp index 28c5a76c262..af8b8a74af9 100644 --- a/src/libs/qmljs/qmljsbind.cpp +++ b/src/libs/qmljs/qmljsbind.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsbind.h b/src/libs/qmljs/qmljsbind.h index 24596cd2976..a5179ae12a0 100644 --- a/src/libs/qmljs/qmljsbind.h +++ b/src/libs/qmljs/qmljsbind.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsbundle.cpp b/src/libs/qmljs/qmljsbundle.cpp index 198808a9f29..28b1d951d39 100644 --- a/src/libs/qmljs/qmljsbundle.cpp +++ b/src/libs/qmljs/qmljsbundle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsbundle.h b/src/libs/qmljs/qmljsbundle.h index 3357ee5a0c9..a348bde0a5d 100644 --- a/src/libs/qmljs/qmljsbundle.h +++ b/src/libs/qmljs/qmljsbundle.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljscheck.cpp b/src/libs/qmljs/qmljscheck.cpp index e693799b32a..4c68ea3a693 100644 --- a/src/libs/qmljs/qmljscheck.cpp +++ b/src/libs/qmljs/qmljscheck.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljscheck.h b/src/libs/qmljs/qmljscheck.h index 6acae1d206c..c42a6f446b4 100644 --- a/src/libs/qmljs/qmljscheck.h +++ b/src/libs/qmljs/qmljscheck.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljscodeformatter.cpp b/src/libs/qmljs/qmljscodeformatter.cpp index fb6e6fa55a6..e10dfc1185d 100644 --- a/src/libs/qmljs/qmljscodeformatter.cpp +++ b/src/libs/qmljs/qmljscodeformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljscodeformatter.h b/src/libs/qmljs/qmljscodeformatter.h index 4c0c7ecc9fc..b286c90fc18 100644 --- a/src/libs/qmljs/qmljscodeformatter.h +++ b/src/libs/qmljs/qmljscodeformatter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljscompletioncontextfinder.cpp b/src/libs/qmljs/qmljscompletioncontextfinder.cpp index 2142cd05ebd..36275b5af6d 100644 --- a/src/libs/qmljs/qmljscompletioncontextfinder.cpp +++ b/src/libs/qmljs/qmljscompletioncontextfinder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljscompletioncontextfinder.h b/src/libs/qmljs/qmljscompletioncontextfinder.h index 577608af170..26a6c388126 100644 --- a/src/libs/qmljs/qmljscompletioncontextfinder.h +++ b/src/libs/qmljs/qmljscompletioncontextfinder.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsconstants.h b/src/libs/qmljs/qmljsconstants.h index 6f0f4c7fadf..1df423b8a34 100644 --- a/src/libs/qmljs/qmljsconstants.h +++ b/src/libs/qmljs/qmljsconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljscontext.cpp b/src/libs/qmljs/qmljscontext.cpp index c04206c1825..494fbf1226b 100644 --- a/src/libs/qmljs/qmljscontext.cpp +++ b/src/libs/qmljs/qmljscontext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljscontext.h b/src/libs/qmljs/qmljscontext.h index ad3d8ed1187..c06332f3229 100644 --- a/src/libs/qmljs/qmljscontext.h +++ b/src/libs/qmljs/qmljscontext.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsdelta.cpp b/src/libs/qmljs/qmljsdelta.cpp index 430da229dfc..f4be1cb0ebc 100644 --- a/src/libs/qmljs/qmljsdelta.cpp +++ b/src/libs/qmljs/qmljsdelta.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsdelta.h b/src/libs/qmljs/qmljsdelta.h index de5c21b274a..34ef319da33 100644 --- a/src/libs/qmljs/qmljsdelta.h +++ b/src/libs/qmljs/qmljsdelta.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsdocument.cpp b/src/libs/qmljs/qmljsdocument.cpp index 68fb5eadd53..cf8a92473a1 100644 --- a/src/libs/qmljs/qmljsdocument.cpp +++ b/src/libs/qmljs/qmljsdocument.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsdocument.h b/src/libs/qmljs/qmljsdocument.h index 59906c354ec..5065137bea9 100644 --- a/src/libs/qmljs/qmljsdocument.h +++ b/src/libs/qmljs/qmljsdocument.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsevaluate.cpp b/src/libs/qmljs/qmljsevaluate.cpp index 0f0564f2186..e699cb42eab 100644 --- a/src/libs/qmljs/qmljsevaluate.cpp +++ b/src/libs/qmljs/qmljsevaluate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsevaluate.h b/src/libs/qmljs/qmljsevaluate.h index 72e51fa8ddc..a9dba95673d 100644 --- a/src/libs/qmljs/qmljsevaluate.h +++ b/src/libs/qmljs/qmljsevaluate.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsicons.cpp b/src/libs/qmljs/qmljsicons.cpp index a566cfea77a..20ee30e1d62 100644 --- a/src/libs/qmljs/qmljsicons.cpp +++ b/src/libs/qmljs/qmljsicons.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsicons.h b/src/libs/qmljs/qmljsicons.h index 5a63467e14b..b8fe1e034bd 100644 --- a/src/libs/qmljs/qmljsicons.h +++ b/src/libs/qmljs/qmljsicons.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsicontextpane.h b/src/libs/qmljs/qmljsicontextpane.h index cecfcdb4693..3a71bd889ed 100644 --- a/src/libs/qmljs/qmljsicontextpane.h +++ b/src/libs/qmljs/qmljsicontextpane.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsimportdependencies.cpp b/src/libs/qmljs/qmljsimportdependencies.cpp index 9dc0e53f54b..e5c58dc8492 100644 --- a/src/libs/qmljs/qmljsimportdependencies.cpp +++ b/src/libs/qmljs/qmljsimportdependencies.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsimportdependencies.h b/src/libs/qmljs/qmljsimportdependencies.h index 1e27ef0626a..3894fa230e5 100644 --- a/src/libs/qmljs/qmljsimportdependencies.h +++ b/src/libs/qmljs/qmljsimportdependencies.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsindenter.cpp b/src/libs/qmljs/qmljsindenter.cpp index 834c897f1fb..87af800c231 100644 --- a/src/libs/qmljs/qmljsindenter.cpp +++ b/src/libs/qmljs/qmljsindenter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsindenter.h b/src/libs/qmljs/qmljsindenter.h index 6fdde571724..5acea2a85a1 100644 --- a/src/libs/qmljs/qmljsindenter.h +++ b/src/libs/qmljs/qmljsindenter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsinterpreter.cpp b/src/libs/qmljs/qmljsinterpreter.cpp index bb36c1b25c1..efb606de283 100644 --- a/src/libs/qmljs/qmljsinterpreter.cpp +++ b/src/libs/qmljs/qmljsinterpreter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsinterpreter.h b/src/libs/qmljs/qmljsinterpreter.h index ef5577a90cd..56d9686433f 100644 --- a/src/libs/qmljs/qmljsinterpreter.h +++ b/src/libs/qmljs/qmljsinterpreter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljslineinfo.cpp b/src/libs/qmljs/qmljslineinfo.cpp index b33a90d0c21..c475cfe5963 100644 --- a/src/libs/qmljs/qmljslineinfo.cpp +++ b/src/libs/qmljs/qmljslineinfo.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljslineinfo.h b/src/libs/qmljs/qmljslineinfo.h index b000b68e94b..ce16535496a 100644 --- a/src/libs/qmljs/qmljslineinfo.h +++ b/src/libs/qmljs/qmljslineinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljslink.cpp b/src/libs/qmljs/qmljslink.cpp index 01100454bc8..fe204b88143 100644 --- a/src/libs/qmljs/qmljslink.cpp +++ b/src/libs/qmljs/qmljslink.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljslink.h b/src/libs/qmljs/qmljslink.h index dbb2904e0d2..c6d996836b8 100644 --- a/src/libs/qmljs/qmljslink.h +++ b/src/libs/qmljs/qmljslink.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsmodelmanagerinterface.cpp b/src/libs/qmljs/qmljsmodelmanagerinterface.cpp index 34b2eeb8560..9f126727977 100644 --- a/src/libs/qmljs/qmljsmodelmanagerinterface.cpp +++ b/src/libs/qmljs/qmljsmodelmanagerinterface.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsmodelmanagerinterface.h b/src/libs/qmljs/qmljsmodelmanagerinterface.h index 45a7c879919..c411d955f5a 100644 --- a/src/libs/qmljs/qmljsmodelmanagerinterface.h +++ b/src/libs/qmljs/qmljsmodelmanagerinterface.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljspropertyreader.cpp b/src/libs/qmljs/qmljspropertyreader.cpp index 82e3d69d8af..caf85e59b2d 100644 --- a/src/libs/qmljs/qmljspropertyreader.cpp +++ b/src/libs/qmljs/qmljspropertyreader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljspropertyreader.h b/src/libs/qmljs/qmljspropertyreader.h index de836d089bc..d20d08df7fe 100644 --- a/src/libs/qmljs/qmljspropertyreader.h +++ b/src/libs/qmljs/qmljspropertyreader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsqrcparser.cpp b/src/libs/qmljs/qmljsqrcparser.cpp index 927c0309dcc..701c62dac36 100644 --- a/src/libs/qmljs/qmljsqrcparser.cpp +++ b/src/libs/qmljs/qmljsqrcparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsqrcparser.h b/src/libs/qmljs/qmljsqrcparser.h index e25baa2c73b..925b2c085c4 100644 --- a/src/libs/qmljs/qmljsqrcparser.h +++ b/src/libs/qmljs/qmljsqrcparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsreformatter.cpp b/src/libs/qmljs/qmljsreformatter.cpp index d940cd1c65c..a35f1320c04 100644 --- a/src/libs/qmljs/qmljsreformatter.cpp +++ b/src/libs/qmljs/qmljsreformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsreformatter.h b/src/libs/qmljs/qmljsreformatter.h index e0928c1db49..ddc7dcfa9c3 100644 --- a/src/libs/qmljs/qmljsreformatter.h +++ b/src/libs/qmljs/qmljsreformatter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsrewriter.cpp b/src/libs/qmljs/qmljsrewriter.cpp index 012bad73ee1..af1fc3a753f 100644 --- a/src/libs/qmljs/qmljsrewriter.cpp +++ b/src/libs/qmljs/qmljsrewriter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsrewriter.h b/src/libs/qmljs/qmljsrewriter.h index a0a19a2e37a..91bab2ed0f7 100644 --- a/src/libs/qmljs/qmljsrewriter.h +++ b/src/libs/qmljs/qmljsrewriter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsscanner.cpp b/src/libs/qmljs/qmljsscanner.cpp index 33b42cde453..d4510f9190f 100644 --- a/src/libs/qmljs/qmljsscanner.cpp +++ b/src/libs/qmljs/qmljsscanner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsscanner.h b/src/libs/qmljs/qmljsscanner.h index 6c84cc61add..0efb5dd9e43 100644 --- a/src/libs/qmljs/qmljsscanner.h +++ b/src/libs/qmljs/qmljsscanner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsscopeastpath.cpp b/src/libs/qmljs/qmljsscopeastpath.cpp index 7826fe3b520..26b263e1078 100644 --- a/src/libs/qmljs/qmljsscopeastpath.cpp +++ b/src/libs/qmljs/qmljsscopeastpath.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsscopeastpath.h b/src/libs/qmljs/qmljsscopeastpath.h index 10687e2b3f2..0e0e9623c10 100644 --- a/src/libs/qmljs/qmljsscopeastpath.h +++ b/src/libs/qmljs/qmljsscopeastpath.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsscopebuilder.cpp b/src/libs/qmljs/qmljsscopebuilder.cpp index 2178132498e..43b0d80299f 100644 --- a/src/libs/qmljs/qmljsscopebuilder.cpp +++ b/src/libs/qmljs/qmljsscopebuilder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsscopebuilder.h b/src/libs/qmljs/qmljsscopebuilder.h index 5d73d11b0d2..ad95ce79579 100644 --- a/src/libs/qmljs/qmljsscopebuilder.h +++ b/src/libs/qmljs/qmljsscopebuilder.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsscopechain.cpp b/src/libs/qmljs/qmljsscopechain.cpp index 41cb3fb3567..fd57abace93 100644 --- a/src/libs/qmljs/qmljsscopechain.cpp +++ b/src/libs/qmljs/qmljsscopechain.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsscopechain.h b/src/libs/qmljs/qmljsscopechain.h index 3bafef7fdbf..362ceb12f75 100644 --- a/src/libs/qmljs/qmljsscopechain.h +++ b/src/libs/qmljs/qmljsscopechain.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljssimplereader.cpp b/src/libs/qmljs/qmljssimplereader.cpp index 8342bc7037b..2a12829b56d 100644 --- a/src/libs/qmljs/qmljssimplereader.cpp +++ b/src/libs/qmljs/qmljssimplereader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljssimplereader.h b/src/libs/qmljs/qmljssimplereader.h index 8dade8cf973..f42d16844a4 100644 --- a/src/libs/qmljs/qmljssimplereader.h +++ b/src/libs/qmljs/qmljssimplereader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsstaticanalysismessage.cpp b/src/libs/qmljs/qmljsstaticanalysismessage.cpp index 235639ce32c..3675b7363af 100644 --- a/src/libs/qmljs/qmljsstaticanalysismessage.cpp +++ b/src/libs/qmljs/qmljsstaticanalysismessage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsstaticanalysismessage.h b/src/libs/qmljs/qmljsstaticanalysismessage.h index 1b1d00980e5..5d8eb503be2 100644 --- a/src/libs/qmljs/qmljsstaticanalysismessage.h +++ b/src/libs/qmljs/qmljsstaticanalysismessage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljstypedescriptionreader.cpp b/src/libs/qmljs/qmljstypedescriptionreader.cpp index 695ef5b5c97..a41108e542b 100644 --- a/src/libs/qmljs/qmljstypedescriptionreader.cpp +++ b/src/libs/qmljs/qmljstypedescriptionreader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljstypedescriptionreader.h b/src/libs/qmljs/qmljstypedescriptionreader.h index 3231b98f016..4660dfb23ef 100644 --- a/src/libs/qmljs/qmljstypedescriptionreader.h +++ b/src/libs/qmljs/qmljstypedescriptionreader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsutils.cpp b/src/libs/qmljs/qmljsutils.cpp index 764a5c0f486..c7fbd389835 100644 --- a/src/libs/qmljs/qmljsutils.cpp +++ b/src/libs/qmljs/qmljsutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsutils.h b/src/libs/qmljs/qmljsutils.h index ab689ae9bd9..4bc9e7bab3a 100644 --- a/src/libs/qmljs/qmljsutils.h +++ b/src/libs/qmljs/qmljsutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsvalueowner.cpp b/src/libs/qmljs/qmljsvalueowner.cpp index ec8853a22a9..46b3369b14b 100644 --- a/src/libs/qmljs/qmljsvalueowner.cpp +++ b/src/libs/qmljs/qmljsvalueowner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsvalueowner.h b/src/libs/qmljs/qmljsvalueowner.h index 5eee1d2a849..022b15a85f0 100644 --- a/src/libs/qmljs/qmljsvalueowner.h +++ b/src/libs/qmljs/qmljsvalueowner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsviewercontext.cpp b/src/libs/qmljs/qmljsviewercontext.cpp index 06f5dd1806f..3a7e7c945e5 100644 --- a/src/libs/qmljs/qmljsviewercontext.cpp +++ b/src/libs/qmljs/qmljsviewercontext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qmljs/qmljsviewercontext.h b/src/libs/qmljs/qmljsviewercontext.h index 97620b5353e..32a93e9c959 100644 --- a/src/libs/qmljs/qmljsviewercontext.h +++ b/src/libs/qmljs/qmljsviewercontext.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/base64.cpp b/src/libs/qtcreatorcdbext/base64.cpp index 9f90ce16a90..f1158cfd69d 100644 --- a/src/libs/qtcreatorcdbext/base64.cpp +++ b/src/libs/qtcreatorcdbext/base64.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/base64.h b/src/libs/qtcreatorcdbext/base64.h index e4c73982aeb..c0f128667e9 100644 --- a/src/libs/qtcreatorcdbext/base64.h +++ b/src/libs/qtcreatorcdbext/base64.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/common.cpp b/src/libs/qtcreatorcdbext/common.cpp index 5df465f1288..cca103daca4 100644 --- a/src/libs/qtcreatorcdbext/common.cpp +++ b/src/libs/qtcreatorcdbext/common.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/common.h b/src/libs/qtcreatorcdbext/common.h index b87dd7a8e71..5a5f2997ac7 100644 --- a/src/libs/qtcreatorcdbext/common.h +++ b/src/libs/qtcreatorcdbext/common.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/containers.cpp b/src/libs/qtcreatorcdbext/containers.cpp index 8fbd64f0a50..40484fbf24f 100644 --- a/src/libs/qtcreatorcdbext/containers.cpp +++ b/src/libs/qtcreatorcdbext/containers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/containers.h b/src/libs/qtcreatorcdbext/containers.h index 1d44c0ed8b5..9d275a6ae74 100644 --- a/src/libs/qtcreatorcdbext/containers.h +++ b/src/libs/qtcreatorcdbext/containers.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/eventcallback.cpp b/src/libs/qtcreatorcdbext/eventcallback.cpp index ff261b5c964..4b82a632cb5 100644 --- a/src/libs/qtcreatorcdbext/eventcallback.cpp +++ b/src/libs/qtcreatorcdbext/eventcallback.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/eventcallback.h b/src/libs/qtcreatorcdbext/eventcallback.h index 59e8b1f48cd..d23f2e3d944 100644 --- a/src/libs/qtcreatorcdbext/eventcallback.h +++ b/src/libs/qtcreatorcdbext/eventcallback.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/extensioncontext.cpp b/src/libs/qtcreatorcdbext/extensioncontext.cpp index 3aab10b07e3..7791b1e6353 100644 --- a/src/libs/qtcreatorcdbext/extensioncontext.cpp +++ b/src/libs/qtcreatorcdbext/extensioncontext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/extensioncontext.h b/src/libs/qtcreatorcdbext/extensioncontext.h index 985f6a2ed0c..60c9506b38c 100644 --- a/src/libs/qtcreatorcdbext/extensioncontext.h +++ b/src/libs/qtcreatorcdbext/extensioncontext.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/gdbmihelpers.cpp b/src/libs/qtcreatorcdbext/gdbmihelpers.cpp index 5501051b220..e4577958fbd 100644 --- a/src/libs/qtcreatorcdbext/gdbmihelpers.cpp +++ b/src/libs/qtcreatorcdbext/gdbmihelpers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/gdbmihelpers.h b/src/libs/qtcreatorcdbext/gdbmihelpers.h index ad589e9a64e..3200c463332 100644 --- a/src/libs/qtcreatorcdbext/gdbmihelpers.h +++ b/src/libs/qtcreatorcdbext/gdbmihelpers.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/iinterfacepointer.h b/src/libs/qtcreatorcdbext/iinterfacepointer.h index 80e75e1617d..e73c405d73a 100644 --- a/src/libs/qtcreatorcdbext/iinterfacepointer.h +++ b/src/libs/qtcreatorcdbext/iinterfacepointer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/knowntype.h b/src/libs/qtcreatorcdbext/knowntype.h index 7604d25efea..31882025ca2 100644 --- a/src/libs/qtcreatorcdbext/knowntype.h +++ b/src/libs/qtcreatorcdbext/knowntype.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/outputcallback.cpp b/src/libs/qtcreatorcdbext/outputcallback.cpp index 0c97f9ef383..f5a53b93965 100644 --- a/src/libs/qtcreatorcdbext/outputcallback.cpp +++ b/src/libs/qtcreatorcdbext/outputcallback.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/outputcallback.h b/src/libs/qtcreatorcdbext/outputcallback.h index 2a4e214c956..55252159aed 100644 --- a/src/libs/qtcreatorcdbext/outputcallback.h +++ b/src/libs/qtcreatorcdbext/outputcallback.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/qtcreatorcdbextension.cpp b/src/libs/qtcreatorcdbext/qtcreatorcdbextension.cpp index 0a16b230cb6..16fd364cee3 100644 --- a/src/libs/qtcreatorcdbext/qtcreatorcdbextension.cpp +++ b/src/libs/qtcreatorcdbext/qtcreatorcdbextension.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/stringutils.cpp b/src/libs/qtcreatorcdbext/stringutils.cpp index e8801c4a10a..362c2c9c613 100644 --- a/src/libs/qtcreatorcdbext/stringutils.cpp +++ b/src/libs/qtcreatorcdbext/stringutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/stringutils.h b/src/libs/qtcreatorcdbext/stringutils.h index 5142f776ef2..6e8d2da3a60 100644 --- a/src/libs/qtcreatorcdbext/stringutils.h +++ b/src/libs/qtcreatorcdbext/stringutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/symbolgroup.cpp b/src/libs/qtcreatorcdbext/symbolgroup.cpp index 7d284841af4..7bdfd5d53cf 100644 --- a/src/libs/qtcreatorcdbext/symbolgroup.cpp +++ b/src/libs/qtcreatorcdbext/symbolgroup.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/symbolgroup.h b/src/libs/qtcreatorcdbext/symbolgroup.h index 648696308c3..6a42136f067 100644 --- a/src/libs/qtcreatorcdbext/symbolgroup.h +++ b/src/libs/qtcreatorcdbext/symbolgroup.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/symbolgroupnode.cpp b/src/libs/qtcreatorcdbext/symbolgroupnode.cpp index f6597adb91f..20db155c939 100644 --- a/src/libs/qtcreatorcdbext/symbolgroupnode.cpp +++ b/src/libs/qtcreatorcdbext/symbolgroupnode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/symbolgroupnode.h b/src/libs/qtcreatorcdbext/symbolgroupnode.h index 9d4cacba519..e428b4228fe 100644 --- a/src/libs/qtcreatorcdbext/symbolgroupnode.h +++ b/src/libs/qtcreatorcdbext/symbolgroupnode.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/symbolgroupvalue.cpp b/src/libs/qtcreatorcdbext/symbolgroupvalue.cpp index 7cc61ed36bc..1514d768b9d 100644 --- a/src/libs/qtcreatorcdbext/symbolgroupvalue.cpp +++ b/src/libs/qtcreatorcdbext/symbolgroupvalue.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/qtcreatorcdbext/symbolgroupvalue.h b/src/libs/qtcreatorcdbext/symbolgroupvalue.h index 042b1c72fd6..5811da9e91e 100644 --- a/src/libs/qtcreatorcdbext/symbolgroupvalue.h +++ b/src/libs/qtcreatorcdbext/symbolgroupvalue.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpchannel.cpp b/src/libs/ssh/sftpchannel.cpp index 94ce5578b6f..39ba41bb668 100644 --- a/src/libs/ssh/sftpchannel.cpp +++ b/src/libs/ssh/sftpchannel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpchannel.h b/src/libs/ssh/sftpchannel.h index 7f16393fc2d..5d698427f51 100644 --- a/src/libs/ssh/sftpchannel.h +++ b/src/libs/ssh/sftpchannel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpchannel_p.h b/src/libs/ssh/sftpchannel_p.h index c17dbc45781..5422358c0d3 100644 --- a/src/libs/ssh/sftpchannel_p.h +++ b/src/libs/ssh/sftpchannel_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpdefs.cpp b/src/libs/ssh/sftpdefs.cpp index ad0d58304c8..132f613b91e 100644 --- a/src/libs/ssh/sftpdefs.cpp +++ b/src/libs/ssh/sftpdefs.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpdefs.h b/src/libs/ssh/sftpdefs.h index 64536156fad..2abd42b3415 100644 --- a/src/libs/ssh/sftpdefs.h +++ b/src/libs/ssh/sftpdefs.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpfilesystemmodel.cpp b/src/libs/ssh/sftpfilesystemmodel.cpp index d4f7ead25f1..3452a9186ff 100644 --- a/src/libs/ssh/sftpfilesystemmodel.cpp +++ b/src/libs/ssh/sftpfilesystemmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpfilesystemmodel.h b/src/libs/ssh/sftpfilesystemmodel.h index 247bd329069..0de34b74c81 100644 --- a/src/libs/ssh/sftpfilesystemmodel.h +++ b/src/libs/ssh/sftpfilesystemmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpincomingpacket.cpp b/src/libs/ssh/sftpincomingpacket.cpp index e3795146885..e3b7b324d4d 100644 --- a/src/libs/ssh/sftpincomingpacket.cpp +++ b/src/libs/ssh/sftpincomingpacket.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpincomingpacket_p.h b/src/libs/ssh/sftpincomingpacket_p.h index 9b226fb24b3..332d8000eea 100644 --- a/src/libs/ssh/sftpincomingpacket_p.h +++ b/src/libs/ssh/sftpincomingpacket_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpoperation.cpp b/src/libs/ssh/sftpoperation.cpp index 59b5f658ad8..b1842c8435e 100644 --- a/src/libs/ssh/sftpoperation.cpp +++ b/src/libs/ssh/sftpoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpoperation_p.h b/src/libs/ssh/sftpoperation_p.h index a74e6a6ca20..38d61f94d3e 100644 --- a/src/libs/ssh/sftpoperation_p.h +++ b/src/libs/ssh/sftpoperation_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpoutgoingpacket.cpp b/src/libs/ssh/sftpoutgoingpacket.cpp index 0ea613f125f..c40a9c3d582 100644 --- a/src/libs/ssh/sftpoutgoingpacket.cpp +++ b/src/libs/ssh/sftpoutgoingpacket.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftpoutgoingpacket_p.h b/src/libs/ssh/sftpoutgoingpacket_p.h index 165e925affc..1f3b43cb503 100644 --- a/src/libs/ssh/sftpoutgoingpacket_p.h +++ b/src/libs/ssh/sftpoutgoingpacket_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftppacket.cpp b/src/libs/ssh/sftppacket.cpp index 7b28f5789a6..e8429c1814a 100644 --- a/src/libs/ssh/sftppacket.cpp +++ b/src/libs/ssh/sftppacket.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sftppacket_p.h b/src/libs/ssh/sftppacket_p.h index 686c1f6c516..3395ccf038a 100644 --- a/src/libs/ssh/sftppacket_p.h +++ b/src/libs/ssh/sftppacket_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/ssh_global.h b/src/libs/ssh/ssh_global.h index e085c5239a8..2633c5467c1 100644 --- a/src/libs/ssh/ssh_global.h +++ b/src/libs/ssh/ssh_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshbotanconversions_p.h b/src/libs/ssh/sshbotanconversions_p.h index 3fb394e29b9..0051c5d0fdf 100644 --- a/src/libs/ssh/sshbotanconversions_p.h +++ b/src/libs/ssh/sshbotanconversions_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshcapabilities.cpp b/src/libs/ssh/sshcapabilities.cpp index 635d9fd392a..5fb4136e3b5 100644 --- a/src/libs/ssh/sshcapabilities.cpp +++ b/src/libs/ssh/sshcapabilities.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshcapabilities_p.h b/src/libs/ssh/sshcapabilities_p.h index 9355026c900..de309605a8f 100644 --- a/src/libs/ssh/sshcapabilities_p.h +++ b/src/libs/ssh/sshcapabilities_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshchannel.cpp b/src/libs/ssh/sshchannel.cpp index da28ddc0af7..a2595aa88d8 100644 --- a/src/libs/ssh/sshchannel.cpp +++ b/src/libs/ssh/sshchannel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshchannel_p.h b/src/libs/ssh/sshchannel_p.h index 83765f94fef..80da016eb82 100644 --- a/src/libs/ssh/sshchannel_p.h +++ b/src/libs/ssh/sshchannel_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshchannelmanager.cpp b/src/libs/ssh/sshchannelmanager.cpp index e2977ac5d04..5ffc7f3e6e2 100644 --- a/src/libs/ssh/sshchannelmanager.cpp +++ b/src/libs/ssh/sshchannelmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshchannelmanager_p.h b/src/libs/ssh/sshchannelmanager_p.h index 4d7c985c4c1..9561a0f2277 100644 --- a/src/libs/ssh/sshchannelmanager_p.h +++ b/src/libs/ssh/sshchannelmanager_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshconnection.cpp b/src/libs/ssh/sshconnection.cpp index f71b27e9600..dcd00bb2ca3 100644 --- a/src/libs/ssh/sshconnection.cpp +++ b/src/libs/ssh/sshconnection.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshconnection.h b/src/libs/ssh/sshconnection.h index 621ace38232..1a3f3d169f3 100644 --- a/src/libs/ssh/sshconnection.h +++ b/src/libs/ssh/sshconnection.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshconnection_p.h b/src/libs/ssh/sshconnection_p.h index 7c4e5bbbc3b..d2de6a266da 100644 --- a/src/libs/ssh/sshconnection_p.h +++ b/src/libs/ssh/sshconnection_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshconnectionmanager.cpp b/src/libs/ssh/sshconnectionmanager.cpp index 94319828984..e9d16f50aeb 100644 --- a/src/libs/ssh/sshconnectionmanager.cpp +++ b/src/libs/ssh/sshconnectionmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshconnectionmanager.h b/src/libs/ssh/sshconnectionmanager.h index 65dab048a43..e1481fcfba8 100644 --- a/src/libs/ssh/sshconnectionmanager.h +++ b/src/libs/ssh/sshconnectionmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshcryptofacility.cpp b/src/libs/ssh/sshcryptofacility.cpp index 24fd7470848..19a62824539 100644 --- a/src/libs/ssh/sshcryptofacility.cpp +++ b/src/libs/ssh/sshcryptofacility.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshcryptofacility_p.h b/src/libs/ssh/sshcryptofacility_p.h index 21056f7ddfa..fbf7a229f80 100644 --- a/src/libs/ssh/sshcryptofacility_p.h +++ b/src/libs/ssh/sshcryptofacility_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshdirecttcpiptunnel.cpp b/src/libs/ssh/sshdirecttcpiptunnel.cpp index c0f15c34a46..d0806164844 100644 --- a/src/libs/ssh/sshdirecttcpiptunnel.cpp +++ b/src/libs/ssh/sshdirecttcpiptunnel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshdirecttcpiptunnel.h b/src/libs/ssh/sshdirecttcpiptunnel.h index 6390eae72bb..235fbae9ced 100644 --- a/src/libs/ssh/sshdirecttcpiptunnel.h +++ b/src/libs/ssh/sshdirecttcpiptunnel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshdirecttcpiptunnel_p.h b/src/libs/ssh/sshdirecttcpiptunnel_p.h index 09429025e56..8b1631439b0 100644 --- a/src/libs/ssh/sshdirecttcpiptunnel_p.h +++ b/src/libs/ssh/sshdirecttcpiptunnel_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/ssherrors.h b/src/libs/ssh/ssherrors.h index f081a10808b..8e4f41e21a3 100644 --- a/src/libs/ssh/ssherrors.h +++ b/src/libs/ssh/ssherrors.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshexception_p.h b/src/libs/ssh/sshexception_p.h index 32ef233649e..77f39f40d46 100644 --- a/src/libs/ssh/sshexception_p.h +++ b/src/libs/ssh/sshexception_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshincomingpacket.cpp b/src/libs/ssh/sshincomingpacket.cpp index c2cdb7b630e..15f56a0d45c 100644 --- a/src/libs/ssh/sshincomingpacket.cpp +++ b/src/libs/ssh/sshincomingpacket.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshincomingpacket_p.h b/src/libs/ssh/sshincomingpacket_p.h index 6469a7a4df3..521f481b35b 100644 --- a/src/libs/ssh/sshincomingpacket_p.h +++ b/src/libs/ssh/sshincomingpacket_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshinit.cpp b/src/libs/ssh/sshinit.cpp index c1d4f4ae380..952167bb5d7 100644 --- a/src/libs/ssh/sshinit.cpp +++ b/src/libs/ssh/sshinit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshinit_p.h b/src/libs/ssh/sshinit_p.h index af8126803de..1c6b1edfb70 100644 --- a/src/libs/ssh/sshinit_p.h +++ b/src/libs/ssh/sshinit_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshkeycreationdialog.cpp b/src/libs/ssh/sshkeycreationdialog.cpp index 139b3bab72c..1cd3904c782 100644 --- a/src/libs/ssh/sshkeycreationdialog.cpp +++ b/src/libs/ssh/sshkeycreationdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshkeycreationdialog.h b/src/libs/ssh/sshkeycreationdialog.h index 0c31af63d5a..c030290fe48 100644 --- a/src/libs/ssh/sshkeycreationdialog.h +++ b/src/libs/ssh/sshkeycreationdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshkeyexchange.cpp b/src/libs/ssh/sshkeyexchange.cpp index b21f1ab48f5..700b268d8c6 100644 --- a/src/libs/ssh/sshkeyexchange.cpp +++ b/src/libs/ssh/sshkeyexchange.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshkeyexchange_p.h b/src/libs/ssh/sshkeyexchange_p.h index 019bdc196d2..dae6a79d915 100644 --- a/src/libs/ssh/sshkeyexchange_p.h +++ b/src/libs/ssh/sshkeyexchange_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshkeygenerator.cpp b/src/libs/ssh/sshkeygenerator.cpp index 395057ae784..3a943bc2c1f 100644 --- a/src/libs/ssh/sshkeygenerator.cpp +++ b/src/libs/ssh/sshkeygenerator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshkeygenerator.h b/src/libs/ssh/sshkeygenerator.h index e45d8bd5ed5..70688a63f25 100644 --- a/src/libs/ssh/sshkeygenerator.h +++ b/src/libs/ssh/sshkeygenerator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshkeypasswordretriever.cpp b/src/libs/ssh/sshkeypasswordretriever.cpp index 9337392f528..90d389adf83 100644 --- a/src/libs/ssh/sshkeypasswordretriever.cpp +++ b/src/libs/ssh/sshkeypasswordretriever.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshkeypasswordretriever_p.h b/src/libs/ssh/sshkeypasswordretriever_p.h index 9ffdc9019eb..2f6953fef21 100644 --- a/src/libs/ssh/sshkeypasswordretriever_p.h +++ b/src/libs/ssh/sshkeypasswordretriever_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshoutgoingpacket.cpp b/src/libs/ssh/sshoutgoingpacket.cpp index b4e772973ee..50a433d3ede 100644 --- a/src/libs/ssh/sshoutgoingpacket.cpp +++ b/src/libs/ssh/sshoutgoingpacket.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshoutgoingpacket_p.h b/src/libs/ssh/sshoutgoingpacket_p.h index 6f3de1c347d..8f00fb438d9 100644 --- a/src/libs/ssh/sshoutgoingpacket_p.h +++ b/src/libs/ssh/sshoutgoingpacket_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshpacket.cpp b/src/libs/ssh/sshpacket.cpp index 5d109d60305..ca0f99b5620 100644 --- a/src/libs/ssh/sshpacket.cpp +++ b/src/libs/ssh/sshpacket.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshpacket_p.h b/src/libs/ssh/sshpacket_p.h index d97979a0204..54a9535a123 100644 --- a/src/libs/ssh/sshpacket_p.h +++ b/src/libs/ssh/sshpacket_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshpacketparser.cpp b/src/libs/ssh/sshpacketparser.cpp index 630d44ebdea..22a409d5060 100644 --- a/src/libs/ssh/sshpacketparser.cpp +++ b/src/libs/ssh/sshpacketparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshpacketparser_p.h b/src/libs/ssh/sshpacketparser_p.h index 66ee8eb754d..502b859f6a8 100644 --- a/src/libs/ssh/sshpacketparser_p.h +++ b/src/libs/ssh/sshpacketparser_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshpseudoterminal.h b/src/libs/ssh/sshpseudoterminal.h index 70d00a6fe03..b3315389b21 100644 --- a/src/libs/ssh/sshpseudoterminal.h +++ b/src/libs/ssh/sshpseudoterminal.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshremoteprocess.cpp b/src/libs/ssh/sshremoteprocess.cpp index 6602b3c1dfa..6b03c5d52cc 100644 --- a/src/libs/ssh/sshremoteprocess.cpp +++ b/src/libs/ssh/sshremoteprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshremoteprocess.h b/src/libs/ssh/sshremoteprocess.h index 40c7db77909..7b6f0b9ab1b 100644 --- a/src/libs/ssh/sshremoteprocess.h +++ b/src/libs/ssh/sshremoteprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshremoteprocess_p.h b/src/libs/ssh/sshremoteprocess_p.h index b91fd18c5fa..1e575dbc8af 100644 --- a/src/libs/ssh/sshremoteprocess_p.h +++ b/src/libs/ssh/sshremoteprocess_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshremoteprocessrunner.cpp b/src/libs/ssh/sshremoteprocessrunner.cpp index 8714502c259..ada4e113a2b 100644 --- a/src/libs/ssh/sshremoteprocessrunner.cpp +++ b/src/libs/ssh/sshremoteprocessrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshremoteprocessrunner.h b/src/libs/ssh/sshremoteprocessrunner.h index 8f41f31088e..8ac3522b5ff 100644 --- a/src/libs/ssh/sshremoteprocessrunner.h +++ b/src/libs/ssh/sshremoteprocessrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshsendfacility.cpp b/src/libs/ssh/sshsendfacility.cpp index 572ab304823..761eda78911 100644 --- a/src/libs/ssh/sshsendfacility.cpp +++ b/src/libs/ssh/sshsendfacility.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/ssh/sshsendfacility_p.h b/src/libs/ssh/sshsendfacility_p.h index 2b65d24bb76..cfc13e1ef3b 100644 --- a/src/libs/ssh/sshsendfacility_p.h +++ b/src/libs/ssh/sshsendfacility_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/QtConcurrentTools b/src/libs/utils/QtConcurrentTools index 8a212c0184e..ea9ba6e12c3 100644 --- a/src/libs/utils/QtConcurrentTools +++ b/src/libs/utils/QtConcurrentTools @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/annotateditemdelegate.cpp b/src/libs/utils/annotateditemdelegate.cpp index 0fd4bc0dd1b..14bc9b016e6 100644 --- a/src/libs/utils/annotateditemdelegate.cpp +++ b/src/libs/utils/annotateditemdelegate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/annotateditemdelegate.h b/src/libs/utils/annotateditemdelegate.h index 4ea5c9dc60d..6da0956614b 100644 --- a/src/libs/utils/annotateditemdelegate.h +++ b/src/libs/utils/annotateditemdelegate.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/ansiescapecodehandler.cpp b/src/libs/utils/ansiescapecodehandler.cpp index 0086255ff00..00045bf42e6 100644 --- a/src/libs/utils/ansiescapecodehandler.cpp +++ b/src/libs/utils/ansiescapecodehandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Petar Perisin <petar.perisin@gmail.com> +** Copyright (C) 2014 Petar Perisin <petar.perisin@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/ansiescapecodehandler.h b/src/libs/utils/ansiescapecodehandler.h index d68490c58eb..44ef457368e 100644 --- a/src/libs/utils/ansiescapecodehandler.h +++ b/src/libs/utils/ansiescapecodehandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Petar Perisin <petar.perisin@gmail.com> +** Copyright (C) 2014 Petar Perisin <petar.perisin@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/appmainwindow.cpp b/src/libs/utils/appmainwindow.cpp index df9abc26c55..b520557e9fa 100644 --- a/src/libs/utils/appmainwindow.cpp +++ b/src/libs/utils/appmainwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/appmainwindow.h b/src/libs/utils/appmainwindow.h index 6a3feee8da0..d2f2181f902 100644 --- a/src/libs/utils/appmainwindow.h +++ b/src/libs/utils/appmainwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/basetreeview.cpp b/src/libs/utils/basetreeview.cpp index 6e178e5c4d9..4b7ee0a61fa 100644 --- a/src/libs/utils/basetreeview.cpp +++ b/src/libs/utils/basetreeview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/basetreeview.h b/src/libs/utils/basetreeview.h index c488e211fec..a83076c95c9 100644 --- a/src/libs/utils/basetreeview.h +++ b/src/libs/utils/basetreeview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/basevalidatinglineedit.cpp b/src/libs/utils/basevalidatinglineedit.cpp index 00d16d25586..044017e54e5 100644 --- a/src/libs/utils/basevalidatinglineedit.cpp +++ b/src/libs/utils/basevalidatinglineedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/basevalidatinglineedit.h b/src/libs/utils/basevalidatinglineedit.h index 4e84352f130..ee3b6926e7d 100644 --- a/src/libs/utils/basevalidatinglineedit.h +++ b/src/libs/utils/basevalidatinglineedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/bracematcher.cpp b/src/libs/utils/bracematcher.cpp index 036b5f7f4e7..667a3f3625f 100644 --- a/src/libs/utils/bracematcher.cpp +++ b/src/libs/utils/bracematcher.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Konstantin Tokarev <annulen@yandex.ru> +** Copyright (c) 2014 Konstantin Tokarev <annulen@yandex.ru> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/bracematcher.h b/src/libs/utils/bracematcher.h index bc3a2f6b8e5..cb92a3f7f89 100644 --- a/src/libs/utils/bracematcher.h +++ b/src/libs/utils/bracematcher.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Konstantin Tokarev <annulen@yandex.ru> +** Copyright (c) 2014 Konstantin Tokarev <annulen@yandex.ru> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/buildablehelperlibrary.cpp b/src/libs/utils/buildablehelperlibrary.cpp index 6a54838f14f..ae845ffee48 100644 --- a/src/libs/utils/buildablehelperlibrary.cpp +++ b/src/libs/utils/buildablehelperlibrary.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/buildablehelperlibrary.h b/src/libs/utils/buildablehelperlibrary.h index dd68373edda..ff30146e8ea 100644 --- a/src/libs/utils/buildablehelperlibrary.h +++ b/src/libs/utils/buildablehelperlibrary.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/changeset.cpp b/src/libs/utils/changeset.cpp index 1b4290eff53..f5a3299b40d 100644 --- a/src/libs/utils/changeset.cpp +++ b/src/libs/utils/changeset.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/changeset.h b/src/libs/utils/changeset.h index 62731e4d87a..de582a2940c 100644 --- a/src/libs/utils/changeset.h +++ b/src/libs/utils/changeset.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/checkablemessagebox.cpp b/src/libs/utils/checkablemessagebox.cpp index ec44505c10d..475216c45e1 100644 --- a/src/libs/utils/checkablemessagebox.cpp +++ b/src/libs/utils/checkablemessagebox.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/checkablemessagebox.h b/src/libs/utils/checkablemessagebox.h index f71c65e2b67..c3a36d8be6a 100644 --- a/src/libs/utils/checkablemessagebox.h +++ b/src/libs/utils/checkablemessagebox.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/classnamevalidatinglineedit.cpp b/src/libs/utils/classnamevalidatinglineedit.cpp index 6199d531bc3..0e76a3da851 100644 --- a/src/libs/utils/classnamevalidatinglineedit.cpp +++ b/src/libs/utils/classnamevalidatinglineedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/classnamevalidatinglineedit.h b/src/libs/utils/classnamevalidatinglineedit.h index 42ef62e109b..22f623d2430 100644 --- a/src/libs/utils/classnamevalidatinglineedit.h +++ b/src/libs/utils/classnamevalidatinglineedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/codegeneration.cpp b/src/libs/utils/codegeneration.cpp index 88de4a0c0bd..1d11ab3031a 100644 --- a/src/libs/utils/codegeneration.cpp +++ b/src/libs/utils/codegeneration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/codegeneration.h b/src/libs/utils/codegeneration.h index f2010fa7d33..cd77d57e194 100644 --- a/src/libs/utils/codegeneration.h +++ b/src/libs/utils/codegeneration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/completingtextedit.cpp b/src/libs/utils/completingtextedit.cpp index 1e44ef90f0d..87b68cf99fe 100644 --- a/src/libs/utils/completingtextedit.cpp +++ b/src/libs/utils/completingtextedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/completingtextedit.h b/src/libs/utils/completingtextedit.h index f7ece3e47e3..c2455a242c1 100644 --- a/src/libs/utils/completingtextedit.h +++ b/src/libs/utils/completingtextedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/consoleprocess.cpp b/src/libs/utils/consoleprocess.cpp index 7acc96ae928..f5fdd736114 100644 --- a/src/libs/utils/consoleprocess.cpp +++ b/src/libs/utils/consoleprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/consoleprocess.h b/src/libs/utils/consoleprocess.h index 2f604cb2886..a064542fe7c 100644 --- a/src/libs/utils/consoleprocess.h +++ b/src/libs/utils/consoleprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/consoleprocess_p.h b/src/libs/utils/consoleprocess_p.h index 5f888f06c80..af980d8ea07 100644 --- a/src/libs/utils/consoleprocess_p.h +++ b/src/libs/utils/consoleprocess_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/consoleprocess_unix.cpp b/src/libs/utils/consoleprocess_unix.cpp index d5a40c5be37..331e65a0ae3 100644 --- a/src/libs/utils/consoleprocess_unix.cpp +++ b/src/libs/utils/consoleprocess_unix.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/consoleprocess_win.cpp b/src/libs/utils/consoleprocess_win.cpp index 1e8ba851333..646cf11806c 100644 --- a/src/libs/utils/consoleprocess_win.cpp +++ b/src/libs/utils/consoleprocess_win.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/crumblepath.cpp b/src/libs/utils/crumblepath.cpp index 2ee3d5b2018..85f785555cf 100644 --- a/src/libs/utils/crumblepath.cpp +++ b/src/libs/utils/crumblepath.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/crumblepath.h b/src/libs/utils/crumblepath.h index 6fa4cdafc02..d77066962d4 100644 --- a/src/libs/utils/crumblepath.h +++ b/src/libs/utils/crumblepath.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/detailsbutton.cpp b/src/libs/utils/detailsbutton.cpp index 43fbd74d6ef..3d33296d262 100644 --- a/src/libs/utils/detailsbutton.cpp +++ b/src/libs/utils/detailsbutton.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/detailsbutton.h b/src/libs/utils/detailsbutton.h index 1748d19f1da..d5eb7c78787 100644 --- a/src/libs/utils/detailsbutton.h +++ b/src/libs/utils/detailsbutton.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/detailswidget.cpp b/src/libs/utils/detailswidget.cpp index 32d54c18cba..8dd42a529a9 100644 --- a/src/libs/utils/detailswidget.cpp +++ b/src/libs/utils/detailswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/detailswidget.h b/src/libs/utils/detailswidget.h index 6465ce0ec6c..fd4a251c4fe 100644 --- a/src/libs/utils/detailswidget.h +++ b/src/libs/utils/detailswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/elfreader.cpp b/src/libs/utils/elfreader.cpp index dc3314729c2..b74f58ca189 100644 --- a/src/libs/utils/elfreader.cpp +++ b/src/libs/utils/elfreader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/elfreader.h b/src/libs/utils/elfreader.h index d9ac9ece9b4..4692f0384a5 100644 --- a/src/libs/utils/elfreader.h +++ b/src/libs/utils/elfreader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/elidinglabel.cpp b/src/libs/utils/elidinglabel.cpp index 7fda2539078..36002fdcd33 100644 --- a/src/libs/utils/elidinglabel.cpp +++ b/src/libs/utils/elidinglabel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/elidinglabel.h b/src/libs/utils/elidinglabel.h index 437a3cac2c0..354d0d3c805 100644 --- a/src/libs/utils/elidinglabel.h +++ b/src/libs/utils/elidinglabel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/environment.cpp b/src/libs/utils/environment.cpp index 663e093fb78..c185168da3b 100644 --- a/src/libs/utils/environment.cpp +++ b/src/libs/utils/environment.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/environment.h b/src/libs/utils/environment.h index 4442be992c3..8527e55eda5 100644 --- a/src/libs/utils/environment.h +++ b/src/libs/utils/environment.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/environmentmodel.cpp b/src/libs/utils/environmentmodel.cpp index a1357160963..bb2967fcd78 100644 --- a/src/libs/utils/environmentmodel.cpp +++ b/src/libs/utils/environmentmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/environmentmodel.h b/src/libs/utils/environmentmodel.h index cab2430bb71..9ddcfba182e 100644 --- a/src/libs/utils/environmentmodel.h +++ b/src/libs/utils/environmentmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/faketooltip.cpp b/src/libs/utils/faketooltip.cpp index 693dd33ea88..52bbe5ceaf9 100644 --- a/src/libs/utils/faketooltip.cpp +++ b/src/libs/utils/faketooltip.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/faketooltip.h b/src/libs/utils/faketooltip.h index 8a6f88476f3..43518dc8d97 100644 --- a/src/libs/utils/faketooltip.h +++ b/src/libs/utils/faketooltip.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/fancylineedit.cpp b/src/libs/utils/fancylineedit.cpp index d9458526982..3b92b47b116 100644 --- a/src/libs/utils/fancylineedit.cpp +++ b/src/libs/utils/fancylineedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/fancylineedit.h b/src/libs/utils/fancylineedit.h index fec5dced30e..7ad7d6ee704 100644 --- a/src/libs/utils/fancylineedit.h +++ b/src/libs/utils/fancylineedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/fancymainwindow.cpp b/src/libs/utils/fancymainwindow.cpp index 8db1e21723f..1b50f30caaa 100644 --- a/src/libs/utils/fancymainwindow.cpp +++ b/src/libs/utils/fancymainwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/fancymainwindow.h b/src/libs/utils/fancymainwindow.h index 968bde8fe8d..aed4accb959 100644 --- a/src/libs/utils/fancymainwindow.h +++ b/src/libs/utils/fancymainwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/fileinprojectfinder.cpp b/src/libs/utils/fileinprojectfinder.cpp index 6fdfb81df40..2da905e12d2 100644 --- a/src/libs/utils/fileinprojectfinder.cpp +++ b/src/libs/utils/fileinprojectfinder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/fileinprojectfinder.h b/src/libs/utils/fileinprojectfinder.h index df21b419030..cf99c708d1e 100644 --- a/src/libs/utils/fileinprojectfinder.h +++ b/src/libs/utils/fileinprojectfinder.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filenamevalidatinglineedit.cpp b/src/libs/utils/filenamevalidatinglineedit.cpp index 55752785d68..8202f03baae 100644 --- a/src/libs/utils/filenamevalidatinglineedit.cpp +++ b/src/libs/utils/filenamevalidatinglineedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filenamevalidatinglineedit.h b/src/libs/utils/filenamevalidatinglineedit.h index 310aa4c154a..f40aeb94360 100644 --- a/src/libs/utils/filenamevalidatinglineedit.h +++ b/src/libs/utils/filenamevalidatinglineedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filesearch.cpp b/src/libs/utils/filesearch.cpp index 44a7a66df3d..7f637a88c73 100644 --- a/src/libs/utils/filesearch.cpp +++ b/src/libs/utils/filesearch.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filesearch.h b/src/libs/utils/filesearch.h index 9724eb519a7..5b69cfd4c13 100644 --- a/src/libs/utils/filesearch.h +++ b/src/libs/utils/filesearch.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filesystemwatcher.cpp b/src/libs/utils/filesystemwatcher.cpp index 8110ce91bcd..71868f5adbf 100644 --- a/src/libs/utils/filesystemwatcher.cpp +++ b/src/libs/utils/filesystemwatcher.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filesystemwatcher.h b/src/libs/utils/filesystemwatcher.h index 13f6bed1367..e8319f137ef 100644 --- a/src/libs/utils/filesystemwatcher.h +++ b/src/libs/utils/filesystemwatcher.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/fileutils.cpp b/src/libs/utils/fileutils.cpp index ef3b5c5e778..1451f6fa79e 100644 --- a/src/libs/utils/fileutils.cpp +++ b/src/libs/utils/fileutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/fileutils.h b/src/libs/utils/fileutils.h index 0b19a913fbd..026152d2ea5 100644 --- a/src/libs/utils/fileutils.h +++ b/src/libs/utils/fileutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filewizarddialog.cpp b/src/libs/utils/filewizarddialog.cpp index d655d8822d0..90aab6d93e0 100644 --- a/src/libs/utils/filewizarddialog.cpp +++ b/src/libs/utils/filewizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filewizarddialog.h b/src/libs/utils/filewizarddialog.h index 2b02e0c4035..ee9b79ee039 100644 --- a/src/libs/utils/filewizarddialog.h +++ b/src/libs/utils/filewizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filewizardpage.cpp b/src/libs/utils/filewizardpage.cpp index 0f0852076ed..2a05ce75441 100644 --- a/src/libs/utils/filewizardpage.cpp +++ b/src/libs/utils/filewizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filewizardpage.h b/src/libs/utils/filewizardpage.h index 8982acd535a..4b641d7b180 100644 --- a/src/libs/utils/filewizardpage.h +++ b/src/libs/utils/filewizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filterlineedit.cpp b/src/libs/utils/filterlineedit.cpp index a60dbe7878f..beb2670f887 100644 --- a/src/libs/utils/filterlineedit.cpp +++ b/src/libs/utils/filterlineedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/filterlineedit.h b/src/libs/utils/filterlineedit.h index 495179479b5..37eff4c42b5 100644 --- a/src/libs/utils/filterlineedit.h +++ b/src/libs/utils/filterlineedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/flowlayout.cpp b/src/libs/utils/flowlayout.cpp index e407313c929..9753a4d54b2 100644 --- a/src/libs/utils/flowlayout.cpp +++ b/src/libs/utils/flowlayout.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/flowlayout.h b/src/libs/utils/flowlayout.h index b56e7367335..96459d6a1a1 100644 --- a/src/libs/utils/flowlayout.h +++ b/src/libs/utils/flowlayout.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/function.cpp b/src/libs/utils/function.cpp index 68370976d87..037cd8824c5 100644 --- a/src/libs/utils/function.cpp +++ b/src/libs/utils/function.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/function.h b/src/libs/utils/function.h index d6dbc2f9999..70100ecadb3 100644 --- a/src/libs/utils/function.h +++ b/src/libs/utils/function.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/headerviewstretcher.cpp b/src/libs/utils/headerviewstretcher.cpp index c42e3c19119..8007c530c1a 100644 --- a/src/libs/utils/headerviewstretcher.cpp +++ b/src/libs/utils/headerviewstretcher.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/headerviewstretcher.h b/src/libs/utils/headerviewstretcher.h index 0435c9f9850..f6700857c2f 100644 --- a/src/libs/utils/headerviewstretcher.h +++ b/src/libs/utils/headerviewstretcher.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/historycompleter.cpp b/src/libs/utils/historycompleter.cpp index 15fee7dd035..df31af96a63 100644 --- a/src/libs/utils/historycompleter.cpp +++ b/src/libs/utils/historycompleter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/historycompleter.h b/src/libs/utils/historycompleter.h index 48a47503076..3d9352a6ae4 100644 --- a/src/libs/utils/historycompleter.h +++ b/src/libs/utils/historycompleter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/hostosinfo.cpp b/src/libs/utils/hostosinfo.cpp index 0add69101fd..9b2a1aac980 100644 --- a/src/libs/utils/hostosinfo.cpp +++ b/src/libs/utils/hostosinfo.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/hostosinfo.h b/src/libs/utils/hostosinfo.h index 10ad8785c87..55cf1fc129b 100644 --- a/src/libs/utils/hostosinfo.h +++ b/src/libs/utils/hostosinfo.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/htmldocextractor.cpp b/src/libs/utils/htmldocextractor.cpp index 3de7f2c6e1d..477b720ffab 100644 --- a/src/libs/utils/htmldocextractor.cpp +++ b/src/libs/utils/htmldocextractor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/htmldocextractor.h b/src/libs/utils/htmldocextractor.h index f8b563b327d..c5076a8188d 100644 --- a/src/libs/utils/htmldocextractor.h +++ b/src/libs/utils/htmldocextractor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/ipaddresslineedit.cpp b/src/libs/utils/ipaddresslineedit.cpp index f74a2c3e3ea..f35e64544d7 100644 --- a/src/libs/utils/ipaddresslineedit.cpp +++ b/src/libs/utils/ipaddresslineedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/ipaddresslineedit.h b/src/libs/utils/ipaddresslineedit.h index be21f124dcd..955101e6016 100644 --- a/src/libs/utils/ipaddresslineedit.h +++ b/src/libs/utils/ipaddresslineedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/iwelcomepage.cpp b/src/libs/utils/iwelcomepage.cpp index da9a6d9bd69..4901c5ff801 100644 --- a/src/libs/utils/iwelcomepage.cpp +++ b/src/libs/utils/iwelcomepage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/iwelcomepage.h b/src/libs/utils/iwelcomepage.h index 2a7db339749..38b13aef184 100644 --- a/src/libs/utils/iwelcomepage.h +++ b/src/libs/utils/iwelcomepage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/json.cpp b/src/libs/utils/json.cpp index b4d691566ab..e4822a4dc21 100644 --- a/src/libs/utils/json.cpp +++ b/src/libs/utils/json.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/json.h b/src/libs/utils/json.h index 5efa8ab45e2..f2d7ac23e82 100644 --- a/src/libs/utils/json.h +++ b/src/libs/utils/json.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/linecolumnlabel.cpp b/src/libs/utils/linecolumnlabel.cpp index 50049b5573c..7fb60143600 100644 --- a/src/libs/utils/linecolumnlabel.cpp +++ b/src/libs/utils/linecolumnlabel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/linecolumnlabel.h b/src/libs/utils/linecolumnlabel.h index bec81eed631..b22de98d2e3 100644 --- a/src/libs/utils/linecolumnlabel.h +++ b/src/libs/utils/linecolumnlabel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/listutils.h b/src/libs/utils/listutils.h index aecac1bcdf1..0bfa7e0acbc 100644 --- a/src/libs/utils/listutils.h +++ b/src/libs/utils/listutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/multitask.h b/src/libs/utils/multitask.h index b2a405732cd..b4be8a4a66f 100644 --- a/src/libs/utils/multitask.h +++ b/src/libs/utils/multitask.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/navigationtreeview.cpp b/src/libs/utils/navigationtreeview.cpp index cdf6d3b4d69..d1d645e66bf 100644 --- a/src/libs/utils/navigationtreeview.cpp +++ b/src/libs/utils/navigationtreeview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/navigationtreeview.h b/src/libs/utils/navigationtreeview.h index 74f0293162f..b8303834d59 100644 --- a/src/libs/utils/navigationtreeview.h +++ b/src/libs/utils/navigationtreeview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/networkaccessmanager.cpp b/src/libs/utils/networkaccessmanager.cpp index 19b68fdf283..1faf82a8a4b 100644 --- a/src/libs/utils/networkaccessmanager.cpp +++ b/src/libs/utils/networkaccessmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/networkaccessmanager.h b/src/libs/utils/networkaccessmanager.h index acee6eaf31d..1e0b8e65e02 100644 --- a/src/libs/utils/networkaccessmanager.h +++ b/src/libs/utils/networkaccessmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/newclasswidget.cpp b/src/libs/utils/newclasswidget.cpp index df048c65256..8607e2341ed 100644 --- a/src/libs/utils/newclasswidget.cpp +++ b/src/libs/utils/newclasswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/newclasswidget.h b/src/libs/utils/newclasswidget.h index d5ecf0987ad..8c381850d09 100644 --- a/src/libs/utils/newclasswidget.h +++ b/src/libs/utils/newclasswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/osspecificaspects.h b/src/libs/utils/osspecificaspects.h index febdcbd0224..2b76957c559 100644 --- a/src/libs/utils/osspecificaspects.h +++ b/src/libs/utils/osspecificaspects.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/outputformat.h b/src/libs/utils/outputformat.h index 830c53378a9..916b21af33c 100644 --- a/src/libs/utils/outputformat.h +++ b/src/libs/utils/outputformat.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/outputformatter.cpp b/src/libs/utils/outputformatter.cpp index d2f631d4260..38ed92576d5 100644 --- a/src/libs/utils/outputformatter.cpp +++ b/src/libs/utils/outputformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/outputformatter.h b/src/libs/utils/outputformatter.h index 733e7cd52a2..b18e17ff059 100644 --- a/src/libs/utils/outputformatter.h +++ b/src/libs/utils/outputformatter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/parameteraction.cpp b/src/libs/utils/parameteraction.cpp index 96a51cc0ebd..649d2a3560f 100644 --- a/src/libs/utils/parameteraction.cpp +++ b/src/libs/utils/parameteraction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/parameteraction.h b/src/libs/utils/parameteraction.h index d993eec7b42..128b9c9276f 100644 --- a/src/libs/utils/parameteraction.h +++ b/src/libs/utils/parameteraction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/pathchooser.cpp b/src/libs/utils/pathchooser.cpp index 6ff1e3efce3..9c22eb186f0 100644 --- a/src/libs/utils/pathchooser.cpp +++ b/src/libs/utils/pathchooser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/pathchooser.h b/src/libs/utils/pathchooser.h index 483c94e576f..4142a3e10a3 100644 --- a/src/libs/utils/pathchooser.h +++ b/src/libs/utils/pathchooser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/pathlisteditor.cpp b/src/libs/utils/pathlisteditor.cpp index f213afda178..ce5b02aa8d9 100644 --- a/src/libs/utils/pathlisteditor.cpp +++ b/src/libs/utils/pathlisteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/pathlisteditor.h b/src/libs/utils/pathlisteditor.h index 2601257a290..4f8cac9f7c1 100644 --- a/src/libs/utils/pathlisteditor.h +++ b/src/libs/utils/pathlisteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/persistentsettings.cpp b/src/libs/utils/persistentsettings.cpp index ce1530055af..80ffd46dde6 100644 --- a/src/libs/utils/persistentsettings.cpp +++ b/src/libs/utils/persistentsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/persistentsettings.h b/src/libs/utils/persistentsettings.h index eb393c667e5..947355cb123 100644 --- a/src/libs/utils/persistentsettings.h +++ b/src/libs/utils/persistentsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/portlist.cpp b/src/libs/utils/portlist.cpp index aa5f7e08001..06754323ddd 100644 --- a/src/libs/utils/portlist.cpp +++ b/src/libs/utils/portlist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/portlist.h b/src/libs/utils/portlist.h index 314b32e5b33..89edf4c5909 100644 --- a/src/libs/utils/portlist.h +++ b/src/libs/utils/portlist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/process_ctrlc_stub.cpp b/src/libs/utils/process_ctrlc_stub.cpp index 04cbd87c9d0..6f6905f931e 100644 --- a/src/libs/utils/process_ctrlc_stub.cpp +++ b/src/libs/utils/process_ctrlc_stub.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/process_stub_unix.c b/src/libs/utils/process_stub_unix.c index c561ce902c2..b061f7f8173 100644 --- a/src/libs/utils/process_stub_unix.c +++ b/src/libs/utils/process_stub_unix.c @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/process_stub_win.c b/src/libs/utils/process_stub_win.c index 303011c1c8e..d447f375ddb 100644 --- a/src/libs/utils/process_stub_win.c +++ b/src/libs/utils/process_stub_win.c @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/projectintropage.cpp b/src/libs/utils/projectintropage.cpp index e7b12675da0..2980cb19396 100644 --- a/src/libs/utils/projectintropage.cpp +++ b/src/libs/utils/projectintropage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/projectintropage.h b/src/libs/utils/projectintropage.h index b5520594ae5..e10055c719a 100644 --- a/src/libs/utils/projectintropage.h +++ b/src/libs/utils/projectintropage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/projectnamevalidatinglineedit.cpp b/src/libs/utils/projectnamevalidatinglineedit.cpp index 8a9722cddc0..8a1136a8c12 100644 --- a/src/libs/utils/projectnamevalidatinglineedit.cpp +++ b/src/libs/utils/projectnamevalidatinglineedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/projectnamevalidatinglineedit.h b/src/libs/utils/projectnamevalidatinglineedit.h index 9876335a2ab..c6a6592bbb8 100644 --- a/src/libs/utils/projectnamevalidatinglineedit.h +++ b/src/libs/utils/projectnamevalidatinglineedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/proxyaction.cpp b/src/libs/utils/proxyaction.cpp index def6ca807a4..e82ad6f94dc 100644 --- a/src/libs/utils/proxyaction.cpp +++ b/src/libs/utils/proxyaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/proxyaction.h b/src/libs/utils/proxyaction.h index e92983888ec..b753ed2521e 100644 --- a/src/libs/utils/proxyaction.h +++ b/src/libs/utils/proxyaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/qtcassert.cpp b/src/libs/utils/qtcassert.cpp index 063ee2df73f..39a6527892c 100644 --- a/src/libs/utils/qtcassert.cpp +++ b/src/libs/utils/qtcassert.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/qtcassert.h b/src/libs/utils/qtcassert.h index 7b3b53dcd41..3aacab7a2bf 100644 --- a/src/libs/utils/qtcassert.h +++ b/src/libs/utils/qtcassert.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/qtcolorbutton.cpp b/src/libs/utils/qtcolorbutton.cpp index bc70be8d383..d3bd6585c25 100644 --- a/src/libs/utils/qtcolorbutton.cpp +++ b/src/libs/utils/qtcolorbutton.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/qtcolorbutton.h b/src/libs/utils/qtcolorbutton.h index 9ef0433337e..09419fd6822 100644 --- a/src/libs/utils/qtcolorbutton.h +++ b/src/libs/utils/qtcolorbutton.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/qtcoverride.h b/src/libs/utils/qtcoverride.h index 875591b5add..d0cfb3f8e46 100644 --- a/src/libs/utils/qtcoverride.h +++ b/src/libs/utils/qtcoverride.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/qtcprocess.cpp b/src/libs/utils/qtcprocess.cpp index 1897a2846a9..fed14afa905 100644 --- a/src/libs/utils/qtcprocess.cpp +++ b/src/libs/utils/qtcprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/qtcprocess.h b/src/libs/utils/qtcprocess.h index b980cb40c54..66cbcbda5b0 100644 --- a/src/libs/utils/qtcprocess.h +++ b/src/libs/utils/qtcprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/reloadpromptutils.cpp b/src/libs/utils/reloadpromptutils.cpp index 3c618d7816e..0b632e385ac 100644 --- a/src/libs/utils/reloadpromptutils.cpp +++ b/src/libs/utils/reloadpromptutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/reloadpromptutils.h b/src/libs/utils/reloadpromptutils.h index 1093a313992..f76d80e8970 100644 --- a/src/libs/utils/reloadpromptutils.h +++ b/src/libs/utils/reloadpromptutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/runextensions.h b/src/libs/utils/runextensions.h index e02afec7611..0e3379423a1 100644 --- a/src/libs/utils/runextensions.h +++ b/src/libs/utils/runextensions.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/savedaction.cpp b/src/libs/utils/savedaction.cpp index 11a908280ff..7663a66fd4d 100644 --- a/src/libs/utils/savedaction.cpp +++ b/src/libs/utils/savedaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/savedaction.h b/src/libs/utils/savedaction.h index d0c2ccc8ebf..22c75062629 100644 --- a/src/libs/utils/savedaction.h +++ b/src/libs/utils/savedaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/savefile.cpp b/src/libs/utils/savefile.cpp index 71faf9c6615..b17861425ef 100644 --- a/src/libs/utils/savefile.cpp +++ b/src/libs/utils/savefile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/savefile.h b/src/libs/utils/savefile.h index 718ee7f3ae3..ce873ed26a7 100644 --- a/src/libs/utils/savefile.h +++ b/src/libs/utils/savefile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/settingsselector.cpp b/src/libs/utils/settingsselector.cpp index 4451d4b46d9..e7a89fc11bc 100644 --- a/src/libs/utils/settingsselector.cpp +++ b/src/libs/utils/settingsselector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/settingsselector.h b/src/libs/utils/settingsselector.h index 8fbeace4914..d04d5942be8 100644 --- a/src/libs/utils/settingsselector.h +++ b/src/libs/utils/settingsselector.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/settingsutils.h b/src/libs/utils/settingsutils.h index f17f0f072e9..43046168b51 100644 --- a/src/libs/utils/settingsutils.h +++ b/src/libs/utils/settingsutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/sleep.cpp b/src/libs/utils/sleep.cpp index 700fdcb671a..50a0951dab4 100644 --- a/src/libs/utils/sleep.cpp +++ b/src/libs/utils/sleep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Orgad Shaneh <orgads@gmail.com>. +** Copyright (C) 2014 Orgad Shaneh <orgads@gmail.com>. ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/sleep.h b/src/libs/utils/sleep.h index c8a592ab95e..53a3cd7b8b1 100644 --- a/src/libs/utils/sleep.h +++ b/src/libs/utils/sleep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Orgad Shaneh <orgads@gmail.com>. +** Copyright (C) 2014 Orgad Shaneh <orgads@gmail.com>. ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/statuslabel.cpp b/src/libs/utils/statuslabel.cpp index ed8646ed325..a8d10e974fb 100644 --- a/src/libs/utils/statuslabel.cpp +++ b/src/libs/utils/statuslabel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/statuslabel.h b/src/libs/utils/statuslabel.h index 71d91a4bc3b..d6e4aae0bdf 100644 --- a/src/libs/utils/statuslabel.h +++ b/src/libs/utils/statuslabel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/stringutils.cpp b/src/libs/utils/stringutils.cpp index 1387a5c79ad..10761a9b05f 100644 --- a/src/libs/utils/stringutils.cpp +++ b/src/libs/utils/stringutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/stringutils.h b/src/libs/utils/stringutils.h index 7fa3229ca19..4622d7e543e 100644 --- a/src/libs/utils/stringutils.h +++ b/src/libs/utils/stringutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/styledbar.cpp b/src/libs/utils/styledbar.cpp index 5ab0c9e4d5e..403c4d88c27 100644 --- a/src/libs/utils/styledbar.cpp +++ b/src/libs/utils/styledbar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/styledbar.h b/src/libs/utils/styledbar.h index 40453fd1527..2a2995f80eb 100644 --- a/src/libs/utils/styledbar.h +++ b/src/libs/utils/styledbar.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/stylehelper.cpp b/src/libs/utils/stylehelper.cpp index 0be7950587f..87bb8ae37fb 100644 --- a/src/libs/utils/stylehelper.cpp +++ b/src/libs/utils/stylehelper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/stylehelper.h b/src/libs/utils/stylehelper.h index 39044d8aafb..00a17a16c92 100644 --- a/src/libs/utils/stylehelper.h +++ b/src/libs/utils/stylehelper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/synchronousprocess.cpp b/src/libs/utils/synchronousprocess.cpp index 58b59f4c67a..bb31af4f069 100644 --- a/src/libs/utils/synchronousprocess.cpp +++ b/src/libs/utils/synchronousprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/synchronousprocess.h b/src/libs/utils/synchronousprocess.h index 8cb224f00aa..b2e8a1bb24b 100644 --- a/src/libs/utils/synchronousprocess.h +++ b/src/libs/utils/synchronousprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tcpportsgatherer.cpp b/src/libs/utils/tcpportsgatherer.cpp index a346b34548c..abd11cf9ada 100644 --- a/src/libs/utils/tcpportsgatherer.cpp +++ b/src/libs/utils/tcpportsgatherer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tcpportsgatherer.h b/src/libs/utils/tcpportsgatherer.h index 922b618f0c0..a268e77f712 100644 --- a/src/libs/utils/tcpportsgatherer.h +++ b/src/libs/utils/tcpportsgatherer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/textfileformat.cpp b/src/libs/utils/textfileformat.cpp index c4b26695b3c..9585c645971 100644 --- a/src/libs/utils/textfileformat.cpp +++ b/src/libs/utils/textfileformat.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/textfileformat.h b/src/libs/utils/textfileformat.h index 9ca55042e16..d75d56413f7 100644 --- a/src/libs/utils/textfileformat.h +++ b/src/libs/utils/textfileformat.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tooltip/effects.h b/src/libs/utils/tooltip/effects.h index f516675ddb0..748e106e586 100644 --- a/src/libs/utils/tooltip/effects.h +++ b/src/libs/utils/tooltip/effects.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tooltip/reuse.h b/src/libs/utils/tooltip/reuse.h index 47df935e3ad..afaee3136d5 100644 --- a/src/libs/utils/tooltip/reuse.h +++ b/src/libs/utils/tooltip/reuse.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tooltip/tipcontents.cpp b/src/libs/utils/tooltip/tipcontents.cpp index 9a2d376690f..23ac6b6fd29 100644 --- a/src/libs/utils/tooltip/tipcontents.cpp +++ b/src/libs/utils/tooltip/tipcontents.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tooltip/tipcontents.h b/src/libs/utils/tooltip/tipcontents.h index 4632f659631..5cac25ee19c 100644 --- a/src/libs/utils/tooltip/tipcontents.h +++ b/src/libs/utils/tooltip/tipcontents.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tooltip/tips.cpp b/src/libs/utils/tooltip/tips.cpp index 6d3928ac5ea..25572d99b24 100644 --- a/src/libs/utils/tooltip/tips.cpp +++ b/src/libs/utils/tooltip/tips.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tooltip/tips.h b/src/libs/utils/tooltip/tips.h index 56e16120f4f..13ada7c3ebd 100644 --- a/src/libs/utils/tooltip/tips.h +++ b/src/libs/utils/tooltip/tips.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tooltip/tooltip.cpp b/src/libs/utils/tooltip/tooltip.cpp index 469fd5e33e2..35450e8a74b 100644 --- a/src/libs/utils/tooltip/tooltip.cpp +++ b/src/libs/utils/tooltip/tooltip.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/tooltip/tooltip.h b/src/libs/utils/tooltip/tooltip.h index b5d8c517d76..486c42718b4 100644 --- a/src/libs/utils/tooltip/tooltip.h +++ b/src/libs/utils/tooltip/tooltip.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/uncommentselection.cpp b/src/libs/utils/uncommentselection.cpp index dae53e3cd43..21a4756c504 100644 --- a/src/libs/utils/uncommentselection.cpp +++ b/src/libs/utils/uncommentselection.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/uncommentselection.h b/src/libs/utils/uncommentselection.h index a0cad994df5..14c16cc786e 100644 --- a/src/libs/utils/uncommentselection.h +++ b/src/libs/utils/uncommentselection.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/unixutils.cpp b/src/libs/utils/unixutils.cpp index f049a8645c3..7b22edf3215 100644 --- a/src/libs/utils/unixutils.cpp +++ b/src/libs/utils/unixutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/unixutils.h b/src/libs/utils/unixutils.h index 99b41a38e2f..ed2d8542d98 100644 --- a/src/libs/utils/unixutils.h +++ b/src/libs/utils/unixutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/utils_global.h b/src/libs/utils/utils_global.h index a59a1f1655a..6c3d62da25c 100644 --- a/src/libs/utils/utils_global.h +++ b/src/libs/utils/utils_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/winutils.cpp b/src/libs/utils/winutils.cpp index 59daad82df9..dd33502bdef 100644 --- a/src/libs/utils/winutils.cpp +++ b/src/libs/utils/winutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/winutils.h b/src/libs/utils/winutils.h index 368fb68b3a6..7cce2ebef46 100644 --- a/src/libs/utils/winutils.h +++ b/src/libs/utils/winutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/wizard.cpp b/src/libs/utils/wizard.cpp index dfe849ae07a..5f37a418627 100644 --- a/src/libs/utils/wizard.cpp +++ b/src/libs/utils/wizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/utils/wizard.h b/src/libs/utils/wizard.h index ece9ef2c205..78d8986d2c7 100644 --- a/src/libs/utils/wizard.h +++ b/src/libs/utils/wizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/zeroconf/avahiLib.cpp b/src/libs/zeroconf/avahiLib.cpp index 3d34d35222c..99d0a9416f2 100644 --- a/src/libs/zeroconf/avahiLib.cpp +++ b/src/libs/zeroconf/avahiLib.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/zeroconf/dnsSdLib.cpp b/src/libs/zeroconf/dnsSdLib.cpp index 2295cd65ad9..c79d70fb1a6 100644 --- a/src/libs/zeroconf/dnsSdLib.cpp +++ b/src/libs/zeroconf/dnsSdLib.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/zeroconf/embeddedLib.cpp b/src/libs/zeroconf/embeddedLib.cpp index 993944d0b0e..e1f311fb14c 100644 --- a/src/libs/zeroconf/embeddedLib.cpp +++ b/src/libs/zeroconf/embeddedLib.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/zeroconf/servicebrowser.cpp b/src/libs/zeroconf/servicebrowser.cpp index 0e6f26eeabf..23c0ad1bf04 100644 --- a/src/libs/zeroconf/servicebrowser.cpp +++ b/src/libs/zeroconf/servicebrowser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/zeroconf/servicebrowser.h b/src/libs/zeroconf/servicebrowser.h index 836632260af..ac2f3352f12 100644 --- a/src/libs/zeroconf/servicebrowser.h +++ b/src/libs/zeroconf/servicebrowser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/zeroconf/servicebrowser_p.h b/src/libs/zeroconf/servicebrowser_p.h index ae2f38ef3e9..5e5fc4c4728 100644 --- a/src/libs/zeroconf/servicebrowser_p.h +++ b/src/libs/zeroconf/servicebrowser_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/zeroconf/syssocket.h b/src/libs/zeroconf/syssocket.h index 1e0b7a6ac65..92213c309a8 100644 --- a/src/libs/zeroconf/syssocket.h +++ b/src/libs/zeroconf/syssocket.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/libs/zeroconf/zeroconf_global.h b/src/libs/zeroconf/zeroconf_global.h index c2e56a8618a..8580db6fe70 100644 --- a/src/libs/zeroconf/zeroconf_global.h +++ b/src/libs/zeroconf/zeroconf_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/analyzerbase/AnalyzerBase.pluginspec.in b/src/plugins/analyzerbase/AnalyzerBase.pluginspec.in index f552de7c6a3..50588cf90e2 100644 --- a/src/plugins/analyzerbase/AnalyzerBase.pluginspec.in +++ b/src/plugins/analyzerbase/AnalyzerBase.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"AnalyzerBase\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/analyzerbase/analyzerbase_global.h b/src/plugins/analyzerbase/analyzerbase_global.h index a5966fd4729..3bd7271854b 100644 --- a/src/plugins/analyzerbase/analyzerbase_global.h +++ b/src/plugins/analyzerbase/analyzerbase_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzerconstants.h b/src/plugins/analyzerbase/analyzerconstants.h index 034e0360592..90879cbc68d 100644 --- a/src/plugins/analyzerbase/analyzerconstants.h +++ b/src/plugins/analyzerbase/analyzerconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzermanager.cpp b/src/plugins/analyzerbase/analyzermanager.cpp index 9488196af7a..ae154def7ab 100644 --- a/src/plugins/analyzerbase/analyzermanager.cpp +++ b/src/plugins/analyzerbase/analyzermanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzermanager.h b/src/plugins/analyzerbase/analyzermanager.h index 7ea42c0b183..2ba0764e652 100644 --- a/src/plugins/analyzerbase/analyzermanager.h +++ b/src/plugins/analyzerbase/analyzermanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzerplugin.cpp b/src/plugins/analyzerbase/analyzerplugin.cpp index 621e5f6d998..d069392d633 100644 --- a/src/plugins/analyzerbase/analyzerplugin.cpp +++ b/src/plugins/analyzerbase/analyzerplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzerplugin.h b/src/plugins/analyzerbase/analyzerplugin.h index 2afaf12df14..18c50e3058c 100644 --- a/src/plugins/analyzerbase/analyzerplugin.h +++ b/src/plugins/analyzerbase/analyzerplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzerrunconfigwidget.cpp b/src/plugins/analyzerbase/analyzerrunconfigwidget.cpp index 65a24e6041c..47510bd5f75 100644 --- a/src/plugins/analyzerbase/analyzerrunconfigwidget.cpp +++ b/src/plugins/analyzerbase/analyzerrunconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzerrunconfigwidget.h b/src/plugins/analyzerbase/analyzerrunconfigwidget.h index 8db66701724..47b9516eb67 100644 --- a/src/plugins/analyzerbase/analyzerrunconfigwidget.h +++ b/src/plugins/analyzerbase/analyzerrunconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzerruncontrol.cpp b/src/plugins/analyzerbase/analyzerruncontrol.cpp index bd8f9190d1c..a01cb0b9009 100644 --- a/src/plugins/analyzerbase/analyzerruncontrol.cpp +++ b/src/plugins/analyzerbase/analyzerruncontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzerruncontrol.h b/src/plugins/analyzerbase/analyzerruncontrol.h index f831e973797..28fb78d52cb 100644 --- a/src/plugins/analyzerbase/analyzerruncontrol.h +++ b/src/plugins/analyzerbase/analyzerruncontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** diff --git a/src/plugins/analyzerbase/analyzerstartparameters.h b/src/plugins/analyzerbase/analyzerstartparameters.h index 034f962f745..792c4b44aef 100644 --- a/src/plugins/analyzerbase/analyzerstartparameters.h +++ b/src/plugins/analyzerbase/analyzerstartparameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/analyzerbase/analyzerutils.cpp b/src/plugins/analyzerbase/analyzerutils.cpp index 2b142ccab7a..125829e8449 100644 --- a/src/plugins/analyzerbase/analyzerutils.cpp +++ b/src/plugins/analyzerbase/analyzerutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/analyzerbase/analyzerutils.h b/src/plugins/analyzerbase/analyzerutils.h index ce2e45d05ac..555e681aa78 100644 --- a/src/plugins/analyzerbase/analyzerutils.h +++ b/src/plugins/analyzerbase/analyzerutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/analyzerbase/ianalyzertool.cpp b/src/plugins/analyzerbase/ianalyzertool.cpp index ca12ab7318b..7998678884e 100644 --- a/src/plugins/analyzerbase/ianalyzertool.cpp +++ b/src/plugins/analyzerbase/ianalyzertool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/analyzerbase/ianalyzertool.h b/src/plugins/analyzerbase/ianalyzertool.h index ae452128200..41fef32d39a 100644 --- a/src/plugins/analyzerbase/ianalyzertool.h +++ b/src/plugins/analyzerbase/ianalyzertool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/analyzerbase/startremotedialog.cpp b/src/plugins/analyzerbase/startremotedialog.cpp index a22af6ac26f..e29ac739098 100644 --- a/src/plugins/analyzerbase/startremotedialog.cpp +++ b/src/plugins/analyzerbase/startremotedialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/analyzerbase/startremotedialog.h b/src/plugins/analyzerbase/startremotedialog.h index 16757f0167b..ce07acca8e1 100644 --- a/src/plugins/analyzerbase/startremotedialog.h +++ b/src/plugins/analyzerbase/startremotedialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/Android.pluginspec.in b/src/plugins/android/Android.pluginspec.in index b828f07f1a3..562a88e53de 100644 --- a/src/plugins/android/Android.pluginspec.in +++ b/src/plugins/android/Android.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Android\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>KDE Necessitas</vendor> - <copyright>(C) 2013 BogDan Vatra</copyright> + <copyright>(C) 2014 BogDan Vatra</copyright> <license> Commercial Usage diff --git a/src/plugins/android/androidanalyzesupport.cpp b/src/plugins/android/androidanalyzesupport.cpp index f514537ec46..858920512f9 100644 --- a/src/plugins/android/androidanalyzesupport.cpp +++ b/src/plugins/android/androidanalyzesupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidanalyzesupport.h b/src/plugins/android/androidanalyzesupport.h index 0f0f86f4bbb..81a6ba61c26 100644 --- a/src/plugins/android/androidanalyzesupport.h +++ b/src/plugins/android/androidanalyzesupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidconfigurations.cpp b/src/plugins/android/androidconfigurations.cpp index 6254c11d23b..ec27cc34d53 100644 --- a/src/plugins/android/androidconfigurations.cpp +++ b/src/plugins/android/androidconfigurations.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidconfigurations.h b/src/plugins/android/androidconfigurations.h index 1d87f5b27d6..41ba97dbc4f 100644 --- a/src/plugins/android/androidconfigurations.h +++ b/src/plugins/android/androidconfigurations.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidconstants.h b/src/plugins/android/androidconstants.h index f38f851251d..7cfcdf00699 100644 --- a/src/plugins/android/androidconstants.h +++ b/src/plugins/android/androidconstants.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidcreatekeystorecertificate.cpp b/src/plugins/android/androidcreatekeystorecertificate.cpp index 5fc5dc02858..92d88db2fad 100644 --- a/src/plugins/android/androidcreatekeystorecertificate.cpp +++ b/src/plugins/android/androidcreatekeystorecertificate.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidcreatekeystorecertificate.h b/src/plugins/android/androidcreatekeystorecertificate.h index 021a52b188f..112e1f11585 100644 --- a/src/plugins/android/androidcreatekeystorecertificate.h +++ b/src/plugins/android/androidcreatekeystorecertificate.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddebugsupport.cpp b/src/plugins/android/androiddebugsupport.cpp index b17e0cc22b4..ff1dd389d39 100644 --- a/src/plugins/android/androiddebugsupport.cpp +++ b/src/plugins/android/androiddebugsupport.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddebugsupport.h b/src/plugins/android/androiddebugsupport.h index 21baecf33fa..c5f11384c8a 100644 --- a/src/plugins/android/androiddebugsupport.h +++ b/src/plugins/android/androiddebugsupport.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeployconfiguration.cpp b/src/plugins/android/androiddeployconfiguration.cpp index d7043e8cbd5..bccae4d60b2 100644 --- a/src/plugins/android/androiddeployconfiguration.cpp +++ b/src/plugins/android/androiddeployconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeployconfiguration.h b/src/plugins/android/androiddeployconfiguration.h index 654c5843c89..11c90d96d60 100644 --- a/src/plugins/android/androiddeployconfiguration.h +++ b/src/plugins/android/androiddeployconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeployqtstep.cpp b/src/plugins/android/androiddeployqtstep.cpp index b5d0a796e6e..7e87a7bfb57 100644 --- a/src/plugins/android/androiddeployqtstep.cpp +++ b/src/plugins/android/androiddeployqtstep.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeployqtstep.h b/src/plugins/android/androiddeployqtstep.h index 08798dc874a..a6ab5d33727 100644 --- a/src/plugins/android/androiddeployqtstep.h +++ b/src/plugins/android/androiddeployqtstep.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeployqtwidget.cpp b/src/plugins/android/androiddeployqtwidget.cpp index 7cc2e1561c2..9bf0d0afeab 100644 --- a/src/plugins/android/androiddeployqtwidget.cpp +++ b/src/plugins/android/androiddeployqtwidget.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeployqtwidget.h b/src/plugins/android/androiddeployqtwidget.h index fc65466eb54..f4a28c0eeb3 100644 --- a/src/plugins/android/androiddeployqtwidget.h +++ b/src/plugins/android/androiddeployqtwidget.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeploystep.cpp b/src/plugins/android/androiddeploystep.cpp index d971eb6e714..957df22b415 100644 --- a/src/plugins/android/androiddeploystep.cpp +++ b/src/plugins/android/androiddeploystep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeploystep.h b/src/plugins/android/androiddeploystep.h index df7ebd7e2b9..f8f1536dda9 100644 --- a/src/plugins/android/androiddeploystep.h +++ b/src/plugins/android/androiddeploystep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeploystepfactory.cpp b/src/plugins/android/androiddeploystepfactory.cpp index b0f6a263f64..b0203235ee9 100644 --- a/src/plugins/android/androiddeploystepfactory.cpp +++ b/src/plugins/android/androiddeploystepfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeploystepfactory.h b/src/plugins/android/androiddeploystepfactory.h index 58144d3d1c7..798f8e5e941 100644 --- a/src/plugins/android/androiddeploystepfactory.h +++ b/src/plugins/android/androiddeploystepfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeploystepwidget.cpp b/src/plugins/android/androiddeploystepwidget.cpp index 757e85ca7c8..b37558d27f8 100644 --- a/src/plugins/android/androiddeploystepwidget.cpp +++ b/src/plugins/android/androiddeploystepwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddeploystepwidget.h b/src/plugins/android/androiddeploystepwidget.h index 00781658e98..31cdd527c85 100644 --- a/src/plugins/android/androiddeploystepwidget.h +++ b/src/plugins/android/androiddeploystepwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp index 20f9ceea6d6..ac807ed7997 100644 --- a/src/plugins/android/androiddevice.cpp +++ b/src/plugins/android/androiddevice.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddevice.h b/src/plugins/android/androiddevice.h index e371c87eba9..ae119a96c37 100644 --- a/src/plugins/android/androiddevice.h +++ b/src/plugins/android/androiddevice.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddevicedialog.cpp b/src/plugins/android/androiddevicedialog.cpp index 6b3fb90bd58..46dca8e37cc 100644 --- a/src/plugins/android/androiddevicedialog.cpp +++ b/src/plugins/android/androiddevicedialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddevicedialog.h b/src/plugins/android/androiddevicedialog.h index 2b8a15ba0ac..0c5c5ed9646 100644 --- a/src/plugins/android/androiddevicedialog.h +++ b/src/plugins/android/androiddevicedialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddevicefactory.cpp b/src/plugins/android/androiddevicefactory.cpp index f5ee8aad86b..dff6ad764a2 100644 --- a/src/plugins/android/androiddevicefactory.cpp +++ b/src/plugins/android/androiddevicefactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiddevicefactory.h b/src/plugins/android/androiddevicefactory.h index 82abf2f50b8..d928491317b 100644 --- a/src/plugins/android/androiddevicefactory.h +++ b/src/plugins/android/androiddevicefactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiderrormessage.cpp b/src/plugins/android/androiderrormessage.cpp index cbbd06b21af..1bdcfd9deb8 100644 --- a/src/plugins/android/androiderrormessage.cpp +++ b/src/plugins/android/androiderrormessage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androiderrormessage.h b/src/plugins/android/androiderrormessage.h index fc7cf9be118..d95538aa22c 100644 --- a/src/plugins/android/androiderrormessage.h +++ b/src/plugins/android/androiderrormessage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidextralibrarylistmodel.cpp b/src/plugins/android/androidextralibrarylistmodel.cpp index 5715117cb83..01c24dfead4 100644 --- a/src/plugins/android/androidextralibrarylistmodel.cpp +++ b/src/plugins/android/androidextralibrarylistmodel.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidextralibrarylistmodel.h b/src/plugins/android/androidextralibrarylistmodel.h index c768b7de654..3666a664e50 100644 --- a/src/plugins/android/androidextralibrarylistmodel.h +++ b/src/plugins/android/androidextralibrarylistmodel.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidgdbserverkitinformation.cpp b/src/plugins/android/androidgdbserverkitinformation.cpp index 0224453d40b..6a1d9fda283 100644 --- a/src/plugins/android/androidgdbserverkitinformation.cpp +++ b/src/plugins/android/androidgdbserverkitinformation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidgdbserverkitinformation.h b/src/plugins/android/androidgdbserverkitinformation.h index 8b196276fc7..cc60c740c9e 100644 --- a/src/plugins/android/androidgdbserverkitinformation.h +++ b/src/plugins/android/androidgdbserverkitinformation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidglobal.h b/src/plugins/android/androidglobal.h index bb55211527e..dc93a878b42 100644 --- a/src/plugins/android/androidglobal.h +++ b/src/plugins/android/androidglobal.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanager.cpp b/src/plugins/android/androidmanager.cpp index 712933a627c..3e83c3a2821 100644 --- a/src/plugins/android/androidmanager.cpp +++ b/src/plugins/android/androidmanager.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanager.h b/src/plugins/android/androidmanager.h index df81322e537..75b2fe2b72d 100644 --- a/src/plugins/android/androidmanager.h +++ b/src/plugins/android/androidmanager.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanifestdocument.cpp b/src/plugins/android/androidmanifestdocument.cpp index dc6468742ab..b1f1552a8d7 100644 --- a/src/plugins/android/androidmanifestdocument.cpp +++ b/src/plugins/android/androidmanifestdocument.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanifestdocument.h b/src/plugins/android/androidmanifestdocument.h index 9ab2eee1f15..1a674751c1e 100644 --- a/src/plugins/android/androidmanifestdocument.h +++ b/src/plugins/android/androidmanifestdocument.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanifesteditor.cpp b/src/plugins/android/androidmanifesteditor.cpp index 5f1bc1e8a39..9909fa10abe 100644 --- a/src/plugins/android/androidmanifesteditor.cpp +++ b/src/plugins/android/androidmanifesteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanifesteditor.h b/src/plugins/android/androidmanifesteditor.h index a51acefe1be..98465171c5a 100644 --- a/src/plugins/android/androidmanifesteditor.h +++ b/src/plugins/android/androidmanifesteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanifesteditorfactory.cpp b/src/plugins/android/androidmanifesteditorfactory.cpp index ba80296bd72..e6e5b0ed0b3 100644 --- a/src/plugins/android/androidmanifesteditorfactory.cpp +++ b/src/plugins/android/androidmanifesteditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanifesteditorfactory.h b/src/plugins/android/androidmanifesteditorfactory.h index 3a1fa07844e..47f1b447620 100644 --- a/src/plugins/android/androidmanifesteditorfactory.h +++ b/src/plugins/android/androidmanifesteditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanifesteditorwidget.cpp b/src/plugins/android/androidmanifesteditorwidget.cpp index 4c74236bc56..1e50a4987e2 100644 --- a/src/plugins/android/androidmanifesteditorwidget.cpp +++ b/src/plugins/android/androidmanifesteditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidmanifesteditorwidget.h b/src/plugins/android/androidmanifesteditorwidget.h index cdd77ef9262..74b9862cc77 100644 --- a/src/plugins/android/androidmanifesteditorwidget.h +++ b/src/plugins/android/androidmanifesteditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackagecreationfactory.cpp b/src/plugins/android/androidpackagecreationfactory.cpp index 6d19e081aab..a44274fc477 100644 --- a/src/plugins/android/androidpackagecreationfactory.cpp +++ b/src/plugins/android/androidpackagecreationfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackagecreationfactory.h b/src/plugins/android/androidpackagecreationfactory.h index 7cd4a14cfb3..3e86428dbd1 100644 --- a/src/plugins/android/androidpackagecreationfactory.h +++ b/src/plugins/android/androidpackagecreationfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackagecreationstep.cpp b/src/plugins/android/androidpackagecreationstep.cpp index d036cf5aecc..4a33fc117d7 100644 --- a/src/plugins/android/androidpackagecreationstep.cpp +++ b/src/plugins/android/androidpackagecreationstep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackagecreationstep.h b/src/plugins/android/androidpackagecreationstep.h index 5563134df47..baa703627e3 100644 --- a/src/plugins/android/androidpackagecreationstep.h +++ b/src/plugins/android/androidpackagecreationstep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackagecreationwidget.cpp b/src/plugins/android/androidpackagecreationwidget.cpp index d6ebf62a2f3..54adb8ea294 100644 --- a/src/plugins/android/androidpackagecreationwidget.cpp +++ b/src/plugins/android/androidpackagecreationwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackagecreationwidget.h b/src/plugins/android/androidpackagecreationwidget.h index 81f85f93c86..4eb0916b469 100644 --- a/src/plugins/android/androidpackagecreationwidget.h +++ b/src/plugins/android/androidpackagecreationwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackageinstallationfactory.cpp b/src/plugins/android/androidpackageinstallationfactory.cpp index e054f903c8e..bc3db966176 100644 --- a/src/plugins/android/androidpackageinstallationfactory.cpp +++ b/src/plugins/android/androidpackageinstallationfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackageinstallationfactory.h b/src/plugins/android/androidpackageinstallationfactory.h index fe9e5d3bc90..758cfe10003 100644 --- a/src/plugins/android/androidpackageinstallationfactory.h +++ b/src/plugins/android/androidpackageinstallationfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackageinstallationstep.cpp b/src/plugins/android/androidpackageinstallationstep.cpp index 00bb788e30a..a3e0f34ac63 100644 --- a/src/plugins/android/androidpackageinstallationstep.cpp +++ b/src/plugins/android/androidpackageinstallationstep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpackageinstallationstep.h b/src/plugins/android/androidpackageinstallationstep.h index 4608c1d7ea3..dd61729925e 100644 --- a/src/plugins/android/androidpackageinstallationstep.h +++ b/src/plugins/android/androidpackageinstallationstep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidplugin.cpp b/src/plugins/android/androidplugin.cpp index d9b897f6998..74556bac3d3 100644 --- a/src/plugins/android/androidplugin.cpp +++ b/src/plugins/android/androidplugin.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidplugin.h b/src/plugins/android/androidplugin.h index e2b3542991a..a087728cb71 100644 --- a/src/plugins/android/androidplugin.h +++ b/src/plugins/android/androidplugin.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpotentialkit.cpp b/src/plugins/android/androidpotentialkit.cpp index 9083d018f4f..6eb93201c44 100644 --- a/src/plugins/android/androidpotentialkit.cpp +++ b/src/plugins/android/androidpotentialkit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidpotentialkit.h b/src/plugins/android/androidpotentialkit.h index b1be7604770..fe6239e6cc4 100644 --- a/src/plugins/android/androidpotentialkit.h +++ b/src/plugins/android/androidpotentialkit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidqtversion.cpp b/src/plugins/android/androidqtversion.cpp index b1e1dc6fcdc..326672ebbb7 100644 --- a/src/plugins/android/androidqtversion.cpp +++ b/src/plugins/android/androidqtversion.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidqtversion.h b/src/plugins/android/androidqtversion.h index 6ac95f00d5e..0d6d7ee52b3 100644 --- a/src/plugins/android/androidqtversion.h +++ b/src/plugins/android/androidqtversion.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidqtversionfactory.cpp b/src/plugins/android/androidqtversionfactory.cpp index ebdd5d6f5e7..b4d3a91abd0 100644 --- a/src/plugins/android/androidqtversionfactory.cpp +++ b/src/plugins/android/androidqtversionfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidqtversionfactory.h b/src/plugins/android/androidqtversionfactory.h index bd053bbfce2..daedf8bc733 100644 --- a/src/plugins/android/androidqtversionfactory.h +++ b/src/plugins/android/androidqtversionfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidrunconfiguration.cpp b/src/plugins/android/androidrunconfiguration.cpp index 742bf776177..523981646a8 100644 --- a/src/plugins/android/androidrunconfiguration.cpp +++ b/src/plugins/android/androidrunconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidrunconfiguration.h b/src/plugins/android/androidrunconfiguration.h index a8bbb65e433..6b8faa3e6a7 100644 --- a/src/plugins/android/androidrunconfiguration.h +++ b/src/plugins/android/androidrunconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidruncontrol.cpp b/src/plugins/android/androidruncontrol.cpp index 8b8e2ae5fac..4134507d2a9 100644 --- a/src/plugins/android/androidruncontrol.cpp +++ b/src/plugins/android/androidruncontrol.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidruncontrol.h b/src/plugins/android/androidruncontrol.h index 777f58abe7c..74c119d559d 100644 --- a/src/plugins/android/androidruncontrol.h +++ b/src/plugins/android/androidruncontrol.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidrunfactories.cpp b/src/plugins/android/androidrunfactories.cpp index 95ddaef15a6..4476ce588ab 100644 --- a/src/plugins/android/androidrunfactories.cpp +++ b/src/plugins/android/androidrunfactories.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidrunfactories.h b/src/plugins/android/androidrunfactories.h index f4cc867eb2d..3e3260582fc 100644 --- a/src/plugins/android/androidrunfactories.h +++ b/src/plugins/android/androidrunfactories.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidrunner.cpp b/src/plugins/android/androidrunner.cpp index 881d61cc822..7370d89c5c1 100644 --- a/src/plugins/android/androidrunner.cpp +++ b/src/plugins/android/androidrunner.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidrunner.h b/src/plugins/android/androidrunner.h index 36950c61aa7..589f27ecd49 100644 --- a/src/plugins/android/androidrunner.h +++ b/src/plugins/android/androidrunner.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidrunsupport.cpp b/src/plugins/android/androidrunsupport.cpp index 83ee05df598..f8e258d8883 100644 --- a/src/plugins/android/androidrunsupport.cpp +++ b/src/plugins/android/androidrunsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidrunsupport.h b/src/plugins/android/androidrunsupport.h index cb699b9bece..3d12a83f3f0 100644 --- a/src/plugins/android/androidrunsupport.h +++ b/src/plugins/android/androidrunsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidsettingspage.cpp b/src/plugins/android/androidsettingspage.cpp index 95cb4af425f..a38d81877f3 100644 --- a/src/plugins/android/androidsettingspage.cpp +++ b/src/plugins/android/androidsettingspage.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidsettingspage.h b/src/plugins/android/androidsettingspage.h index 2beb36c3cb2..1cecf78e36b 100644 --- a/src/plugins/android/androidsettingspage.h +++ b/src/plugins/android/androidsettingspage.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidsettingswidget.cpp b/src/plugins/android/androidsettingswidget.cpp index 4ab8228d0b3..1c16ccda170 100644 --- a/src/plugins/android/androidsettingswidget.cpp +++ b/src/plugins/android/androidsettingswidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidsettingswidget.h b/src/plugins/android/androidsettingswidget.h index 74e7fe6d433..145785ab409 100644 --- a/src/plugins/android/androidsettingswidget.h +++ b/src/plugins/android/androidsettingswidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidsignaloperation.cpp b/src/plugins/android/androidsignaloperation.cpp index 8aa31400bbb..0b2a4868b5f 100644 --- a/src/plugins/android/androidsignaloperation.cpp +++ b/src/plugins/android/androidsignaloperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidsignaloperation.h b/src/plugins/android/androidsignaloperation.h index 8ee6f390f43..77cf0f5d29d 100644 --- a/src/plugins/android/androidsignaloperation.h +++ b/src/plugins/android/androidsignaloperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidtoolchain.cpp b/src/plugins/android/androidtoolchain.cpp index a1148870d12..b55ace71dc6 100644 --- a/src/plugins/android/androidtoolchain.cpp +++ b/src/plugins/android/androidtoolchain.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/androidtoolchain.h b/src/plugins/android/androidtoolchain.h index 0ce13be219d..343545598a4 100644 --- a/src/plugins/android/androidtoolchain.h +++ b/src/plugins/android/androidtoolchain.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/certificatesmodel.cpp b/src/plugins/android/certificatesmodel.cpp index e43b36008f8..1fa72af98d3 100644 --- a/src/plugins/android/certificatesmodel.cpp +++ b/src/plugins/android/certificatesmodel.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/certificatesmodel.h b/src/plugins/android/certificatesmodel.h index f712433aa8f..1061e50cf20 100644 --- a/src/plugins/android/certificatesmodel.h +++ b/src/plugins/android/certificatesmodel.h @@ -1,7 +1,7 @@ /**************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/createandroidmanifestwizard.cpp b/src/plugins/android/createandroidmanifestwizard.cpp index be51fb1c77d..5176b789309 100644 --- a/src/plugins/android/createandroidmanifestwizard.cpp +++ b/src/plugins/android/createandroidmanifestwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/createandroidmanifestwizard.h b/src/plugins/android/createandroidmanifestwizard.h index e32445ee0fd..a92c610e6f4 100644 --- a/src/plugins/android/createandroidmanifestwizard.h +++ b/src/plugins/android/createandroidmanifestwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/javaparser.cpp b/src/plugins/android/javaparser.cpp index 8ef58a936cd..6f8183d715e 100644 --- a/src/plugins/android/javaparser.cpp +++ b/src/plugins/android/javaparser.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/android/javaparser.h b/src/plugins/android/javaparser.h index c28a5a2418d..90ae8e8b911 100644 --- a/src/plugins/android/javaparser.h +++ b/src/plugins/android/javaparser.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com> +** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/autotoolsprojectmanager/AutotoolsProjectManager.pluginspec.in b/src/plugins/autotoolsprojectmanager/AutotoolsProjectManager.pluginspec.in index 1607b135d9b..74d504cadd2 100644 --- a/src/plugins/autotoolsprojectmanager/AutotoolsProjectManager.pluginspec.in +++ b/src/plugins/autotoolsprojectmanager/AutotoolsProjectManager.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"AutotoolsProjectManager\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\" experimental=\"true\"> <vendor>Openismus GmbH</vendor> - <copyright>(C) 2013 Openismus GmbH</copyright> + <copyright>(C) 2014 Openismus GmbH</copyright> <license> Commercial Usage diff --git a/src/plugins/autotoolsprojectmanager/autogenstep.cpp b/src/plugins/autotoolsprojectmanager/autogenstep.cpp index 06071a228e4..db11c974756 100644 --- a/src/plugins/autotoolsprojectmanager/autogenstep.cpp +++ b/src/plugins/autotoolsprojectmanager/autogenstep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autogenstep.h b/src/plugins/autotoolsprojectmanager/autogenstep.h index 7efddb5b2ba..333d3b961b7 100644 --- a/src/plugins/autotoolsprojectmanager/autogenstep.h +++ b/src/plugins/autotoolsprojectmanager/autogenstep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autoreconfstep.cpp b/src/plugins/autotoolsprojectmanager/autoreconfstep.cpp index 1b8d7b8990a..593f7eb3c37 100644 --- a/src/plugins/autotoolsprojectmanager/autoreconfstep.cpp +++ b/src/plugins/autotoolsprojectmanager/autoreconfstep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autoreconfstep.h b/src/plugins/autotoolsprojectmanager/autoreconfstep.h index 232fa8b6ec6..1a3eaaf3e00 100644 --- a/src/plugins/autotoolsprojectmanager/autoreconfstep.h +++ b/src/plugins/autotoolsprojectmanager/autoreconfstep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsbuildconfiguration.cpp b/src/plugins/autotoolsprojectmanager/autotoolsbuildconfiguration.cpp index 11fe8afdcf5..efe1b079e6c 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsbuildconfiguration.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolsbuildconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsbuildconfiguration.h b/src/plugins/autotoolsprojectmanager/autotoolsbuildconfiguration.h index 2aedd932460..3bee5f7116d 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsbuildconfiguration.h +++ b/src/plugins/autotoolsprojectmanager/autotoolsbuildconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.cpp b/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.cpp index 627510bb467..6750b27796b 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h b/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h index 183c2e4300c..d2cff3523e4 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h +++ b/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsmanager.cpp b/src/plugins/autotoolsprojectmanager/autotoolsmanager.cpp index 4e72214ab25..9a884d8fec9 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsmanager.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolsmanager.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsmanager.h b/src/plugins/autotoolsprojectmanager/autotoolsmanager.h index f9956e26b30..398c165fe67 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsmanager.h +++ b/src/plugins/autotoolsprojectmanager/autotoolsmanager.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsopenprojectwizard.cpp b/src/plugins/autotoolsprojectmanager/autotoolsopenprojectwizard.cpp index 473a61cd5a3..68b84ca169a 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsopenprojectwizard.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolsopenprojectwizard.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsopenprojectwizard.h b/src/plugins/autotoolsprojectmanager/autotoolsopenprojectwizard.h index d22ec98cbf9..b9f14b98a55 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsopenprojectwizard.h +++ b/src/plugins/autotoolsprojectmanager/autotoolsopenprojectwizard.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsproject.cpp b/src/plugins/autotoolsprojectmanager/autotoolsproject.cpp index 2891954bf13..8877a661f61 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsproject.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolsproject.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsproject.h b/src/plugins/autotoolsprojectmanager/autotoolsproject.h index 1af14a6bed8..862e1204d72 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsproject.h +++ b/src/plugins/autotoolsprojectmanager/autotoolsproject.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsprojectconstants.h b/src/plugins/autotoolsprojectmanager/autotoolsprojectconstants.h index 44a0c21f6d8..cf1a468092a 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsprojectconstants.h +++ b/src/plugins/autotoolsprojectmanager/autotoolsprojectconstants.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsprojectfile.cpp b/src/plugins/autotoolsprojectmanager/autotoolsprojectfile.cpp index feca2cc2419..a2dd3898c76 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsprojectfile.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolsprojectfile.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsprojectfile.h b/src/plugins/autotoolsprojectmanager/autotoolsprojectfile.h index 74babf09624..36f9b7d168d 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsprojectfile.h +++ b/src/plugins/autotoolsprojectmanager/autotoolsprojectfile.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsprojectnode.cpp b/src/plugins/autotoolsprojectmanager/autotoolsprojectnode.cpp index 8bca0724def..c646dbad784 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsprojectnode.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolsprojectnode.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsprojectnode.h b/src/plugins/autotoolsprojectmanager/autotoolsprojectnode.h index 4dd627be0bd..f31d3ac98f3 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsprojectnode.h +++ b/src/plugins/autotoolsprojectmanager/autotoolsprojectnode.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.cpp b/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.cpp index fbf9d48ddda..109f262033f 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.h b/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.h index cdf43f1ab72..c4afac418a7 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.h +++ b/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/configurestep.cpp b/src/plugins/autotoolsprojectmanager/configurestep.cpp index 8f0b13d818d..7d83f36ffdc 100644 --- a/src/plugins/autotoolsprojectmanager/configurestep.cpp +++ b/src/plugins/autotoolsprojectmanager/configurestep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/configurestep.h b/src/plugins/autotoolsprojectmanager/configurestep.h index cb1793d0445..e6845d8477e 100644 --- a/src/plugins/autotoolsprojectmanager/configurestep.h +++ b/src/plugins/autotoolsprojectmanager/configurestep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/makefileparser.cpp b/src/plugins/autotoolsprojectmanager/makefileparser.cpp index f1cbae544e0..1a11ee1b021 100644 --- a/src/plugins/autotoolsprojectmanager/makefileparser.cpp +++ b/src/plugins/autotoolsprojectmanager/makefileparser.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/makefileparser.h b/src/plugins/autotoolsprojectmanager/makefileparser.h index 894201bef55..66616f430b1 100644 --- a/src/plugins/autotoolsprojectmanager/makefileparser.h +++ b/src/plugins/autotoolsprojectmanager/makefileparser.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/makefileparserthread.cpp b/src/plugins/autotoolsprojectmanager/makefileparserthread.cpp index a6d45870ff8..39e902f44ae 100644 --- a/src/plugins/autotoolsprojectmanager/makefileparserthread.cpp +++ b/src/plugins/autotoolsprojectmanager/makefileparserthread.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/makefileparserthread.h b/src/plugins/autotoolsprojectmanager/makefileparserthread.h index c119de7c550..fb268497b2f 100644 --- a/src/plugins/autotoolsprojectmanager/makefileparserthread.h +++ b/src/plugins/autotoolsprojectmanager/makefileparserthread.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/makestep.cpp b/src/plugins/autotoolsprojectmanager/makestep.cpp index 7eef782c692..585e406c80b 100644 --- a/src/plugins/autotoolsprojectmanager/makestep.cpp +++ b/src/plugins/autotoolsprojectmanager/makestep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/autotoolsprojectmanager/makestep.h b/src/plugins/autotoolsprojectmanager/makestep.h index c7a9f70abbd..15cf1bfc859 100644 --- a/src/plugins/autotoolsprojectmanager/makestep.h +++ b/src/plugins/autotoolsprojectmanager/makestep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Openismus GmbH. +** Copyright (C) 2014 Openismus GmbH. ** Authors: Peter Penz (ppenz@openismus.com) ** Patricia Santana Cruz (patriciasantanacruz@gmail.com) ** Contact: http://www.qt-project.org/legal diff --git a/src/plugins/baremetal/BareMetal.pluginspec.in b/src/plugins/baremetal/BareMetal.pluginspec.in index fb4d476f933..3199ed59b4f 100644 --- a/src/plugins/baremetal/BareMetal.pluginspec.in +++ b/src/plugins/baremetal/BareMetal.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"BareMetal\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\" experimental=\"true\"> <vendor>Tim Sander</vendor> - <copyright>Copyright (C) 2013 Tim Sander</copyright> + <copyright>Copyright (C) 2014 Tim Sander</copyright> <license> Commercial Usage diff --git a/src/plugins/baremetal/baremetalconstants.h b/src/plugins/baremetal/baremetalconstants.h index 8e6483dd8fb..faf1ef9a6d0 100644 --- a/src/plugins/baremetal/baremetalconstants.h +++ b/src/plugins/baremetal/baremetalconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldeploystepfactory.cpp b/src/plugins/baremetal/baremetaldeploystepfactory.cpp index 65d6c339767..725d56a7e19 100644 --- a/src/plugins/baremetal/baremetaldeploystepfactory.cpp +++ b/src/plugins/baremetal/baremetaldeploystepfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldevice.cpp b/src/plugins/baremetal/baremetaldevice.cpp index 3b9a7855478..cf25bbc4db9 100644 --- a/src/plugins/baremetal/baremetaldevice.cpp +++ b/src/plugins/baremetal/baremetaldevice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldevice.h b/src/plugins/baremetal/baremetaldevice.h index b7f2a62bd93..68f510f7827 100644 --- a/src/plugins/baremetal/baremetaldevice.h +++ b/src/plugins/baremetal/baremetaldevice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldeviceconfigurationfactory.cpp b/src/plugins/baremetal/baremetaldeviceconfigurationfactory.cpp index c92e8615909..f745416a10c 100644 --- a/src/plugins/baremetal/baremetaldeviceconfigurationfactory.cpp +++ b/src/plugins/baremetal/baremetaldeviceconfigurationfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldeviceconfigurationfactory.h b/src/plugins/baremetal/baremetaldeviceconfigurationfactory.h index cc075814504..30975230094 100644 --- a/src/plugins/baremetal/baremetaldeviceconfigurationfactory.h +++ b/src/plugins/baremetal/baremetaldeviceconfigurationfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldeviceconfigurationwidget.cpp b/src/plugins/baremetal/baremetaldeviceconfigurationwidget.cpp index d22dae4d735..058692fd0e4 100644 --- a/src/plugins/baremetal/baremetaldeviceconfigurationwidget.cpp +++ b/src/plugins/baremetal/baremetaldeviceconfigurationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldeviceconfigurationwidget.h b/src/plugins/baremetal/baremetaldeviceconfigurationwidget.h index 2953f21c2a8..bfbd0097d54 100644 --- a/src/plugins/baremetal/baremetaldeviceconfigurationwidget.h +++ b/src/plugins/baremetal/baremetaldeviceconfigurationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldeviceconfigurationwizard.cpp b/src/plugins/baremetal/baremetaldeviceconfigurationwizard.cpp index 14e625da4c7..d891267e0ea 100644 --- a/src/plugins/baremetal/baremetaldeviceconfigurationwizard.cpp +++ b/src/plugins/baremetal/baremetaldeviceconfigurationwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldeviceconfigurationwizard.h b/src/plugins/baremetal/baremetaldeviceconfigurationwizard.h index 4a35d41dea7..1f9b5e7c476 100644 --- a/src/plugins/baremetal/baremetaldeviceconfigurationwizard.h +++ b/src/plugins/baremetal/baremetaldeviceconfigurationwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.cpp b/src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.cpp index 08d6254aef5..a2eea6864c2 100644 --- a/src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.cpp +++ b/src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.h b/src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.h index 3d35e6ed01f..1cbb75455e8 100644 --- a/src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.h +++ b/src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalgdbcommandsdeploystep.cpp b/src/plugins/baremetal/baremetalgdbcommandsdeploystep.cpp index 614abd15609..c157f657d68 100644 --- a/src/plugins/baremetal/baremetalgdbcommandsdeploystep.cpp +++ b/src/plugins/baremetal/baremetalgdbcommandsdeploystep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalgdbcommandsdeploystep.h b/src/plugins/baremetal/baremetalgdbcommandsdeploystep.h index 8c7184413b9..a246a66d4d2 100644 --- a/src/plugins/baremetal/baremetalgdbcommandsdeploystep.h +++ b/src/plugins/baremetal/baremetalgdbcommandsdeploystep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalplugin.cpp b/src/plugins/baremetal/baremetalplugin.cpp index e3e3084dd83..12f9c42e1f9 100644 --- a/src/plugins/baremetal/baremetalplugin.cpp +++ b/src/plugins/baremetal/baremetalplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalplugin.h b/src/plugins/baremetal/baremetalplugin.h index 512b0cbbc70..f6fac7f05e3 100644 --- a/src/plugins/baremetal/baremetalplugin.h +++ b/src/plugins/baremetal/baremetalplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalrunconfiguration.cpp b/src/plugins/baremetal/baremetalrunconfiguration.cpp index ca11d9ae451..a92f6253bee 100644 --- a/src/plugins/baremetal/baremetalrunconfiguration.cpp +++ b/src/plugins/baremetal/baremetalrunconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalrunconfiguration.h b/src/plugins/baremetal/baremetalrunconfiguration.h index eca894257bb..e5ec47e0e1a 100644 --- a/src/plugins/baremetal/baremetalrunconfiguration.h +++ b/src/plugins/baremetal/baremetalrunconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalrunconfigurationfactory.cpp b/src/plugins/baremetal/baremetalrunconfigurationfactory.cpp index 5f611b1da96..c536068bf7d 100644 --- a/src/plugins/baremetal/baremetalrunconfigurationfactory.cpp +++ b/src/plugins/baremetal/baremetalrunconfigurationfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalrunconfigurationfactory.h b/src/plugins/baremetal/baremetalrunconfigurationfactory.h index ce98c94e472..fd935e28d52 100644 --- a/src/plugins/baremetal/baremetalrunconfigurationfactory.h +++ b/src/plugins/baremetal/baremetalrunconfigurationfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalrunconfigurationwidget.cpp b/src/plugins/baremetal/baremetalrunconfigurationwidget.cpp index fac674faecc..9cd5c91e191 100644 --- a/src/plugins/baremetal/baremetalrunconfigurationwidget.cpp +++ b/src/plugins/baremetal/baremetalrunconfigurationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalrunconfigurationwidget.h b/src/plugins/baremetal/baremetalrunconfigurationwidget.h index 9174b9cf95f..964e380e133 100644 --- a/src/plugins/baremetal/baremetalrunconfigurationwidget.h +++ b/src/plugins/baremetal/baremetalrunconfigurationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalruncontrolfactory.cpp b/src/plugins/baremetal/baremetalruncontrolfactory.cpp index 50edf9a152a..91f986ea1f2 100644 --- a/src/plugins/baremetal/baremetalruncontrolfactory.cpp +++ b/src/plugins/baremetal/baremetalruncontrolfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/baremetal/baremetalruncontrolfactory.h b/src/plugins/baremetal/baremetalruncontrolfactory.h index 12fc316a008..c7dffb16249 100644 --- a/src/plugins/baremetal/baremetalruncontrolfactory.h +++ b/src/plugins/baremetal/baremetalruncontrolfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Tim Sander <tim@krieglstein.org> +** Copyright (C) 2014 Tim Sander <tim@krieglstein.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/Bazaar.pluginspec.in b/src/plugins/bazaar/Bazaar.pluginspec.in index cc6cc68b75c..e605a28f365 100644 --- a/src/plugins/bazaar/Bazaar.pluginspec.in +++ b/src/plugins/bazaar/Bazaar.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Bazaar\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Hugues Delorme</vendor> - <copyright>(C) 2013 Hugues Delorme</copyright> + <copyright>(C) 2014 Hugues Delorme</copyright> <license> Commercial Usage diff --git a/src/plugins/bazaar/annotationhighlighter.cpp b/src/plugins/bazaar/annotationhighlighter.cpp index 0d8aaac4eb8..53435a7aa52 100644 --- a/src/plugins/bazaar/annotationhighlighter.cpp +++ b/src/plugins/bazaar/annotationhighlighter.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/annotationhighlighter.h b/src/plugins/bazaar/annotationhighlighter.h index 5c55eff87bf..083b7912f4e 100644 --- a/src/plugins/bazaar/annotationhighlighter.h +++ b/src/plugins/bazaar/annotationhighlighter.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarclient.cpp b/src/plugins/bazaar/bazaarclient.cpp index 5df1804457b..d7af1e4e73e 100644 --- a/src/plugins/bazaar/bazaarclient.cpp +++ b/src/plugins/bazaar/bazaarclient.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarclient.h b/src/plugins/bazaar/bazaarclient.h index 3dc756ef586..16120349892 100644 --- a/src/plugins/bazaar/bazaarclient.h +++ b/src/plugins/bazaar/bazaarclient.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarcommitwidget.cpp b/src/plugins/bazaar/bazaarcommitwidget.cpp index 3b25d4f08b0..986a5512dc3 100644 --- a/src/plugins/bazaar/bazaarcommitwidget.cpp +++ b/src/plugins/bazaar/bazaarcommitwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarcommitwidget.h b/src/plugins/bazaar/bazaarcommitwidget.h index 82b95663cd0..caa4a441606 100644 --- a/src/plugins/bazaar/bazaarcommitwidget.h +++ b/src/plugins/bazaar/bazaarcommitwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarcontrol.cpp b/src/plugins/bazaar/bazaarcontrol.cpp index 1829397e068..56d10a9c330 100644 --- a/src/plugins/bazaar/bazaarcontrol.cpp +++ b/src/plugins/bazaar/bazaarcontrol.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarcontrol.h b/src/plugins/bazaar/bazaarcontrol.h index 0e982aff5e8..e5dc018ebd0 100644 --- a/src/plugins/bazaar/bazaarcontrol.h +++ b/src/plugins/bazaar/bazaarcontrol.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaareditor.cpp b/src/plugins/bazaar/bazaareditor.cpp index 70acb54038f..0f17923e440 100644 --- a/src/plugins/bazaar/bazaareditor.cpp +++ b/src/plugins/bazaar/bazaareditor.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaareditor.h b/src/plugins/bazaar/bazaareditor.h index 5cff890d69d..7c36320404c 100644 --- a/src/plugins/bazaar/bazaareditor.h +++ b/src/plugins/bazaar/bazaareditor.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarplugin.cpp b/src/plugins/bazaar/bazaarplugin.cpp index 47045f8eb62..3e7f238ee10 100644 --- a/src/plugins/bazaar/bazaarplugin.cpp +++ b/src/plugins/bazaar/bazaarplugin.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarplugin.h b/src/plugins/bazaar/bazaarplugin.h index ed93dd221fe..955795dd3da 100644 --- a/src/plugins/bazaar/bazaarplugin.h +++ b/src/plugins/bazaar/bazaarplugin.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarsettings.cpp b/src/plugins/bazaar/bazaarsettings.cpp index 50ce89c905d..d0bc858545b 100644 --- a/src/plugins/bazaar/bazaarsettings.cpp +++ b/src/plugins/bazaar/bazaarsettings.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/bazaarsettings.h b/src/plugins/bazaar/bazaarsettings.h index 61d016f6cfe..f7cab3bc917 100644 --- a/src/plugins/bazaar/bazaarsettings.h +++ b/src/plugins/bazaar/bazaarsettings.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/branchinfo.cpp b/src/plugins/bazaar/branchinfo.cpp index 654bcd1cdf6..130a2eb2be1 100644 --- a/src/plugins/bazaar/branchinfo.cpp +++ b/src/plugins/bazaar/branchinfo.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/branchinfo.h b/src/plugins/bazaar/branchinfo.h index 6fbb7cd779c..df47cd751e2 100644 --- a/src/plugins/bazaar/branchinfo.h +++ b/src/plugins/bazaar/branchinfo.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/cloneoptionspanel.cpp b/src/plugins/bazaar/cloneoptionspanel.cpp index 4fb626ecd20..5b9559c234b 100644 --- a/src/plugins/bazaar/cloneoptionspanel.cpp +++ b/src/plugins/bazaar/cloneoptionspanel.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/cloneoptionspanel.h b/src/plugins/bazaar/cloneoptionspanel.h index f7486131a5b..65feb0af898 100644 --- a/src/plugins/bazaar/cloneoptionspanel.h +++ b/src/plugins/bazaar/cloneoptionspanel.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/clonewizard.cpp b/src/plugins/bazaar/clonewizard.cpp index 8b4ec5309c4..d954a7bfb3b 100644 --- a/src/plugins/bazaar/clonewizard.cpp +++ b/src/plugins/bazaar/clonewizard.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/clonewizard.h b/src/plugins/bazaar/clonewizard.h index fcc0cc81cf1..2fd34fb5241 100644 --- a/src/plugins/bazaar/clonewizard.h +++ b/src/plugins/bazaar/clonewizard.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/clonewizardpage.cpp b/src/plugins/bazaar/clonewizardpage.cpp index 6dcb6ec9355..2590eb44bd1 100644 --- a/src/plugins/bazaar/clonewizardpage.cpp +++ b/src/plugins/bazaar/clonewizardpage.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/clonewizardpage.h b/src/plugins/bazaar/clonewizardpage.h index 6be1df46bbd..0971243b676 100644 --- a/src/plugins/bazaar/clonewizardpage.h +++ b/src/plugins/bazaar/clonewizardpage.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/commiteditor.cpp b/src/plugins/bazaar/commiteditor.cpp index ea7fef2372b..fc02f1d1cec 100644 --- a/src/plugins/bazaar/commiteditor.cpp +++ b/src/plugins/bazaar/commiteditor.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/commiteditor.h b/src/plugins/bazaar/commiteditor.h index 491d4557af3..4ecf8783588 100644 --- a/src/plugins/bazaar/commiteditor.h +++ b/src/plugins/bazaar/commiteditor.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/constants.h b/src/plugins/bazaar/constants.h index c81427eba0a..5848733672b 100644 --- a/src/plugins/bazaar/constants.h +++ b/src/plugins/bazaar/constants.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/optionspage.cpp b/src/plugins/bazaar/optionspage.cpp index 34d2caee044..376a7b9871a 100644 --- a/src/plugins/bazaar/optionspage.cpp +++ b/src/plugins/bazaar/optionspage.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/optionspage.h b/src/plugins/bazaar/optionspage.h index b8f7bf6260a..fe87c381502 100644 --- a/src/plugins/bazaar/optionspage.h +++ b/src/plugins/bazaar/optionspage.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/pullorpushdialog.cpp b/src/plugins/bazaar/pullorpushdialog.cpp index b12daa563a5..94b05f1e7d0 100644 --- a/src/plugins/bazaar/pullorpushdialog.cpp +++ b/src/plugins/bazaar/pullorpushdialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bazaar/pullorpushdialog.h b/src/plugins/bazaar/pullorpushdialog.h index 06260ba8ab4..88e48a5c747 100644 --- a/src/plugins/bazaar/pullorpushdialog.h +++ b/src/plugins/bazaar/pullorpushdialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Hugues Delorme +** Copyright (c) 2014 Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bineditor/BinEditor.pluginspec.in b/src/plugins/bineditor/BinEditor.pluginspec.in index c32482e3425..948268a6a25 100644 --- a/src/plugins/bineditor/BinEditor.pluginspec.in +++ b/src/plugins/bineditor/BinEditor.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"BinEditor\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/bineditor/bineditor.cpp b/src/plugins/bineditor/bineditor.cpp index 62352b12302..c92d34da220 100644 --- a/src/plugins/bineditor/bineditor.cpp +++ b/src/plugins/bineditor/bineditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bineditor/bineditor.h b/src/plugins/bineditor/bineditor.h index 7a3f9e5efa5..8672d8cfc3d 100644 --- a/src/plugins/bineditor/bineditor.h +++ b/src/plugins/bineditor/bineditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bineditor/bineditorconstants.h b/src/plugins/bineditor/bineditorconstants.h index bd8b78d2d08..de136936dd1 100644 --- a/src/plugins/bineditor/bineditorconstants.h +++ b/src/plugins/bineditor/bineditorconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bineditor/bineditorplugin.cpp b/src/plugins/bineditor/bineditorplugin.cpp index b9f9c87a641..7f853340e22 100644 --- a/src/plugins/bineditor/bineditorplugin.cpp +++ b/src/plugins/bineditor/bineditorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bineditor/bineditorplugin.h b/src/plugins/bineditor/bineditorplugin.h index 46864d6bb0b..66c8adf7ed7 100644 --- a/src/plugins/bineditor/bineditorplugin.h +++ b/src/plugins/bineditor/bineditorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bineditor/markup.cpp b/src/plugins/bineditor/markup.cpp index cae1cf5914d..b31cec781c2 100644 --- a/src/plugins/bineditor/markup.cpp +++ b/src/plugins/bineditor/markup.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bineditor/markup.h b/src/plugins/bineditor/markup.h index 2b5b0e45b78..4b512f3f456 100644 --- a/src/plugins/bineditor/markup.h +++ b/src/plugins/bineditor/markup.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bookmarks/Bookmarks.pluginspec.in b/src/plugins/bookmarks/Bookmarks.pluginspec.in index 8221ed55e37..ad880c8f8d2 100644 --- a/src/plugins/bookmarks/Bookmarks.pluginspec.in +++ b/src/plugins/bookmarks/Bookmarks.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Bookmarks\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/bookmarks/bookmark.cpp b/src/plugins/bookmarks/bookmark.cpp index 91fa100d173..8dce8795f2d 100644 --- a/src/plugins/bookmarks/bookmark.cpp +++ b/src/plugins/bookmarks/bookmark.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bookmarks/bookmark.h b/src/plugins/bookmarks/bookmark.h index 7f45d29485c..c2f5fd62558 100644 --- a/src/plugins/bookmarks/bookmark.h +++ b/src/plugins/bookmarks/bookmark.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bookmarks/bookmarkmanager.cpp b/src/plugins/bookmarks/bookmarkmanager.cpp index d0e0f1035b4..2d9d9133a99 100644 --- a/src/plugins/bookmarks/bookmarkmanager.cpp +++ b/src/plugins/bookmarks/bookmarkmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bookmarks/bookmarkmanager.h b/src/plugins/bookmarks/bookmarkmanager.h index 65ac7f21912..1f1a5fe93a8 100644 --- a/src/plugins/bookmarks/bookmarkmanager.h +++ b/src/plugins/bookmarks/bookmarkmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bookmarks/bookmarks_global.h b/src/plugins/bookmarks/bookmarks_global.h index 6aad21a6962..30789ec5224 100644 --- a/src/plugins/bookmarks/bookmarks_global.h +++ b/src/plugins/bookmarks/bookmarks_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bookmarks/bookmarksplugin.cpp b/src/plugins/bookmarks/bookmarksplugin.cpp index d3e298a0348..7083c8bec3c 100644 --- a/src/plugins/bookmarks/bookmarksplugin.cpp +++ b/src/plugins/bookmarks/bookmarksplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/bookmarks/bookmarksplugin.h b/src/plugins/bookmarks/bookmarksplugin.h index 40ffc6e86ed..aa821126f06 100644 --- a/src/plugins/bookmarks/bookmarksplugin.h +++ b/src/plugins/bookmarks/bookmarksplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/ClassView.pluginspec.in b/src/plugins/classview/ClassView.pluginspec.in index 82266c27c2a..cca6e06aed9 100644 --- a/src/plugins/classview/ClassView.pluginspec.in +++ b/src/plugins/classview/ClassView.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"ClassView\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Denis Mingulov</copyright> + <copyright>(C) 2014 Denis Mingulov</copyright> <license> Commercial Usage diff --git a/src/plugins/classview/classviewconstants.h b/src/plugins/classview/classviewconstants.h index ea61009b944..a650ba43f5a 100644 --- a/src/plugins/classview/classviewconstants.h +++ b/src/plugins/classview/classviewconstants.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewmanager.cpp b/src/plugins/classview/classviewmanager.cpp index 5a87ff70db2..bc8ca27a298 100644 --- a/src/plugins/classview/classviewmanager.cpp +++ b/src/plugins/classview/classviewmanager.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewmanager.h b/src/plugins/classview/classviewmanager.h index b91dd80313d..95bb3b7c604 100644 --- a/src/plugins/classview/classviewmanager.h +++ b/src/plugins/classview/classviewmanager.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewnavigationwidget.cpp b/src/plugins/classview/classviewnavigationwidget.cpp index 7f7418b43af..5eca420f810 100644 --- a/src/plugins/classview/classviewnavigationwidget.cpp +++ b/src/plugins/classview/classviewnavigationwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewnavigationwidget.h b/src/plugins/classview/classviewnavigationwidget.h index 98cc9ce6498..8724173ba1a 100644 --- a/src/plugins/classview/classviewnavigationwidget.h +++ b/src/plugins/classview/classviewnavigationwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewnavigationwidgetfactory.cpp b/src/plugins/classview/classviewnavigationwidgetfactory.cpp index 39f8b15afbb..2255faf1c8d 100644 --- a/src/plugins/classview/classviewnavigationwidgetfactory.cpp +++ b/src/plugins/classview/classviewnavigationwidgetfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewnavigationwidgetfactory.h b/src/plugins/classview/classviewnavigationwidgetfactory.h index 5ee1314fba6..3cb0ec3b0ce 100644 --- a/src/plugins/classview/classviewnavigationwidgetfactory.h +++ b/src/plugins/classview/classviewnavigationwidgetfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewparser.cpp b/src/plugins/classview/classviewparser.cpp index a7dea53b66b..5bb5d692c96 100644 --- a/src/plugins/classview/classviewparser.cpp +++ b/src/plugins/classview/classviewparser.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewparser.h b/src/plugins/classview/classviewparser.h index 84ae7a84c13..eeea76adf4b 100644 --- a/src/plugins/classview/classviewparser.h +++ b/src/plugins/classview/classviewparser.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewparsertreeitem.cpp b/src/plugins/classview/classviewparsertreeitem.cpp index f46a5ce1300..210e0aabe85 100644 --- a/src/plugins/classview/classviewparsertreeitem.cpp +++ b/src/plugins/classview/classviewparsertreeitem.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewparsertreeitem.h b/src/plugins/classview/classviewparsertreeitem.h index cbdb9a277bf..14a646e41e2 100644 --- a/src/plugins/classview/classviewparsertreeitem.h +++ b/src/plugins/classview/classviewparsertreeitem.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewplugin.cpp b/src/plugins/classview/classviewplugin.cpp index db233e7954e..95117dc8d59 100644 --- a/src/plugins/classview/classviewplugin.cpp +++ b/src/plugins/classview/classviewplugin.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewplugin.h b/src/plugins/classview/classviewplugin.h index ea6dd39bba3..a67128f1456 100644 --- a/src/plugins/classview/classviewplugin.h +++ b/src/plugins/classview/classviewplugin.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewsymbolinformation.cpp b/src/plugins/classview/classviewsymbolinformation.cpp index 3eb9e1efc84..4743eae57c6 100644 --- a/src/plugins/classview/classviewsymbolinformation.cpp +++ b/src/plugins/classview/classviewsymbolinformation.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewsymbolinformation.h b/src/plugins/classview/classviewsymbolinformation.h index ecae8c81101..d2e6bd86fd6 100644 --- a/src/plugins/classview/classviewsymbolinformation.h +++ b/src/plugins/classview/classviewsymbolinformation.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewsymbollocation.cpp b/src/plugins/classview/classviewsymbollocation.cpp index 8db565577ee..3f0fee6add9 100644 --- a/src/plugins/classview/classviewsymbollocation.cpp +++ b/src/plugins/classview/classviewsymbollocation.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewsymbollocation.h b/src/plugins/classview/classviewsymbollocation.h index 8bc4c95b947..b85b5b8c242 100644 --- a/src/plugins/classview/classviewsymbollocation.h +++ b/src/plugins/classview/classviewsymbollocation.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewtreeitemmodel.cpp b/src/plugins/classview/classviewtreeitemmodel.cpp index 7d8dc1ebc2c..50512618b69 100644 --- a/src/plugins/classview/classviewtreeitemmodel.cpp +++ b/src/plugins/classview/classviewtreeitemmodel.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewtreeitemmodel.h b/src/plugins/classview/classviewtreeitemmodel.h index b4a8407f67d..6a704d2d021 100644 --- a/src/plugins/classview/classviewtreeitemmodel.h +++ b/src/plugins/classview/classviewtreeitemmodel.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewutils.cpp b/src/plugins/classview/classviewutils.cpp index efa13edb05c..501d0208d20 100644 --- a/src/plugins/classview/classviewutils.cpp +++ b/src/plugins/classview/classviewutils.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/classview/classviewutils.h b/src/plugins/classview/classviewutils.h index 789a51bece0..d5e795f01d2 100644 --- a/src/plugins/classview/classviewutils.h +++ b/src/plugins/classview/classviewutils.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Denis Mingulov +** Copyright (c) 2014 Denis Mingulov ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/clearcase/ClearCase.pluginspec.in b/src/plugins/clearcase/ClearCase.pluginspec.in index 32a13f66df2..c9e5e4eacac 100644 --- a/src/plugins/clearcase/ClearCase.pluginspec.in +++ b/src/plugins/clearcase/ClearCase.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"ClearCase\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\" disabledByDefault=\"$$CLEARCASE_DISABLED_STR\"> <vendor>AudioCodes</vendor> - <copyright>(C) 2013 AudioCodes Ltd.</copyright> + <copyright>(C) 2014 AudioCodes Ltd.</copyright> <license> Commercial Usage diff --git a/src/plugins/clearcase/activityselector.cpp b/src/plugins/clearcase/activityselector.cpp index 28cd75c59f9..3b78094e610 100644 --- a/src/plugins/clearcase/activityselector.cpp +++ b/src/plugins/clearcase/activityselector.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/activityselector.h b/src/plugins/clearcase/activityselector.h index efd32ccd1ce..457ac664669 100644 --- a/src/plugins/clearcase/activityselector.h +++ b/src/plugins/clearcase/activityselector.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/annotationhighlighter.cpp b/src/plugins/clearcase/annotationhighlighter.cpp index 81de1b90796..23edf8adf85 100644 --- a/src/plugins/clearcase/annotationhighlighter.cpp +++ b/src/plugins/clearcase/annotationhighlighter.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/annotationhighlighter.h b/src/plugins/clearcase/annotationhighlighter.h index f7e2740d3d0..1f919638372 100644 --- a/src/plugins/clearcase/annotationhighlighter.h +++ b/src/plugins/clearcase/annotationhighlighter.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/checkoutdialog.cpp b/src/plugins/clearcase/checkoutdialog.cpp index 7947cb4f8a6..f76da2f384d 100644 --- a/src/plugins/clearcase/checkoutdialog.cpp +++ b/src/plugins/clearcase/checkoutdialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/checkoutdialog.h b/src/plugins/clearcase/checkoutdialog.h index 36d62966878..364138fa5fb 100644 --- a/src/plugins/clearcase/checkoutdialog.h +++ b/src/plugins/clearcase/checkoutdialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcaseconstants.h b/src/plugins/clearcase/clearcaseconstants.h index 708219c2942..9eb4c8ddad5 100644 --- a/src/plugins/clearcase/clearcaseconstants.h +++ b/src/plugins/clearcase/clearcaseconstants.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcasecontrol.cpp b/src/plugins/clearcase/clearcasecontrol.cpp index 30262623896..8036c95743a 100644 --- a/src/plugins/clearcase/clearcasecontrol.cpp +++ b/src/plugins/clearcase/clearcasecontrol.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcasecontrol.h b/src/plugins/clearcase/clearcasecontrol.h index f94ee440524..b5d673ce385 100644 --- a/src/plugins/clearcase/clearcasecontrol.h +++ b/src/plugins/clearcase/clearcasecontrol.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcaseeditor.cpp b/src/plugins/clearcase/clearcaseeditor.cpp index 04e60dfe272..1d85248b0b6 100644 --- a/src/plugins/clearcase/clearcaseeditor.cpp +++ b/src/plugins/clearcase/clearcaseeditor.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcaseeditor.h b/src/plugins/clearcase/clearcaseeditor.h index 14d7031b866..396dd2e113d 100644 --- a/src/plugins/clearcase/clearcaseeditor.h +++ b/src/plugins/clearcase/clearcaseeditor.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcaseplugin.cpp b/src/plugins/clearcase/clearcaseplugin.cpp index dd78679704d..c9713742076 100644 --- a/src/plugins/clearcase/clearcaseplugin.cpp +++ b/src/plugins/clearcase/clearcaseplugin.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcaseplugin.h b/src/plugins/clearcase/clearcaseplugin.h index 929844197af..c6588db05e5 100644 --- a/src/plugins/clearcase/clearcaseplugin.h +++ b/src/plugins/clearcase/clearcaseplugin.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcasesettings.cpp b/src/plugins/clearcase/clearcasesettings.cpp index 019b7337233..f3e6320e90d 100644 --- a/src/plugins/clearcase/clearcasesettings.cpp +++ b/src/plugins/clearcase/clearcasesettings.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcasesettings.h b/src/plugins/clearcase/clearcasesettings.h index 04f93e6f610..06d5d2d71d1 100644 --- a/src/plugins/clearcase/clearcasesettings.h +++ b/src/plugins/clearcase/clearcasesettings.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcasesubmiteditor.cpp b/src/plugins/clearcase/clearcasesubmiteditor.cpp index 3d886a1b482..ee3753e7a2b 100644 --- a/src/plugins/clearcase/clearcasesubmiteditor.cpp +++ b/src/plugins/clearcase/clearcasesubmiteditor.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcasesubmiteditor.h b/src/plugins/clearcase/clearcasesubmiteditor.h index 2d93351899d..009501cecf2 100644 --- a/src/plugins/clearcase/clearcasesubmiteditor.h +++ b/src/plugins/clearcase/clearcasesubmiteditor.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcasesubmiteditorwidget.cpp b/src/plugins/clearcase/clearcasesubmiteditorwidget.cpp index f1b20ad1b78..104076e1f4a 100644 --- a/src/plugins/clearcase/clearcasesubmiteditorwidget.cpp +++ b/src/plugins/clearcase/clearcasesubmiteditorwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcasesubmiteditorwidget.h b/src/plugins/clearcase/clearcasesubmiteditorwidget.h index 2531b1b6c4c..ac24ecb4d3f 100644 --- a/src/plugins/clearcase/clearcasesubmiteditorwidget.h +++ b/src/plugins/clearcase/clearcasesubmiteditorwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/clearcasesync.cpp b/src/plugins/clearcase/clearcasesync.cpp index ac965eec932..2560672ea99 100644 --- a/src/plugins/clearcase/clearcasesync.cpp +++ b/src/plugins/clearcase/clearcasesync.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/clearcase/clearcasesync.h b/src/plugins/clearcase/clearcasesync.h index 31b109a3c9d..b2e0250b927 100644 --- a/src/plugins/clearcase/clearcasesync.h +++ b/src/plugins/clearcase/clearcasesync.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/clearcase/settingspage.cpp b/src/plugins/clearcase/settingspage.cpp index 2dc0ad0019b..cf646ad6dc7 100644 --- a/src/plugins/clearcase/settingspage.cpp +++ b/src/plugins/clearcase/settingspage.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/settingspage.h b/src/plugins/clearcase/settingspage.h index 9b40545c075..95258ca84da 100644 --- a/src/plugins/clearcase/settingspage.h +++ b/src/plugins/clearcase/settingspage.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/versionselector.cpp b/src/plugins/clearcase/versionselector.cpp index 772f02d468d..9437120c5ba 100644 --- a/src/plugins/clearcase/versionselector.cpp +++ b/src/plugins/clearcase/versionselector.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/clearcase/versionselector.h b/src/plugins/clearcase/versionselector.h index d77a43e8c2b..cc94c7ff650 100644 --- a/src/plugins/clearcase/versionselector.h +++ b/src/plugins/clearcase/versionselector.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 AudioCodes Ltd. +** Copyright (c) 2014 AudioCodes Ltd. ** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com> ** Contact: http://www.qt-project.org/legal ** diff --git a/src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec.in b/src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec.in index 6388460f837..aa275ee56f3 100644 --- a/src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec.in +++ b/src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"CMakeProjectManager\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp index 9a63ccb8287..f76881dcaab 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp +++ b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h index 41de9c0bee3..01034b57fac 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h +++ b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakebuildinfo.h b/src/plugins/cmakeprojectmanager/cmakebuildinfo.h index 8464057b367..6580685a0f6 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildinfo.h +++ b/src/plugins/cmakeprojectmanager/cmakebuildinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeeditor.cpp b/src/plugins/cmakeprojectmanager/cmakeeditor.cpp index 3ae4a1e730c..4d63e422d5d 100644 --- a/src/plugins/cmakeprojectmanager/cmakeeditor.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeeditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeeditor.h b/src/plugins/cmakeprojectmanager/cmakeeditor.h index 55e7639a246..a508c7b391b 100644 --- a/src/plugins/cmakeprojectmanager/cmakeeditor.h +++ b/src/plugins/cmakeprojectmanager/cmakeeditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeeditorfactory.cpp b/src/plugins/cmakeprojectmanager/cmakeeditorfactory.cpp index 7b7b32ae5ae..f3035d32046 100644 --- a/src/plugins/cmakeprojectmanager/cmakeeditorfactory.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeeditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeeditorfactory.h b/src/plugins/cmakeprojectmanager/cmakeeditorfactory.h index aafa5a4875f..a73f127f6fa 100644 --- a/src/plugins/cmakeprojectmanager/cmakeeditorfactory.h +++ b/src/plugins/cmakeprojectmanager/cmakeeditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.cpp b/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.cpp index c5d2098625e..8da3cb82fd7 100644 --- a/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.cpp +++ b/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.h b/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.h index 5d0c3d76a10..d6614d5d9dc 100644 --- a/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.h +++ b/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakehighlighter.cpp b/src/plugins/cmakeprojectmanager/cmakehighlighter.cpp index 8231f402f46..a45e1deef1b 100644 --- a/src/plugins/cmakeprojectmanager/cmakehighlighter.cpp +++ b/src/plugins/cmakeprojectmanager/cmakehighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakehighlighter.h b/src/plugins/cmakeprojectmanager/cmakehighlighter.h index 4cfef25a708..a2e80bebc35 100644 --- a/src/plugins/cmakeprojectmanager/cmakehighlighter.h +++ b/src/plugins/cmakeprojectmanager/cmakehighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakehighlighterfactory.cpp b/src/plugins/cmakeprojectmanager/cmakehighlighterfactory.cpp index 1899afcf88c..6cb28fcb05f 100644 --- a/src/plugins/cmakeprojectmanager/cmakehighlighterfactory.cpp +++ b/src/plugins/cmakeprojectmanager/cmakehighlighterfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakehighlighterfactory.h b/src/plugins/cmakeprojectmanager/cmakehighlighterfactory.h index a6545022c65..bd5371b2efc 100644 --- a/src/plugins/cmakeprojectmanager/cmakehighlighterfactory.h +++ b/src/plugins/cmakeprojectmanager/cmakehighlighterfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakelocatorfilter.cpp b/src/plugins/cmakeprojectmanager/cmakelocatorfilter.cpp index ab059a06396..39ac8bc91dd 100644 --- a/src/plugins/cmakeprojectmanager/cmakelocatorfilter.cpp +++ b/src/plugins/cmakeprojectmanager/cmakelocatorfilter.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Kläralvdalens Datakonsult AB, a KDAB Group company. +** Copyright (C) 2014 Kläralvdalens Datakonsult AB, a KDAB Group company. ** Contact: Kläralvdalens Datakonsult AB (info@kdab.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakelocatorfilter.h b/src/plugins/cmakeprojectmanager/cmakelocatorfilter.h index b07fde3967f..a2476d7a8ee 100644 --- a/src/plugins/cmakeprojectmanager/cmakelocatorfilter.h +++ b/src/plugins/cmakeprojectmanager/cmakelocatorfilter.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Kläralvdalens Datakonsult AB, a KDAB Group company. +** Copyright (C) 2014 Kläralvdalens Datakonsult AB, a KDAB Group company. ** Contact: Kläralvdalens Datakonsult AB (info@kdab.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.cpp b/src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.cpp index f3a49624e9d..c5804b56e61 100644 --- a/src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.h b/src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.h index 793d635ab24..745a0855fcd 100644 --- a/src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.h +++ b/src/plugins/cmakeprojectmanager/cmakeopenprojectwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeparser.cpp b/src/plugins/cmakeprojectmanager/cmakeparser.cpp index a972fda54be..2eb38aa727e 100644 --- a/src/plugins/cmakeprojectmanager/cmakeparser.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Axonian LLC. +** Copyright (C) 2014 Axonian LLC. ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeparser.h b/src/plugins/cmakeprojectmanager/cmakeparser.h index 24b61f9863c..7bac63bc6fc 100644 --- a/src/plugins/cmakeprojectmanager/cmakeparser.h +++ b/src/plugins/cmakeprojectmanager/cmakeparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Axonian LLC. +** Copyright (C) 2014 Axonian LLC. ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.cpp b/src/plugins/cmakeprojectmanager/cmakeproject.cpp index 68acc76aa69..c86f3d47ccf 100644 --- a/src/plugins/cmakeprojectmanager/cmakeproject.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeproject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.h b/src/plugins/cmakeprojectmanager/cmakeproject.h index c950575e0fd..67d420fa2dc 100644 --- a/src/plugins/cmakeprojectmanager/cmakeproject.h +++ b/src/plugins/cmakeprojectmanager/cmakeproject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectconstants.h b/src/plugins/cmakeprojectmanager/cmakeprojectconstants.h index 19042982e16..1fb917480f5 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprojectconstants.h +++ b/src/plugins/cmakeprojectmanager/cmakeprojectconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp b/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp index fe0c2561d01..42d35eba6fa 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectmanager.h b/src/plugins/cmakeprojectmanager/cmakeprojectmanager.h index 55e45071476..930e60bd4ab 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprojectmanager.h +++ b/src/plugins/cmakeprojectmanager/cmakeprojectmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectnodes.cpp b/src/plugins/cmakeprojectmanager/cmakeprojectnodes.cpp index f4f35bd7e64..1d7ccdabed1 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprojectnodes.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeprojectnodes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectnodes.h b/src/plugins/cmakeprojectmanager/cmakeprojectnodes.h index ef81cfae498..adac01ec8af 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprojectnodes.h +++ b/src/plugins/cmakeprojectmanager/cmakeprojectnodes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp index f72650ba4bc..91e3b7a9102 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.h b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.h index f7a0e175534..9271436ea25 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.h +++ b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakerunconfiguration.cpp b/src/plugins/cmakeprojectmanager/cmakerunconfiguration.cpp index 1451813b09f..4178d718bbd 100644 --- a/src/plugins/cmakeprojectmanager/cmakerunconfiguration.cpp +++ b/src/plugins/cmakeprojectmanager/cmakerunconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakerunconfiguration.h b/src/plugins/cmakeprojectmanager/cmakerunconfiguration.h index 355a8ee4d17..99630573921 100644 --- a/src/plugins/cmakeprojectmanager/cmakerunconfiguration.h +++ b/src/plugins/cmakeprojectmanager/cmakerunconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakevalidator.cpp b/src/plugins/cmakeprojectmanager/cmakevalidator.cpp index 203dfe8706d..55734cb951b 100644 --- a/src/plugins/cmakeprojectmanager/cmakevalidator.cpp +++ b/src/plugins/cmakeprojectmanager/cmakevalidator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/cmakevalidator.h b/src/plugins/cmakeprojectmanager/cmakevalidator.h index c4c39283a59..89147f7c82b 100644 --- a/src/plugins/cmakeprojectmanager/cmakevalidator.h +++ b/src/plugins/cmakeprojectmanager/cmakevalidator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/makestep.cpp b/src/plugins/cmakeprojectmanager/makestep.cpp index 59db2133961..cbadd7e5237 100644 --- a/src/plugins/cmakeprojectmanager/makestep.cpp +++ b/src/plugins/cmakeprojectmanager/makestep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cmakeprojectmanager/makestep.h b/src/plugins/cmakeprojectmanager/makestep.h index 1b03753c98a..85f714b4fdd 100644 --- a/src/plugins/cmakeprojectmanager/makestep.h +++ b/src/plugins/cmakeprojectmanager/makestep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/Core.pluginspec.in b/src/plugins/coreplugin/Core.pluginspec.in index 3650a8add29..a9103261546 100644 --- a/src/plugins/coreplugin/Core.pluginspec.in +++ b/src/plugins/coreplugin/Core.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Core\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/coreplugin/actionmanager/actioncontainer.cpp b/src/plugins/coreplugin/actionmanager/actioncontainer.cpp index ab45581cdd5..a28e357292f 100644 --- a/src/plugins/coreplugin/actionmanager/actioncontainer.cpp +++ b/src/plugins/coreplugin/actionmanager/actioncontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/actioncontainer.h b/src/plugins/coreplugin/actionmanager/actioncontainer.h index 5115521354b..41807587a96 100644 --- a/src/plugins/coreplugin/actionmanager/actioncontainer.h +++ b/src/plugins/coreplugin/actionmanager/actioncontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/actioncontainer_p.h b/src/plugins/coreplugin/actionmanager/actioncontainer_p.h index f0f360e7570..345bf818f3b 100644 --- a/src/plugins/coreplugin/actionmanager/actioncontainer_p.h +++ b/src/plugins/coreplugin/actionmanager/actioncontainer_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/actionmanager.cpp b/src/plugins/coreplugin/actionmanager/actionmanager.cpp index a4b2080e938..b219546acec 100644 --- a/src/plugins/coreplugin/actionmanager/actionmanager.cpp +++ b/src/plugins/coreplugin/actionmanager/actionmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/actionmanager.h b/src/plugins/coreplugin/actionmanager/actionmanager.h index f2d2019452f..f6d7a7bb734 100644 --- a/src/plugins/coreplugin/actionmanager/actionmanager.h +++ b/src/plugins/coreplugin/actionmanager/actionmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/actionmanager_p.h b/src/plugins/coreplugin/actionmanager/actionmanager_p.h index 3a0b3320120..646d03db28d 100644 --- a/src/plugins/coreplugin/actionmanager/actionmanager_p.h +++ b/src/plugins/coreplugin/actionmanager/actionmanager_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/command.cpp b/src/plugins/coreplugin/actionmanager/command.cpp index b7b2eb03004..21662dd1421 100644 --- a/src/plugins/coreplugin/actionmanager/command.cpp +++ b/src/plugins/coreplugin/actionmanager/command.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/command.h b/src/plugins/coreplugin/actionmanager/command.h index 7de5700ed2e..dbe37b3f44b 100644 --- a/src/plugins/coreplugin/actionmanager/command.h +++ b/src/plugins/coreplugin/actionmanager/command.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/command_p.h b/src/plugins/coreplugin/actionmanager/command_p.h index a2ead8551de..648af655366 100644 --- a/src/plugins/coreplugin/actionmanager/command_p.h +++ b/src/plugins/coreplugin/actionmanager/command_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/commandbutton.cpp b/src/plugins/coreplugin/actionmanager/commandbutton.cpp index 7f5917aa8b4..819f8fe1d61 100644 --- a/src/plugins/coreplugin/actionmanager/commandbutton.cpp +++ b/src/plugins/coreplugin/actionmanager/commandbutton.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Konstantin Tokarev. +** Copyright (c) 2014 Konstantin Tokarev. ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/commandbutton.h b/src/plugins/coreplugin/actionmanager/commandbutton.h index f3abb912279..9518cd5ba32 100644 --- a/src/plugins/coreplugin/actionmanager/commandbutton.h +++ b/src/plugins/coreplugin/actionmanager/commandbutton.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (c) 2013 Konstantin Tokarev. +** Copyright (c) 2014 Konstantin Tokarev. ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/commandmappings.cpp b/src/plugins/coreplugin/actionmanager/commandmappings.cpp index ee17ff370fa..85099285a00 100644 --- a/src/plugins/coreplugin/actionmanager/commandmappings.cpp +++ b/src/plugins/coreplugin/actionmanager/commandmappings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/commandmappings.h b/src/plugins/coreplugin/actionmanager/commandmappings.h index 42ed428d675..db1296dfb6d 100644 --- a/src/plugins/coreplugin/actionmanager/commandmappings.h +++ b/src/plugins/coreplugin/actionmanager/commandmappings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/commandsfile.cpp b/src/plugins/coreplugin/actionmanager/commandsfile.cpp index 5d91694862b..48ac01652f0 100644 --- a/src/plugins/coreplugin/actionmanager/commandsfile.cpp +++ b/src/plugins/coreplugin/actionmanager/commandsfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/actionmanager/commandsfile.h b/src/plugins/coreplugin/actionmanager/commandsfile.h index f9a23da434b..9b74d94c78a 100644 --- a/src/plugins/coreplugin/actionmanager/commandsfile.h +++ b/src/plugins/coreplugin/actionmanager/commandsfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/basefilewizard.cpp b/src/plugins/coreplugin/basefilewizard.cpp index 9ba83657a57..99962f475f8 100644 --- a/src/plugins/coreplugin/basefilewizard.cpp +++ b/src/plugins/coreplugin/basefilewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/basefilewizard.h b/src/plugins/coreplugin/basefilewizard.h index 257b65e8e22..a7b52e4d2b8 100644 --- a/src/plugins/coreplugin/basefilewizard.h +++ b/src/plugins/coreplugin/basefilewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/core_global.h b/src/plugins/coreplugin/core_global.h index 06630e57e95..96f9980ed5b 100644 --- a/src/plugins/coreplugin/core_global.h +++ b/src/plugins/coreplugin/core_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/coreconstants.h b/src/plugins/coreplugin/coreconstants.h index 18430d23625..547277f7d01 100644 --- a/src/plugins/coreplugin/coreconstants.h +++ b/src/plugins/coreplugin/coreconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/coreplugin.cpp b/src/plugins/coreplugin/coreplugin.cpp index ffd5242f039..c6869dd1756 100644 --- a/src/plugins/coreplugin/coreplugin.cpp +++ b/src/plugins/coreplugin/coreplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/coreplugin.h b/src/plugins/coreplugin/coreplugin.h index b9ca64b8552..6a50bc0960f 100644 --- a/src/plugins/coreplugin/coreplugin.h +++ b/src/plugins/coreplugin/coreplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/designmode.cpp b/src/plugins/coreplugin/designmode.cpp index 4173f73b003..97ca053fd05 100644 --- a/src/plugins/coreplugin/designmode.cpp +++ b/src/plugins/coreplugin/designmode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/designmode.h b/src/plugins/coreplugin/designmode.h index 30e2b6f8568..d691586863b 100644 --- a/src/plugins/coreplugin/designmode.h +++ b/src/plugins/coreplugin/designmode.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/addtovcsdialog.cpp b/src/plugins/coreplugin/dialogs/addtovcsdialog.cpp index c1e3758dba1..f6bc00b5e5a 100644 --- a/src/plugins/coreplugin/dialogs/addtovcsdialog.cpp +++ b/src/plugins/coreplugin/dialogs/addtovcsdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/addtovcsdialog.h b/src/plugins/coreplugin/dialogs/addtovcsdialog.h index 67928099f08..dd40d03cd34 100644 --- a/src/plugins/coreplugin/dialogs/addtovcsdialog.h +++ b/src/plugins/coreplugin/dialogs/addtovcsdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/externaltoolconfig.cpp b/src/plugins/coreplugin/dialogs/externaltoolconfig.cpp index 4578a92cab4..8e51d5dbd85 100644 --- a/src/plugins/coreplugin/dialogs/externaltoolconfig.cpp +++ b/src/plugins/coreplugin/dialogs/externaltoolconfig.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/externaltoolconfig.h b/src/plugins/coreplugin/dialogs/externaltoolconfig.h index ab75a8a3d38..959707a1196 100644 --- a/src/plugins/coreplugin/dialogs/externaltoolconfig.h +++ b/src/plugins/coreplugin/dialogs/externaltoolconfig.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/ioptionspage.cpp b/src/plugins/coreplugin/dialogs/ioptionspage.cpp index 12ad324c7b6..73ab549563d 100644 --- a/src/plugins/coreplugin/dialogs/ioptionspage.cpp +++ b/src/plugins/coreplugin/dialogs/ioptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/ioptionspage.h b/src/plugins/coreplugin/dialogs/ioptionspage.h index 1fa1e514479..aa468ef8284 100644 --- a/src/plugins/coreplugin/dialogs/ioptionspage.h +++ b/src/plugins/coreplugin/dialogs/ioptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/iwizard.cpp b/src/plugins/coreplugin/dialogs/iwizard.cpp index f1b638cd505..acfea09e9fc 100644 --- a/src/plugins/coreplugin/dialogs/iwizard.cpp +++ b/src/plugins/coreplugin/dialogs/iwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/iwizard.h b/src/plugins/coreplugin/dialogs/iwizard.h index f0e9148e76b..d527540afe1 100644 --- a/src/plugins/coreplugin/dialogs/iwizard.h +++ b/src/plugins/coreplugin/dialogs/iwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/newdialog.cpp b/src/plugins/coreplugin/dialogs/newdialog.cpp index 1353b95ae98..363b9195cb9 100644 --- a/src/plugins/coreplugin/dialogs/newdialog.cpp +++ b/src/plugins/coreplugin/dialogs/newdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/newdialog.h b/src/plugins/coreplugin/dialogs/newdialog.h index 304115a7241..9d1a68b73d2 100644 --- a/src/plugins/coreplugin/dialogs/newdialog.h +++ b/src/plugins/coreplugin/dialogs/newdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/openwithdialog.cpp b/src/plugins/coreplugin/dialogs/openwithdialog.cpp index b0ca42fddd4..f676af63b28 100644 --- a/src/plugins/coreplugin/dialogs/openwithdialog.cpp +++ b/src/plugins/coreplugin/dialogs/openwithdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/openwithdialog.h b/src/plugins/coreplugin/dialogs/openwithdialog.h index 2b30b70ef8b..e0787286c05 100644 --- a/src/plugins/coreplugin/dialogs/openwithdialog.h +++ b/src/plugins/coreplugin/dialogs/openwithdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/promptoverwritedialog.cpp b/src/plugins/coreplugin/dialogs/promptoverwritedialog.cpp index bdde354b967..fae5f0d2101 100644 --- a/src/plugins/coreplugin/dialogs/promptoverwritedialog.cpp +++ b/src/plugins/coreplugin/dialogs/promptoverwritedialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/promptoverwritedialog.h b/src/plugins/coreplugin/dialogs/promptoverwritedialog.h index fb5e27e025e..efc09d9ebe5 100644 --- a/src/plugins/coreplugin/dialogs/promptoverwritedialog.h +++ b/src/plugins/coreplugin/dialogs/promptoverwritedialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/readonlyfilesdialog.cpp b/src/plugins/coreplugin/dialogs/readonlyfilesdialog.cpp index e5b92af57c7..33ebb692f1f 100644 --- a/src/plugins/coreplugin/dialogs/readonlyfilesdialog.cpp +++ b/src/plugins/coreplugin/dialogs/readonlyfilesdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/readonlyfilesdialog.h b/src/plugins/coreplugin/dialogs/readonlyfilesdialog.h index 844167fc584..c99853ae049 100644 --- a/src/plugins/coreplugin/dialogs/readonlyfilesdialog.h +++ b/src/plugins/coreplugin/dialogs/readonlyfilesdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/saveitemsdialog.cpp b/src/plugins/coreplugin/dialogs/saveitemsdialog.cpp index b77cc255fd0..82b4ad541a8 100644 --- a/src/plugins/coreplugin/dialogs/saveitemsdialog.cpp +++ b/src/plugins/coreplugin/dialogs/saveitemsdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/saveitemsdialog.h b/src/plugins/coreplugin/dialogs/saveitemsdialog.h index e7460c8c94f..45fb36c2bf7 100644 --- a/src/plugins/coreplugin/dialogs/saveitemsdialog.h +++ b/src/plugins/coreplugin/dialogs/saveitemsdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/settingsdialog.cpp b/src/plugins/coreplugin/dialogs/settingsdialog.cpp index c265adbba3a..ae3c8c47c38 100644 --- a/src/plugins/coreplugin/dialogs/settingsdialog.cpp +++ b/src/plugins/coreplugin/dialogs/settingsdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/settingsdialog.h b/src/plugins/coreplugin/dialogs/settingsdialog.h index b77c06c4ef6..240f9fe2796 100644 --- a/src/plugins/coreplugin/dialogs/settingsdialog.h +++ b/src/plugins/coreplugin/dialogs/settingsdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/shortcutsettings.cpp b/src/plugins/coreplugin/dialogs/shortcutsettings.cpp index a774587f92c..696a6618896 100644 --- a/src/plugins/coreplugin/dialogs/shortcutsettings.cpp +++ b/src/plugins/coreplugin/dialogs/shortcutsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/dialogs/shortcutsettings.h b/src/plugins/coreplugin/dialogs/shortcutsettings.h index 888e8deaccc..23c7a21bfc4 100644 --- a/src/plugins/coreplugin/dialogs/shortcutsettings.h +++ b/src/plugins/coreplugin/dialogs/shortcutsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/documentmanager.cpp b/src/plugins/coreplugin/documentmanager.cpp index 80d5794afbc..ec6348263e5 100644 --- a/src/plugins/coreplugin/documentmanager.cpp +++ b/src/plugins/coreplugin/documentmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/documentmanager.h b/src/plugins/coreplugin/documentmanager.h index 74491544489..adf3e7e7dc5 100644 --- a/src/plugins/coreplugin/documentmanager.h +++ b/src/plugins/coreplugin/documentmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editmode.cpp b/src/plugins/coreplugin/editmode.cpp index c2d10cce034..5bffb473e41 100644 --- a/src/plugins/coreplugin/editmode.cpp +++ b/src/plugins/coreplugin/editmode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editmode.h b/src/plugins/coreplugin/editmode.h index 2e65e5e5a7d..b7429822394 100644 --- a/src/plugins/coreplugin/editmode.h +++ b/src/plugins/coreplugin/editmode.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/documentmodel.cpp b/src/plugins/coreplugin/editormanager/documentmodel.cpp index be48667591f..0dd7c812ed8 100644 --- a/src/plugins/coreplugin/editormanager/documentmodel.cpp +++ b/src/plugins/coreplugin/editormanager/documentmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/documentmodel.h b/src/plugins/coreplugin/editormanager/documentmodel.h index bc494050a98..5889c73602d 100644 --- a/src/plugins/coreplugin/editormanager/documentmodel.h +++ b/src/plugins/coreplugin/editormanager/documentmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/editormanager.cpp b/src/plugins/coreplugin/editormanager/editormanager.cpp index e11b14398a0..60bd9e27db3 100644 --- a/src/plugins/coreplugin/editormanager/editormanager.cpp +++ b/src/plugins/coreplugin/editormanager/editormanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/editormanager.h b/src/plugins/coreplugin/editormanager/editormanager.h index 9e554b4a46a..1a5a62d58a2 100644 --- a/src/plugins/coreplugin/editormanager/editormanager.h +++ b/src/plugins/coreplugin/editormanager/editormanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/editorview.cpp b/src/plugins/coreplugin/editormanager/editorview.cpp index 539b55656d8..0fd28700f3b 100644 --- a/src/plugins/coreplugin/editormanager/editorview.cpp +++ b/src/plugins/coreplugin/editormanager/editorview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/editorview.h b/src/plugins/coreplugin/editormanager/editorview.h index 69f2cc25daf..d088d976ea7 100644 --- a/src/plugins/coreplugin/editormanager/editorview.h +++ b/src/plugins/coreplugin/editormanager/editorview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/ieditor.cpp b/src/plugins/coreplugin/editormanager/ieditor.cpp index f81e23cbd79..f6ac60dbc77 100644 --- a/src/plugins/coreplugin/editormanager/ieditor.cpp +++ b/src/plugins/coreplugin/editormanager/ieditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/ieditor.h b/src/plugins/coreplugin/editormanager/ieditor.h index af925232173..c38aa84e98b 100644 --- a/src/plugins/coreplugin/editormanager/ieditor.h +++ b/src/plugins/coreplugin/editormanager/ieditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/ieditorfactory.cpp b/src/plugins/coreplugin/editormanager/ieditorfactory.cpp index fdceef33b92..08e45fb1820 100644 --- a/src/plugins/coreplugin/editormanager/ieditorfactory.cpp +++ b/src/plugins/coreplugin/editormanager/ieditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/ieditorfactory.h b/src/plugins/coreplugin/editormanager/ieditorfactory.h index 029554af0d8..e4f4f318492 100644 --- a/src/plugins/coreplugin/editormanager/ieditorfactory.h +++ b/src/plugins/coreplugin/editormanager/ieditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/iexternaleditor.cpp b/src/plugins/coreplugin/editormanager/iexternaleditor.cpp index fa5ae525317..53723745f8f 100644 --- a/src/plugins/coreplugin/editormanager/iexternaleditor.cpp +++ b/src/plugins/coreplugin/editormanager/iexternaleditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/iexternaleditor.h b/src/plugins/coreplugin/editormanager/iexternaleditor.h index 53dead66319..69dec0c0d92 100644 --- a/src/plugins/coreplugin/editormanager/iexternaleditor.h +++ b/src/plugins/coreplugin/editormanager/iexternaleditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/openeditorsview.cpp b/src/plugins/coreplugin/editormanager/openeditorsview.cpp index 9d73aea3f40..01bf7cab171 100644 --- a/src/plugins/coreplugin/editormanager/openeditorsview.cpp +++ b/src/plugins/coreplugin/editormanager/openeditorsview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/openeditorsview.h b/src/plugins/coreplugin/editormanager/openeditorsview.h index 311080f463c..c14fa478bd8 100644 --- a/src/plugins/coreplugin/editormanager/openeditorsview.h +++ b/src/plugins/coreplugin/editormanager/openeditorsview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/openeditorswindow.cpp b/src/plugins/coreplugin/editormanager/openeditorswindow.cpp index bb772f38d40..2d96ec1848a 100644 --- a/src/plugins/coreplugin/editormanager/openeditorswindow.cpp +++ b/src/plugins/coreplugin/editormanager/openeditorswindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/openeditorswindow.h b/src/plugins/coreplugin/editormanager/openeditorswindow.h index 33ea5640a00..a5d52c98c07 100644 --- a/src/plugins/coreplugin/editormanager/openeditorswindow.h +++ b/src/plugins/coreplugin/editormanager/openeditorswindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/systemeditor.cpp b/src/plugins/coreplugin/editormanager/systemeditor.cpp index ef9cb8fec93..ec4b78c2c4c 100644 --- a/src/plugins/coreplugin/editormanager/systemeditor.cpp +++ b/src/plugins/coreplugin/editormanager/systemeditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editormanager/systemeditor.h b/src/plugins/coreplugin/editormanager/systemeditor.h index 85dca4f45df..23aae68787d 100644 --- a/src/plugins/coreplugin/editormanager/systemeditor.h +++ b/src/plugins/coreplugin/editormanager/systemeditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editortoolbar.cpp b/src/plugins/coreplugin/editortoolbar.cpp index 536bd883f51..4bdbbfd5ca5 100644 --- a/src/plugins/coreplugin/editortoolbar.cpp +++ b/src/plugins/coreplugin/editortoolbar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/editortoolbar.h b/src/plugins/coreplugin/editortoolbar.h index b9fb824c94e..c7f5cb336d2 100644 --- a/src/plugins/coreplugin/editortoolbar.h +++ b/src/plugins/coreplugin/editortoolbar.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/externaltool.cpp b/src/plugins/coreplugin/externaltool.cpp index 590806ff253..a0d67d5d8f8 100644 --- a/src/plugins/coreplugin/externaltool.cpp +++ b/src/plugins/coreplugin/externaltool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/externaltool.h b/src/plugins/coreplugin/externaltool.h index e95dfdc4ba4..6d32c033820 100644 --- a/src/plugins/coreplugin/externaltool.h +++ b/src/plugins/coreplugin/externaltool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/externaltoolmanager.h b/src/plugins/coreplugin/externaltoolmanager.h index 12bd07e4865..080a69ac310 100644 --- a/src/plugins/coreplugin/externaltoolmanager.h +++ b/src/plugins/coreplugin/externaltoolmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/fancyactionbar.cpp b/src/plugins/coreplugin/fancyactionbar.cpp index d99b5b5eaea..64c708994fc 100644 --- a/src/plugins/coreplugin/fancyactionbar.cpp +++ b/src/plugins/coreplugin/fancyactionbar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/fancyactionbar.h b/src/plugins/coreplugin/fancyactionbar.h index a545d4b42b9..59f66e21c23 100644 --- a/src/plugins/coreplugin/fancyactionbar.h +++ b/src/plugins/coreplugin/fancyactionbar.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/fancytabwidget.cpp b/src/plugins/coreplugin/fancytabwidget.cpp index 4ef2fc897a3..92619b775de 100644 --- a/src/plugins/coreplugin/fancytabwidget.cpp +++ b/src/plugins/coreplugin/fancytabwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/fancytabwidget.h b/src/plugins/coreplugin/fancytabwidget.h index 6631192736a..d3136081053 100644 --- a/src/plugins/coreplugin/fancytabwidget.h +++ b/src/plugins/coreplugin/fancytabwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/featureprovider.cpp b/src/plugins/coreplugin/featureprovider.cpp index 24131b3d3b9..2dd8e6bc71f 100644 --- a/src/plugins/coreplugin/featureprovider.cpp +++ b/src/plugins/coreplugin/featureprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/featureprovider.h b/src/plugins/coreplugin/featureprovider.h index 33e4fd38795..5a62a82ac3a 100644 --- a/src/plugins/coreplugin/featureprovider.h +++ b/src/plugins/coreplugin/featureprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/fileiconprovider.cpp b/src/plugins/coreplugin/fileiconprovider.cpp index 4e56cd96b9e..4f6499c3b4d 100644 --- a/src/plugins/coreplugin/fileiconprovider.cpp +++ b/src/plugins/coreplugin/fileiconprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/fileiconprovider.h b/src/plugins/coreplugin/fileiconprovider.h index b77b2031d13..3d76358b9ff 100644 --- a/src/plugins/coreplugin/fileiconprovider.h +++ b/src/plugins/coreplugin/fileiconprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/fileutils.cpp b/src/plugins/coreplugin/fileutils.cpp index 716baa3030e..296beb336de 100644 --- a/src/plugins/coreplugin/fileutils.cpp +++ b/src/plugins/coreplugin/fileutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/fileutils.h b/src/plugins/coreplugin/fileutils.h index 92ffa12a89f..7287d9c0bc4 100644 --- a/src/plugins/coreplugin/fileutils.h +++ b/src/plugins/coreplugin/fileutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/findplaceholder.cpp b/src/plugins/coreplugin/findplaceholder.cpp index b0be2dcdf53..4e0454269a3 100644 --- a/src/plugins/coreplugin/findplaceholder.cpp +++ b/src/plugins/coreplugin/findplaceholder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/findplaceholder.h b/src/plugins/coreplugin/findplaceholder.h index e8965527ffa..0fba3282ab6 100644 --- a/src/plugins/coreplugin/findplaceholder.h +++ b/src/plugins/coreplugin/findplaceholder.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/generalsettings.cpp b/src/plugins/coreplugin/generalsettings.cpp index 834879c172a..eb6da5d9615 100644 --- a/src/plugins/coreplugin/generalsettings.cpp +++ b/src/plugins/coreplugin/generalsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/generalsettings.h b/src/plugins/coreplugin/generalsettings.h index c812ac45af8..c6b868ea0a4 100644 --- a/src/plugins/coreplugin/generalsettings.h +++ b/src/plugins/coreplugin/generalsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/generatedfile.cpp b/src/plugins/coreplugin/generatedfile.cpp index 7954c146c42..43adc068eb8 100644 --- a/src/plugins/coreplugin/generatedfile.cpp +++ b/src/plugins/coreplugin/generatedfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/generatedfile.h b/src/plugins/coreplugin/generatedfile.h index ca765cc98ce..1b751b6fc7f 100644 --- a/src/plugins/coreplugin/generatedfile.h +++ b/src/plugins/coreplugin/generatedfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/helpmanager.cpp b/src/plugins/coreplugin/helpmanager.cpp index e2bb16d4711..bea613a2f1b 100644 --- a/src/plugins/coreplugin/helpmanager.cpp +++ b/src/plugins/coreplugin/helpmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/helpmanager.h b/src/plugins/coreplugin/helpmanager.h index da11acd9943..63e0408572e 100644 --- a/src/plugins/coreplugin/helpmanager.h +++ b/src/plugins/coreplugin/helpmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/icontext.cpp b/src/plugins/coreplugin/icontext.cpp index 3883d166dd6..eb4d8740b3c 100644 --- a/src/plugins/coreplugin/icontext.cpp +++ b/src/plugins/coreplugin/icontext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/icontext.h b/src/plugins/coreplugin/icontext.h index 65206bf082e..7b74ff7004e 100644 --- a/src/plugins/coreplugin/icontext.h +++ b/src/plugins/coreplugin/icontext.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/icore.cpp b/src/plugins/coreplugin/icore.cpp index 561b2a9d36b..a244ff44da6 100644 --- a/src/plugins/coreplugin/icore.cpp +++ b/src/plugins/coreplugin/icore.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/icore.h b/src/plugins/coreplugin/icore.h index b716db16a10..0251f0cb74c 100644 --- a/src/plugins/coreplugin/icore.h +++ b/src/plugins/coreplugin/icore.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/icorelistener.cpp b/src/plugins/coreplugin/icorelistener.cpp index 8c620812dfe..2de88d21e06 100644 --- a/src/plugins/coreplugin/icorelistener.cpp +++ b/src/plugins/coreplugin/icorelistener.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/icorelistener.h b/src/plugins/coreplugin/icorelistener.h index 7fb0061e2e9..71171757dab 100644 --- a/src/plugins/coreplugin/icorelistener.h +++ b/src/plugins/coreplugin/icorelistener.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/id.cpp b/src/plugins/coreplugin/id.cpp index 3bc21c5c97c..f67c108f9a4 100644 --- a/src/plugins/coreplugin/id.cpp +++ b/src/plugins/coreplugin/id.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/id.h b/src/plugins/coreplugin/id.h index ef27ce5d086..d131d12173d 100644 --- a/src/plugins/coreplugin/id.h +++ b/src/plugins/coreplugin/id.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/idocument.cpp b/src/plugins/coreplugin/idocument.cpp index 3d1f9e82dca..e85d338f60f 100644 --- a/src/plugins/coreplugin/idocument.cpp +++ b/src/plugins/coreplugin/idocument.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/idocument.h b/src/plugins/coreplugin/idocument.h index 31782683898..e37a2c7fae4 100644 --- a/src/plugins/coreplugin/idocument.h +++ b/src/plugins/coreplugin/idocument.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/idocumentfactory.h b/src/plugins/coreplugin/idocumentfactory.h index d9cbaa1311c..a168768a1d1 100644 --- a/src/plugins/coreplugin/idocumentfactory.h +++ b/src/plugins/coreplugin/idocumentfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/ifilewizardextension.h b/src/plugins/coreplugin/ifilewizardextension.h index afa45d1f672..b718c7a9761 100644 --- a/src/plugins/coreplugin/ifilewizardextension.h +++ b/src/plugins/coreplugin/ifilewizardextension.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/imode.cpp b/src/plugins/coreplugin/imode.cpp index 66f1876c60c..769a0e17cd4 100644 --- a/src/plugins/coreplugin/imode.cpp +++ b/src/plugins/coreplugin/imode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/imode.h b/src/plugins/coreplugin/imode.h index ea9de058a22..4c3a3654179 100644 --- a/src/plugins/coreplugin/imode.h +++ b/src/plugins/coreplugin/imode.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/inavigationwidgetfactory.cpp b/src/plugins/coreplugin/inavigationwidgetfactory.cpp index 70f8c7e22a5..4cc543dcda9 100644 --- a/src/plugins/coreplugin/inavigationwidgetfactory.cpp +++ b/src/plugins/coreplugin/inavigationwidgetfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/inavigationwidgetfactory.h b/src/plugins/coreplugin/inavigationwidgetfactory.h index 1f6430ecc58..105da1831a5 100644 --- a/src/plugins/coreplugin/inavigationwidgetfactory.h +++ b/src/plugins/coreplugin/inavigationwidgetfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/infobar.cpp b/src/plugins/coreplugin/infobar.cpp index 15512e8d0d6..40bb10fc52e 100644 --- a/src/plugins/coreplugin/infobar.cpp +++ b/src/plugins/coreplugin/infobar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/infobar.h b/src/plugins/coreplugin/infobar.h index 6f245ff8073..78bd7768bf3 100644 --- a/src/plugins/coreplugin/infobar.h +++ b/src/plugins/coreplugin/infobar.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/ioutputpane.h b/src/plugins/coreplugin/ioutputpane.h index 59d517f59ea..459edeffc67 100644 --- a/src/plugins/coreplugin/ioutputpane.h +++ b/src/plugins/coreplugin/ioutputpane.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/iversioncontrol.cpp b/src/plugins/coreplugin/iversioncontrol.cpp index 814bee6859f..9559695c144 100644 --- a/src/plugins/coreplugin/iversioncontrol.cpp +++ b/src/plugins/coreplugin/iversioncontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/iversioncontrol.h b/src/plugins/coreplugin/iversioncontrol.h index c5a307d731b..86114e79924 100644 --- a/src/plugins/coreplugin/iversioncontrol.h +++ b/src/plugins/coreplugin/iversioncontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/macfullscreen.h b/src/plugins/coreplugin/macfullscreen.h index a3b28cddabc..2482750cbdd 100644 --- a/src/plugins/coreplugin/macfullscreen.h +++ b/src/plugins/coreplugin/macfullscreen.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/macfullscreen.mm b/src/plugins/coreplugin/macfullscreen.mm index cbcdb2206d9..bd693cba95c 100644 --- a/src/plugins/coreplugin/macfullscreen.mm +++ b/src/plugins/coreplugin/macfullscreen.mm @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/mainwindow.cpp b/src/plugins/coreplugin/mainwindow.cpp index e28821914f3..07b03abf3c9 100644 --- a/src/plugins/coreplugin/mainwindow.cpp +++ b/src/plugins/coreplugin/mainwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/mainwindow.h b/src/plugins/coreplugin/mainwindow.h index 8c7f0b1290e..93cbf6a0268 100644 --- a/src/plugins/coreplugin/mainwindow.h +++ b/src/plugins/coreplugin/mainwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/manhattanstyle.cpp b/src/plugins/coreplugin/manhattanstyle.cpp index 6df8700c6e8..d5d7875b6e7 100644 --- a/src/plugins/coreplugin/manhattanstyle.cpp +++ b/src/plugins/coreplugin/manhattanstyle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/manhattanstyle.h b/src/plugins/coreplugin/manhattanstyle.h index 93bb20c6ca5..09dfdfd5139 100644 --- a/src/plugins/coreplugin/manhattanstyle.h +++ b/src/plugins/coreplugin/manhattanstyle.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/messagemanager.cpp b/src/plugins/coreplugin/messagemanager.cpp index 770f51d621f..377c6579a43 100644 --- a/src/plugins/coreplugin/messagemanager.cpp +++ b/src/plugins/coreplugin/messagemanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/messagemanager.h b/src/plugins/coreplugin/messagemanager.h index 93e361b04a7..30acb0610b6 100644 --- a/src/plugins/coreplugin/messagemanager.h +++ b/src/plugins/coreplugin/messagemanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/messageoutputwindow.cpp b/src/plugins/coreplugin/messageoutputwindow.cpp index ebe261822e4..36b6db96e81 100644 --- a/src/plugins/coreplugin/messageoutputwindow.cpp +++ b/src/plugins/coreplugin/messageoutputwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/messageoutputwindow.h b/src/plugins/coreplugin/messageoutputwindow.h index 201e1b92e8a..1fbdf8e8538 100644 --- a/src/plugins/coreplugin/messageoutputwindow.h +++ b/src/plugins/coreplugin/messageoutputwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/mimedatabase.cpp b/src/plugins/coreplugin/mimedatabase.cpp index 142c270bb8c..83132b2d5c3 100644 --- a/src/plugins/coreplugin/mimedatabase.cpp +++ b/src/plugins/coreplugin/mimedatabase.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/mimedatabase.h b/src/plugins/coreplugin/mimedatabase.h index ead2ea8da61..7ee73c462f4 100644 --- a/src/plugins/coreplugin/mimedatabase.h +++ b/src/plugins/coreplugin/mimedatabase.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/mimetypemagicdialog.cpp b/src/plugins/coreplugin/mimetypemagicdialog.cpp index 5ba467e0aff..f089231a4ad 100644 --- a/src/plugins/coreplugin/mimetypemagicdialog.cpp +++ b/src/plugins/coreplugin/mimetypemagicdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/mimetypemagicdialog.h b/src/plugins/coreplugin/mimetypemagicdialog.h index b2cced80461..7ee5729d482 100644 --- a/src/plugins/coreplugin/mimetypemagicdialog.h +++ b/src/plugins/coreplugin/mimetypemagicdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/mimetypesettings.cpp b/src/plugins/coreplugin/mimetypesettings.cpp index 07315c389b9..3d466dc437a 100644 --- a/src/plugins/coreplugin/mimetypesettings.cpp +++ b/src/plugins/coreplugin/mimetypesettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/mimetypesettings.h b/src/plugins/coreplugin/mimetypesettings.h index 19908aeeb65..d65ecf8cdb2 100644 --- a/src/plugins/coreplugin/mimetypesettings.h +++ b/src/plugins/coreplugin/mimetypesettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/minisplitter.cpp b/src/plugins/coreplugin/minisplitter.cpp index ab7597c53a9..b2769c3782c 100644 --- a/src/plugins/coreplugin/minisplitter.cpp +++ b/src/plugins/coreplugin/minisplitter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/minisplitter.h b/src/plugins/coreplugin/minisplitter.h index cd6cfc5ab17..a021cada880 100644 --- a/src/plugins/coreplugin/minisplitter.h +++ b/src/plugins/coreplugin/minisplitter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/modemanager.cpp b/src/plugins/coreplugin/modemanager.cpp index dbd66952d7f..0785a5053dc 100644 --- a/src/plugins/coreplugin/modemanager.cpp +++ b/src/plugins/coreplugin/modemanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/modemanager.h b/src/plugins/coreplugin/modemanager.h index 2577505f976..fc1a902b199 100644 --- a/src/plugins/coreplugin/modemanager.h +++ b/src/plugins/coreplugin/modemanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/navigationsubwidget.cpp b/src/plugins/coreplugin/navigationsubwidget.cpp index bc8322ebf7d..786d2282f12 100644 --- a/src/plugins/coreplugin/navigationsubwidget.cpp +++ b/src/plugins/coreplugin/navigationsubwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/navigationsubwidget.h b/src/plugins/coreplugin/navigationsubwidget.h index e520e9efdba..13fd9083e21 100644 --- a/src/plugins/coreplugin/navigationsubwidget.h +++ b/src/plugins/coreplugin/navigationsubwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/navigationwidget.cpp b/src/plugins/coreplugin/navigationwidget.cpp index 3f4ee681cd5..1e2f59034f7 100644 --- a/src/plugins/coreplugin/navigationwidget.cpp +++ b/src/plugins/coreplugin/navigationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/navigationwidget.h b/src/plugins/coreplugin/navigationwidget.h index 8f638c51904..b3dda6e1241 100644 --- a/src/plugins/coreplugin/navigationwidget.h +++ b/src/plugins/coreplugin/navigationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/outputpane.cpp b/src/plugins/coreplugin/outputpane.cpp index 0002229bf1a..3cd146dbe3a 100644 --- a/src/plugins/coreplugin/outputpane.cpp +++ b/src/plugins/coreplugin/outputpane.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/outputpane.h b/src/plugins/coreplugin/outputpane.h index ddeef9435e1..270915016a4 100644 --- a/src/plugins/coreplugin/outputpane.h +++ b/src/plugins/coreplugin/outputpane.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/outputpanemanager.cpp b/src/plugins/coreplugin/outputpanemanager.cpp index 2da7587fd44..b7103d66935 100644 --- a/src/plugins/coreplugin/outputpanemanager.cpp +++ b/src/plugins/coreplugin/outputpanemanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/outputpanemanager.h b/src/plugins/coreplugin/outputpanemanager.h index a8141402bbb..84d06f105ed 100644 --- a/src/plugins/coreplugin/outputpanemanager.h +++ b/src/plugins/coreplugin/outputpanemanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/outputwindow.cpp b/src/plugins/coreplugin/outputwindow.cpp index 8813ea21e9f..f8ad2efb8fa 100644 --- a/src/plugins/coreplugin/outputwindow.cpp +++ b/src/plugins/coreplugin/outputwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/outputwindow.h b/src/plugins/coreplugin/outputwindow.h index 20d500c633c..6778e11b0be 100644 --- a/src/plugins/coreplugin/outputwindow.h +++ b/src/plugins/coreplugin/outputwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/plugindialog.cpp b/src/plugins/coreplugin/plugindialog.cpp index 27a5347e54f..f6b1969b07f 100644 --- a/src/plugins/coreplugin/plugindialog.cpp +++ b/src/plugins/coreplugin/plugindialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/plugindialog.h b/src/plugins/coreplugin/plugindialog.h index 6308845283c..2244b4af898 100644 --- a/src/plugins/coreplugin/plugindialog.h +++ b/src/plugins/coreplugin/plugindialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/futureprogress.cpp b/src/plugins/coreplugin/progressmanager/futureprogress.cpp index 84bc025e2f8..e2887065634 100644 --- a/src/plugins/coreplugin/progressmanager/futureprogress.cpp +++ b/src/plugins/coreplugin/progressmanager/futureprogress.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/futureprogress.h b/src/plugins/coreplugin/progressmanager/futureprogress.h index b4577d876f3..050b3274eee 100644 --- a/src/plugins/coreplugin/progressmanager/futureprogress.h +++ b/src/plugins/coreplugin/progressmanager/futureprogress.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressbar.cpp b/src/plugins/coreplugin/progressmanager/progressbar.cpp index 114224190cb..5790e947e56 100644 --- a/src/plugins/coreplugin/progressmanager/progressbar.cpp +++ b/src/plugins/coreplugin/progressmanager/progressbar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressbar.h b/src/plugins/coreplugin/progressmanager/progressbar.h index ef88731a95a..bd9503948ef 100644 --- a/src/plugins/coreplugin/progressmanager/progressbar.h +++ b/src/plugins/coreplugin/progressmanager/progressbar.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressmanager.cpp b/src/plugins/coreplugin/progressmanager/progressmanager.cpp index 06ccacecd4f..89818a6d317 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager.cpp +++ b/src/plugins/coreplugin/progressmanager/progressmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressmanager.h b/src/plugins/coreplugin/progressmanager/progressmanager.h index ed45d53870b..1aa1d926b6c 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager.h +++ b/src/plugins/coreplugin/progressmanager/progressmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressmanager_mac.mm b/src/plugins/coreplugin/progressmanager/progressmanager_mac.mm index 9649cdc3701..462c89bd1cb 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager_mac.mm +++ b/src/plugins/coreplugin/progressmanager/progressmanager_mac.mm @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressmanager_p.h b/src/plugins/coreplugin/progressmanager/progressmanager_p.h index 2445220be4f..8fefa8ca3a7 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager_p.h +++ b/src/plugins/coreplugin/progressmanager/progressmanager_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp b/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp index 1f04e55d470..ac21a46b54c 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp +++ b/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressmanager_x11.cpp b/src/plugins/coreplugin/progressmanager/progressmanager_x11.cpp index 22f8ad6227f..53009f70a8a 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager_x11.cpp +++ b/src/plugins/coreplugin/progressmanager/progressmanager_x11.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressview.cpp b/src/plugins/coreplugin/progressmanager/progressview.cpp index 5c843dda11a..2ca8361a6cc 100644 --- a/src/plugins/coreplugin/progressmanager/progressview.cpp +++ b/src/plugins/coreplugin/progressmanager/progressview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/progressmanager/progressview.h b/src/plugins/coreplugin/progressmanager/progressview.h index 51335c8aaa3..9be16ec35a4 100644 --- a/src/plugins/coreplugin/progressmanager/progressview.h +++ b/src/plugins/coreplugin/progressmanager/progressview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/removefiledialog.cpp b/src/plugins/coreplugin/removefiledialog.cpp index c643ad5be37..f8d9721fd3f 100644 --- a/src/plugins/coreplugin/removefiledialog.cpp +++ b/src/plugins/coreplugin/removefiledialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/removefiledialog.h b/src/plugins/coreplugin/removefiledialog.h index ebe5c86bec2..9ff4f166725 100644 --- a/src/plugins/coreplugin/removefiledialog.h +++ b/src/plugins/coreplugin/removefiledialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/rightpane.cpp b/src/plugins/coreplugin/rightpane.cpp index 90ca7345e54..f23bb9ae21e 100644 --- a/src/plugins/coreplugin/rightpane.cpp +++ b/src/plugins/coreplugin/rightpane.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/rightpane.h b/src/plugins/coreplugin/rightpane.h index 38b77cd297c..1f3d15bffa9 100644 --- a/src/plugins/coreplugin/rightpane.h +++ b/src/plugins/coreplugin/rightpane.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/settingsdatabase.cpp b/src/plugins/coreplugin/settingsdatabase.cpp index c2ca0767830..4f68fcbe76e 100644 --- a/src/plugins/coreplugin/settingsdatabase.cpp +++ b/src/plugins/coreplugin/settingsdatabase.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/settingsdatabase.h b/src/plugins/coreplugin/settingsdatabase.h index 6f408016bb4..b122cf08d49 100644 --- a/src/plugins/coreplugin/settingsdatabase.h +++ b/src/plugins/coreplugin/settingsdatabase.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/sidebar.cpp b/src/plugins/coreplugin/sidebar.cpp index f0859efe50e..a18b6a05c25 100644 --- a/src/plugins/coreplugin/sidebar.cpp +++ b/src/plugins/coreplugin/sidebar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/sidebar.h b/src/plugins/coreplugin/sidebar.h index d6e51467c1f..13368d2b0c1 100644 --- a/src/plugins/coreplugin/sidebar.h +++ b/src/plugins/coreplugin/sidebar.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/sidebarwidget.cpp b/src/plugins/coreplugin/sidebarwidget.cpp index 5b3566472cf..b4f700781ff 100644 --- a/src/plugins/coreplugin/sidebarwidget.cpp +++ b/src/plugins/coreplugin/sidebarwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/sidebarwidget.h b/src/plugins/coreplugin/sidebarwidget.h index 839e3b836ce..a3471987a5d 100644 --- a/src/plugins/coreplugin/sidebarwidget.h +++ b/src/plugins/coreplugin/sidebarwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/statusbarmanager.cpp b/src/plugins/coreplugin/statusbarmanager.cpp index 91caf5ab0e5..8d686b7bf19 100644 --- a/src/plugins/coreplugin/statusbarmanager.cpp +++ b/src/plugins/coreplugin/statusbarmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/statusbarmanager.h b/src/plugins/coreplugin/statusbarmanager.h index 732189b08d5..4c24b902c8c 100644 --- a/src/plugins/coreplugin/statusbarmanager.h +++ b/src/plugins/coreplugin/statusbarmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/statusbarwidget.cpp b/src/plugins/coreplugin/statusbarwidget.cpp index 635ca6ae463..bb595f4700a 100644 --- a/src/plugins/coreplugin/statusbarwidget.cpp +++ b/src/plugins/coreplugin/statusbarwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/statusbarwidget.h b/src/plugins/coreplugin/statusbarwidget.h index 9449c79eb7b..dcf8805308f 100644 --- a/src/plugins/coreplugin/statusbarwidget.h +++ b/src/plugins/coreplugin/statusbarwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/styleanimator.cpp b/src/plugins/coreplugin/styleanimator.cpp index eb1a311cbc3..07b5ef2e57f 100644 --- a/src/plugins/coreplugin/styleanimator.cpp +++ b/src/plugins/coreplugin/styleanimator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/styleanimator.h b/src/plugins/coreplugin/styleanimator.h index a16e38758d2..a3aed0d04da 100644 --- a/src/plugins/coreplugin/styleanimator.h +++ b/src/plugins/coreplugin/styleanimator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/tabpositionindicator.cpp b/src/plugins/coreplugin/tabpositionindicator.cpp index 46e5e600c74..97d5a404764 100644 --- a/src/plugins/coreplugin/tabpositionindicator.cpp +++ b/src/plugins/coreplugin/tabpositionindicator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/tabpositionindicator.h b/src/plugins/coreplugin/tabpositionindicator.h index a058be78a97..ddbd15c32d1 100644 --- a/src/plugins/coreplugin/tabpositionindicator.h +++ b/src/plugins/coreplugin/tabpositionindicator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/testdatadir.cpp b/src/plugins/coreplugin/testdatadir.cpp index c049585f97e..e6f08f26a6a 100644 --- a/src/plugins/coreplugin/testdatadir.cpp +++ b/src/plugins/coreplugin/testdatadir.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/testdatadir.h b/src/plugins/coreplugin/testdatadir.h index d8d654ca022..fdd3bc6128f 100644 --- a/src/plugins/coreplugin/testdatadir.h +++ b/src/plugins/coreplugin/testdatadir.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/textdocument.cpp b/src/plugins/coreplugin/textdocument.cpp index 17257e08cb0..9e66060963a 100644 --- a/src/plugins/coreplugin/textdocument.cpp +++ b/src/plugins/coreplugin/textdocument.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/textdocument.h b/src/plugins/coreplugin/textdocument.h index 4490880027d..2cbbe7f19a0 100644 --- a/src/plugins/coreplugin/textdocument.h +++ b/src/plugins/coreplugin/textdocument.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/toolsettings.cpp b/src/plugins/coreplugin/toolsettings.cpp index 84b13024b35..24ecd95fccd 100644 --- a/src/plugins/coreplugin/toolsettings.cpp +++ b/src/plugins/coreplugin/toolsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/toolsettings.h b/src/plugins/coreplugin/toolsettings.h index c161436de98..cf59f08a140 100644 --- a/src/plugins/coreplugin/toolsettings.h +++ b/src/plugins/coreplugin/toolsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/variablechooser.cpp b/src/plugins/coreplugin/variablechooser.cpp index 354dac430c5..75326df5a76 100644 --- a/src/plugins/coreplugin/variablechooser.cpp +++ b/src/plugins/coreplugin/variablechooser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/variablechooser.h b/src/plugins/coreplugin/variablechooser.h index daf31863fad..e314b19f53c 100644 --- a/src/plugins/coreplugin/variablechooser.h +++ b/src/plugins/coreplugin/variablechooser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/variablemanager.cpp b/src/plugins/coreplugin/variablemanager.cpp index a4f126d6e80..45d45f1dfe9 100644 --- a/src/plugins/coreplugin/variablemanager.cpp +++ b/src/plugins/coreplugin/variablemanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/variablemanager.h b/src/plugins/coreplugin/variablemanager.h index 927747df95b..137b2fded01 100644 --- a/src/plugins/coreplugin/variablemanager.h +++ b/src/plugins/coreplugin/variablemanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/vcsmanager.cpp b/src/plugins/coreplugin/vcsmanager.cpp index acfeb9145d5..080922d7343 100644 --- a/src/plugins/coreplugin/vcsmanager.cpp +++ b/src/plugins/coreplugin/vcsmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/vcsmanager.h b/src/plugins/coreplugin/vcsmanager.h index 6e76995b649..8bc78de714b 100644 --- a/src/plugins/coreplugin/vcsmanager.h +++ b/src/plugins/coreplugin/vcsmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/versiondialog.cpp b/src/plugins/coreplugin/versiondialog.cpp index a38b8d42cef..97accdd8e67 100644 --- a/src/plugins/coreplugin/versiondialog.cpp +++ b/src/plugins/coreplugin/versiondialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/coreplugin/versiondialog.h b/src/plugins/coreplugin/versiondialog.h index d68ca72e7a7..a9719ab0984 100644 --- a/src/plugins/coreplugin/versiondialog.h +++ b/src/plugins/coreplugin/versiondialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/CodePaster.pluginspec.in b/src/plugins/cpaster/CodePaster.pluginspec.in index d45efba3eaa..5bfb797c902 100644 --- a/src/plugins/cpaster/CodePaster.pluginspec.in +++ b/src/plugins/cpaster/CodePaster.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"CodePaster\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/cpaster/columnindicatortextedit.cpp b/src/plugins/cpaster/columnindicatortextedit.cpp index 9ea126ca557..212653c2b39 100644 --- a/src/plugins/cpaster/columnindicatortextedit.cpp +++ b/src/plugins/cpaster/columnindicatortextedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/columnindicatortextedit.h b/src/plugins/cpaster/columnindicatortextedit.h index 090f5d08f72..c09c74afab8 100644 --- a/src/plugins/cpaster/columnindicatortextedit.h +++ b/src/plugins/cpaster/columnindicatortextedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/cpasterconstants.h b/src/plugins/cpaster/cpasterconstants.h index 0c2b9d639b2..929cdccb038 100644 --- a/src/plugins/cpaster/cpasterconstants.h +++ b/src/plugins/cpaster/cpasterconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/cpasterplugin.cpp b/src/plugins/cpaster/cpasterplugin.cpp index 58020e61530..b5d544e9a76 100644 --- a/src/plugins/cpaster/cpasterplugin.cpp +++ b/src/plugins/cpaster/cpasterplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/cpasterplugin.h b/src/plugins/cpaster/cpasterplugin.h index 4156749c7fd..1b8f5e4f76d 100644 --- a/src/plugins/cpaster/cpasterplugin.h +++ b/src/plugins/cpaster/cpasterplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/fileshareprotocol.cpp b/src/plugins/cpaster/fileshareprotocol.cpp index 379c0de1765..70f5958df3e 100644 --- a/src/plugins/cpaster/fileshareprotocol.cpp +++ b/src/plugins/cpaster/fileshareprotocol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/fileshareprotocol.h b/src/plugins/cpaster/fileshareprotocol.h index 62648918aa5..a57df25ce76 100644 --- a/src/plugins/cpaster/fileshareprotocol.h +++ b/src/plugins/cpaster/fileshareprotocol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/fileshareprotocolsettingspage.cpp b/src/plugins/cpaster/fileshareprotocolsettingspage.cpp index 8a7c4c0496c..66c94ace1fb 100644 --- a/src/plugins/cpaster/fileshareprotocolsettingspage.cpp +++ b/src/plugins/cpaster/fileshareprotocolsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/fileshareprotocolsettingspage.h b/src/plugins/cpaster/fileshareprotocolsettingspage.h index 91d1c996fe0..33c66736f83 100644 --- a/src/plugins/cpaster/fileshareprotocolsettingspage.h +++ b/src/plugins/cpaster/fileshareprotocolsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/frontend/argumentscollector.cpp b/src/plugins/cpaster/frontend/argumentscollector.cpp index 2451bdf0c3f..dec9d312eb8 100644 --- a/src/plugins/cpaster/frontend/argumentscollector.cpp +++ b/src/plugins/cpaster/frontend/argumentscollector.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/frontend/argumentscollector.h b/src/plugins/cpaster/frontend/argumentscollector.h index 859ed2ec1bf..244c990628f 100644 --- a/src/plugins/cpaster/frontend/argumentscollector.h +++ b/src/plugins/cpaster/frontend/argumentscollector.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/frontend/main.cpp b/src/plugins/cpaster/frontend/main.cpp index 5f8ddb0ed71..08f6796776f 100644 --- a/src/plugins/cpaster/frontend/main.cpp +++ b/src/plugins/cpaster/frontend/main.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/kdepasteprotocol.cpp b/src/plugins/cpaster/kdepasteprotocol.cpp index 3664c7dbb4e..5f61c2c0d99 100644 --- a/src/plugins/cpaster/kdepasteprotocol.cpp +++ b/src/plugins/cpaster/kdepasteprotocol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/kdepasteprotocol.h b/src/plugins/cpaster/kdepasteprotocol.h index 37a2f1b06ca..c03030a30f6 100644 --- a/src/plugins/cpaster/kdepasteprotocol.h +++ b/src/plugins/cpaster/kdepasteprotocol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/pastebindotcaprotocol.cpp b/src/plugins/cpaster/pastebindotcaprotocol.cpp index 4f3d6e443a4..a7a67ae711a 100644 --- a/src/plugins/cpaster/pastebindotcaprotocol.cpp +++ b/src/plugins/cpaster/pastebindotcaprotocol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/pastebindotcaprotocol.h b/src/plugins/cpaster/pastebindotcaprotocol.h index 1a091e9a951..981a79c9556 100644 --- a/src/plugins/cpaster/pastebindotcaprotocol.h +++ b/src/plugins/cpaster/pastebindotcaprotocol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/pastebindotcomprotocol.cpp b/src/plugins/cpaster/pastebindotcomprotocol.cpp index ccfd920a3c7..d2859760c0f 100644 --- a/src/plugins/cpaster/pastebindotcomprotocol.cpp +++ b/src/plugins/cpaster/pastebindotcomprotocol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/pastebindotcomprotocol.h b/src/plugins/cpaster/pastebindotcomprotocol.h index d0f1da616a0..3c1bcfb8ef7 100644 --- a/src/plugins/cpaster/pastebindotcomprotocol.h +++ b/src/plugins/cpaster/pastebindotcomprotocol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/pasteselectdialog.cpp b/src/plugins/cpaster/pasteselectdialog.cpp index 0dae03e853f..2d94318f439 100644 --- a/src/plugins/cpaster/pasteselectdialog.cpp +++ b/src/plugins/cpaster/pasteselectdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/pasteselectdialog.h b/src/plugins/cpaster/pasteselectdialog.h index 878ea888b05..e817b9f2abd 100644 --- a/src/plugins/cpaster/pasteselectdialog.h +++ b/src/plugins/cpaster/pasteselectdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/pasteview.cpp b/src/plugins/cpaster/pasteview.cpp index 7ac1af9f4ef..47a656984f3 100644 --- a/src/plugins/cpaster/pasteview.cpp +++ b/src/plugins/cpaster/pasteview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/pasteview.h b/src/plugins/cpaster/pasteview.h index 1b027dc83ba..b36750624ab 100644 --- a/src/plugins/cpaster/pasteview.h +++ b/src/plugins/cpaster/pasteview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/protocol.cpp b/src/plugins/cpaster/protocol.cpp index bc07a8fed94..cc500f77ce9 100644 --- a/src/plugins/cpaster/protocol.cpp +++ b/src/plugins/cpaster/protocol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/protocol.h b/src/plugins/cpaster/protocol.h index a2036aabbfc..ec5ffdb7ffe 100644 --- a/src/plugins/cpaster/protocol.h +++ b/src/plugins/cpaster/protocol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/settings.cpp b/src/plugins/cpaster/settings.cpp index 0c724ffe130..2c395ec4f4a 100644 --- a/src/plugins/cpaster/settings.cpp +++ b/src/plugins/cpaster/settings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/settings.h b/src/plugins/cpaster/settings.h index 54ebc913aad..de1c47ebaa7 100644 --- a/src/plugins/cpaster/settings.h +++ b/src/plugins/cpaster/settings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/settingspage.cpp b/src/plugins/cpaster/settingspage.cpp index 35060653eb9..c9ae150adda 100644 --- a/src/plugins/cpaster/settingspage.cpp +++ b/src/plugins/cpaster/settingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/settingspage.h b/src/plugins/cpaster/settingspage.h index 9297da67cb4..ecb66f335cb 100644 --- a/src/plugins/cpaster/settingspage.h +++ b/src/plugins/cpaster/settingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/urlopenprotocol.cpp b/src/plugins/cpaster/urlopenprotocol.cpp index 3c1e102c408..2f5141a4059 100644 --- a/src/plugins/cpaster/urlopenprotocol.cpp +++ b/src/plugins/cpaster/urlopenprotocol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpaster/urlopenprotocol.h b/src/plugins/cpaster/urlopenprotocol.h index 76bab232531..d4fec8af16e 100644 --- a/src/plugins/cpaster/urlopenprotocol.h +++ b/src/plugins/cpaster/urlopenprotocol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/CppEditor.pluginspec.in b/src/plugins/cppeditor/CppEditor.pluginspec.in index 34fd5afb064..b1ddd79c930 100644 --- a/src/plugins/cppeditor/CppEditor.pluginspec.in +++ b/src/plugins/cppeditor/CppEditor.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"CppEditor\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/cppeditor/cppautocompleter.cpp b/src/plugins/cppeditor/cppautocompleter.cpp index 451ad70fe40..b8a55fdc8ff 100644 --- a/src/plugins/cppeditor/cppautocompleter.cpp +++ b/src/plugins/cppeditor/cppautocompleter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppautocompleter.h b/src/plugins/cppeditor/cppautocompleter.h index b0c0a387e61..867c4cf25b8 100644 --- a/src/plugins/cppeditor/cppautocompleter.h +++ b/src/plugins/cppeditor/cppautocompleter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppclasswizard.cpp b/src/plugins/cppeditor/cppclasswizard.cpp index eb3a0ae243b..20d24a44b36 100644 --- a/src/plugins/cppeditor/cppclasswizard.cpp +++ b/src/plugins/cppeditor/cppclasswizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppclasswizard.h b/src/plugins/cppeditor/cppclasswizard.h index 7fc40ec74e6..ca7a6f80104 100644 --- a/src/plugins/cppeditor/cppclasswizard.h +++ b/src/plugins/cppeditor/cppclasswizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppdoxygen_test.cpp b/src/plugins/cppeditor/cppdoxygen_test.cpp index ab8a9479406..94749370e5f 100644 --- a/src/plugins/cppeditor/cppdoxygen_test.cpp +++ b/src/plugins/cppeditor/cppdoxygen_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppeditor.cpp b/src/plugins/cppeditor/cppeditor.cpp index ce276c363b9..f8264260ecd 100644 --- a/src/plugins/cppeditor/cppeditor.cpp +++ b/src/plugins/cppeditor/cppeditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppeditor.h b/src/plugins/cppeditor/cppeditor.h index ba3b58cceef..4a838ade7d7 100644 --- a/src/plugins/cppeditor/cppeditor.h +++ b/src/plugins/cppeditor/cppeditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppeditor_global.h b/src/plugins/cppeditor/cppeditor_global.h index 3ee6f366f32..3a39cb10138 100644 --- a/src/plugins/cppeditor/cppeditor_global.h +++ b/src/plugins/cppeditor/cppeditor_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppeditorconstants.h b/src/plugins/cppeditor/cppeditorconstants.h index 378789f9119..18b10ec10d8 100644 --- a/src/plugins/cppeditor/cppeditorconstants.h +++ b/src/plugins/cppeditor/cppeditorconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppeditorenums.h b/src/plugins/cppeditor/cppeditorenums.h index b363cd17063..5dfde493267 100644 --- a/src/plugins/cppeditor/cppeditorenums.h +++ b/src/plugins/cppeditor/cppeditorenums.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppeditorplugin.cpp b/src/plugins/cppeditor/cppeditorplugin.cpp index d7dd630a431..2cfcaccf8b2 100644 --- a/src/plugins/cppeditor/cppeditorplugin.cpp +++ b/src/plugins/cppeditor/cppeditorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppeditorplugin.h b/src/plugins/cppeditor/cppeditorplugin.h index c5bb0d4bf6e..b4604369550 100644 --- a/src/plugins/cppeditor/cppeditorplugin.h +++ b/src/plugins/cppeditor/cppeditorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppelementevaluator.cpp b/src/plugins/cppeditor/cppelementevaluator.cpp index 75646085cca..50bc7cc7d54 100644 --- a/src/plugins/cppeditor/cppelementevaluator.cpp +++ b/src/plugins/cppeditor/cppelementevaluator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppelementevaluator.h b/src/plugins/cppeditor/cppelementevaluator.h index 498d58ba1f4..454b742fbcf 100644 --- a/src/plugins/cppeditor/cppelementevaluator.h +++ b/src/plugins/cppeditor/cppelementevaluator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppfilewizard.cpp b/src/plugins/cppeditor/cppfilewizard.cpp index 262a2acaec2..f3578ceb660 100644 --- a/src/plugins/cppeditor/cppfilewizard.cpp +++ b/src/plugins/cppeditor/cppfilewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppfilewizard.h b/src/plugins/cppeditor/cppfilewizard.h index 38bea28a47c..12ee53d1cac 100644 --- a/src/plugins/cppeditor/cppfilewizard.h +++ b/src/plugins/cppeditor/cppfilewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppfollowsymbolundercursor.cpp b/src/plugins/cppeditor/cppfollowsymbolundercursor.cpp index 04c5cc8f4cf..d16e7917b23 100644 --- a/src/plugins/cppeditor/cppfollowsymbolundercursor.cpp +++ b/src/plugins/cppeditor/cppfollowsymbolundercursor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppfollowsymbolundercursor.h b/src/plugins/cppeditor/cppfollowsymbolundercursor.h index 4d88ecf0cd7..efdeaea3134 100644 --- a/src/plugins/cppeditor/cppfollowsymbolundercursor.h +++ b/src/plugins/cppeditor/cppfollowsymbolundercursor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppfunctiondecldeflink.cpp b/src/plugins/cppeditor/cppfunctiondecldeflink.cpp index 29c12e7d681..304c998d312 100644 --- a/src/plugins/cppeditor/cppfunctiondecldeflink.cpp +++ b/src/plugins/cppeditor/cppfunctiondecldeflink.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppfunctiondecldeflink.h b/src/plugins/cppeditor/cppfunctiondecldeflink.h index 68a8ed66100..416454acaf7 100644 --- a/src/plugins/cppeditor/cppfunctiondecldeflink.h +++ b/src/plugins/cppeditor/cppfunctiondecldeflink.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpphighlighter.cpp b/src/plugins/cppeditor/cpphighlighter.cpp index ec143ee6d0c..06a3c18ce1e 100644 --- a/src/plugins/cppeditor/cpphighlighter.cpp +++ b/src/plugins/cppeditor/cpphighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpphighlighter.h b/src/plugins/cppeditor/cpphighlighter.h index e697783559d..4afa0e7ffb9 100644 --- a/src/plugins/cppeditor/cpphighlighter.h +++ b/src/plugins/cppeditor/cpphighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpphighlighterfactory.cpp b/src/plugins/cppeditor/cpphighlighterfactory.cpp index 32af1d125e4..d4abb8cedc4 100644 --- a/src/plugins/cppeditor/cpphighlighterfactory.cpp +++ b/src/plugins/cppeditor/cpphighlighterfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpphighlighterfactory.h b/src/plugins/cppeditor/cpphighlighterfactory.h index 6fc4283b31a..bf73d2aa14f 100644 --- a/src/plugins/cppeditor/cpphighlighterfactory.h +++ b/src/plugins/cppeditor/cpphighlighterfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpphoverhandler.cpp b/src/plugins/cppeditor/cpphoverhandler.cpp index bd69c13eaec..ed0d56b27c0 100644 --- a/src/plugins/cppeditor/cpphoverhandler.cpp +++ b/src/plugins/cppeditor/cpphoverhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpphoverhandler.h b/src/plugins/cppeditor/cpphoverhandler.h index ca5720f082f..ecf2c4049c4 100644 --- a/src/plugins/cppeditor/cpphoverhandler.h +++ b/src/plugins/cppeditor/cpphoverhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppincludehierarchy.cpp b/src/plugins/cppeditor/cppincludehierarchy.cpp index 3efde4c154c..ba755a157d5 100644 --- a/src/plugins/cppeditor/cppincludehierarchy.cpp +++ b/src/plugins/cppeditor/cppincludehierarchy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> +** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppincludehierarchy.h b/src/plugins/cppeditor/cppincludehierarchy.h index cb7720db5ea..118dcaca60a 100644 --- a/src/plugins/cppeditor/cppincludehierarchy.h +++ b/src/plugins/cppeditor/cppincludehierarchy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> +** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppincludehierarchy_test.cpp b/src/plugins/cppeditor/cppincludehierarchy_test.cpp index 7e641e74944..f10cd3ba5d3 100644 --- a/src/plugins/cppeditor/cppincludehierarchy_test.cpp +++ b/src/plugins/cppeditor/cppincludehierarchy_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> +** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppincludehierarchyitem.cpp b/src/plugins/cppeditor/cppincludehierarchyitem.cpp index dee900260e5..8207942fc40 100644 --- a/src/plugins/cppeditor/cppincludehierarchyitem.cpp +++ b/src/plugins/cppeditor/cppincludehierarchyitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> +** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppincludehierarchyitem.h b/src/plugins/cppeditor/cppincludehierarchyitem.h index f40de829c7a..17a404a912a 100644 --- a/src/plugins/cppeditor/cppincludehierarchyitem.h +++ b/src/plugins/cppeditor/cppincludehierarchyitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> +** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppincludehierarchymodel.cpp b/src/plugins/cppeditor/cppincludehierarchymodel.cpp index 06fe941cd9a..28ca3bd6285 100644 --- a/src/plugins/cppeditor/cppincludehierarchymodel.cpp +++ b/src/plugins/cppeditor/cppincludehierarchymodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> +** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppincludehierarchymodel.h b/src/plugins/cppeditor/cppincludehierarchymodel.h index afb4c7ceb83..434cf06846a 100644 --- a/src/plugins/cppeditor/cppincludehierarchymodel.h +++ b/src/plugins/cppeditor/cppincludehierarchymodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> +** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppincludehierarchytreeview.cpp b/src/plugins/cppeditor/cppincludehierarchytreeview.cpp index 43a46279e2a..13dcd9cc418 100644 --- a/src/plugins/cppeditor/cppincludehierarchytreeview.cpp +++ b/src/plugins/cppeditor/cppincludehierarchytreeview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> +** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppincludehierarchytreeview.h b/src/plugins/cppeditor/cppincludehierarchytreeview.h index eaa624bdae6..939beae2923 100644 --- a/src/plugins/cppeditor/cppincludehierarchytreeview.h +++ b/src/plugins/cppeditor/cppincludehierarchytreeview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> +** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppoutline.cpp b/src/plugins/cppeditor/cppoutline.cpp index 2a47c1ef251..2bc7916e9f9 100644 --- a/src/plugins/cppeditor/cppoutline.cpp +++ b/src/plugins/cppeditor/cppoutline.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppoutline.h b/src/plugins/cppeditor/cppoutline.h index 7fcc3cf396d..a4322ce6537 100644 --- a/src/plugins/cppeditor/cppoutline.h +++ b/src/plugins/cppeditor/cppoutline.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpppreprocessordialog.cpp b/src/plugins/cppeditor/cpppreprocessordialog.cpp index 983bbe9aca3..3a53f302316 100644 --- a/src/plugins/cppeditor/cpppreprocessordialog.cpp +++ b/src/plugins/cppeditor/cpppreprocessordialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpppreprocessordialog.h b/src/plugins/cppeditor/cpppreprocessordialog.h index c71e387e874..25c701fe62e 100644 --- a/src/plugins/cppeditor/cpppreprocessordialog.h +++ b/src/plugins/cppeditor/cpppreprocessordialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppquickfix.cpp b/src/plugins/cppeditor/cppquickfix.cpp index c099a707211..98eff32ea95 100644 --- a/src/plugins/cppeditor/cppquickfix.cpp +++ b/src/plugins/cppeditor/cppquickfix.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppquickfix.h b/src/plugins/cppeditor/cppquickfix.h index f9f4ca49630..59676af2c34 100644 --- a/src/plugins/cppeditor/cppquickfix.h +++ b/src/plugins/cppeditor/cppquickfix.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppquickfix_test.cpp b/src/plugins/cppeditor/cppquickfix_test.cpp index 16e22817a55..7b6bb4e0e70 100644 --- a/src/plugins/cppeditor/cppquickfix_test.cpp +++ b/src/plugins/cppeditor/cppquickfix_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppquickfix_test_utils.cpp b/src/plugins/cppeditor/cppquickfix_test_utils.cpp index c42a66a2576..c4eae0afb26 100644 --- a/src/plugins/cppeditor/cppquickfix_test_utils.cpp +++ b/src/plugins/cppeditor/cppquickfix_test_utils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppquickfix_test_utils.h b/src/plugins/cppeditor/cppquickfix_test_utils.h index e8ca190b929..71f2c14bff5 100644 --- a/src/plugins/cppeditor/cppquickfix_test_utils.h +++ b/src/plugins/cppeditor/cppquickfix_test_utils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppquickfixassistant.cpp b/src/plugins/cppeditor/cppquickfixassistant.cpp index 4ca8d0e0a67..2f84cf80d02 100644 --- a/src/plugins/cppeditor/cppquickfixassistant.cpp +++ b/src/plugins/cppeditor/cppquickfixassistant.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppquickfixassistant.h b/src/plugins/cppeditor/cppquickfixassistant.h index cfc921d00de..4b47df0d22a 100644 --- a/src/plugins/cppeditor/cppquickfixassistant.h +++ b/src/plugins/cppeditor/cppquickfixassistant.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppquickfixes.cpp b/src/plugins/cppeditor/cppquickfixes.cpp index 9feaef149a6..be06973d6e3 100644 --- a/src/plugins/cppeditor/cppquickfixes.cpp +++ b/src/plugins/cppeditor/cppquickfixes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppquickfixes.h b/src/plugins/cppeditor/cppquickfixes.h index 7d7aa058b01..3e60341ce73 100644 --- a/src/plugins/cppeditor/cppquickfixes.h +++ b/src/plugins/cppeditor/cppquickfixes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppsnippetprovider.cpp b/src/plugins/cppeditor/cppsnippetprovider.cpp index 85cb83ab00d..35c99a8b3b7 100644 --- a/src/plugins/cppeditor/cppsnippetprovider.cpp +++ b/src/plugins/cppeditor/cppsnippetprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppsnippetprovider.h b/src/plugins/cppeditor/cppsnippetprovider.h index ce798b206fd..23ca0a62cef 100644 --- a/src/plugins/cppeditor/cppsnippetprovider.h +++ b/src/plugins/cppeditor/cppsnippetprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpptypehierarchy.cpp b/src/plugins/cppeditor/cpptypehierarchy.cpp index 992623565ac..74271141062 100644 --- a/src/plugins/cppeditor/cpptypehierarchy.cpp +++ b/src/plugins/cppeditor/cpptypehierarchy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cpptypehierarchy.h b/src/plugins/cppeditor/cpptypehierarchy.h index 5b06035845d..3c41c416a88 100644 --- a/src/plugins/cppeditor/cpptypehierarchy.h +++ b/src/plugins/cppeditor/cpptypehierarchy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppvirtualfunctionassistprovider.cpp b/src/plugins/cppeditor/cppvirtualfunctionassistprovider.cpp index 1e0f45334fb..132f9993971 100644 --- a/src/plugins/cppeditor/cppvirtualfunctionassistprovider.cpp +++ b/src/plugins/cppeditor/cppvirtualfunctionassistprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppvirtualfunctionassistprovider.h b/src/plugins/cppeditor/cppvirtualfunctionassistprovider.h index 3a99fc37f86..f0a3a6c013b 100644 --- a/src/plugins/cppeditor/cppvirtualfunctionassistprovider.h +++ b/src/plugins/cppeditor/cppvirtualfunctionassistprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppvirtualfunctionproposalitem.cpp b/src/plugins/cppeditor/cppvirtualfunctionproposalitem.cpp index 91335af54de..a7710484e6d 100644 --- a/src/plugins/cppeditor/cppvirtualfunctionproposalitem.cpp +++ b/src/plugins/cppeditor/cppvirtualfunctionproposalitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/cppvirtualfunctionproposalitem.h b/src/plugins/cppeditor/cppvirtualfunctionproposalitem.h index 44cf50dcc91..7aaa6d5e299 100644 --- a/src/plugins/cppeditor/cppvirtualfunctionproposalitem.h +++ b/src/plugins/cppeditor/cppvirtualfunctionproposalitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/fileandtokenactions_test.cpp b/src/plugins/cppeditor/fileandtokenactions_test.cpp index 1dd403903f3..51c56fef06c 100644 --- a/src/plugins/cppeditor/fileandtokenactions_test.cpp +++ b/src/plugins/cppeditor/fileandtokenactions_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cppeditor/followsymbol_switchmethoddecldef_test.cpp b/src/plugins/cppeditor/followsymbol_switchmethoddecldef_test.cpp index bfda3165381..e41974f8ad5 100644 --- a/src/plugins/cppeditor/followsymbol_switchmethoddecldef_test.cpp +++ b/src/plugins/cppeditor/followsymbol_switchmethoddecldef_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/CppTools.pluginspec.in b/src/plugins/cpptools/CppTools.pluginspec.in index 88a3b91356c..93dac6961fd 100644 --- a/src/plugins/cpptools/CppTools.pluginspec.in +++ b/src/plugins/cpptools/CppTools.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"CppTools\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/cpptools/abstracteditorsupport.cpp b/src/plugins/cpptools/abstracteditorsupport.cpp index ee48c39a33d..3128eedf7a7 100644 --- a/src/plugins/cpptools/abstracteditorsupport.cpp +++ b/src/plugins/cpptools/abstracteditorsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/abstracteditorsupport.h b/src/plugins/cpptools/abstracteditorsupport.h index 9b5616c6902..a8afc450d6b 100644 --- a/src/plugins/cpptools/abstracteditorsupport.h +++ b/src/plugins/cpptools/abstracteditorsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/builtinindexingsupport.h b/src/plugins/cpptools/builtinindexingsupport.h index df4a9c91084..fd766638b44 100644 --- a/src/plugins/cpptools/builtinindexingsupport.h +++ b/src/plugins/cpptools/builtinindexingsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/commentssettings.cpp b/src/plugins/cpptools/commentssettings.cpp index 4151620778c..a5d963e6889 100644 --- a/src/plugins/cpptools/commentssettings.cpp +++ b/src/plugins/cpptools/commentssettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/commentssettings.h b/src/plugins/cpptools/commentssettings.h index 4455053af9e..55986f9aec8 100644 --- a/src/plugins/cpptools/commentssettings.h +++ b/src/plugins/cpptools/commentssettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/completionsettingspage.cpp b/src/plugins/cpptools/completionsettingspage.cpp index 37ca2ed1727..111183b2d73 100644 --- a/src/plugins/cpptools/completionsettingspage.cpp +++ b/src/plugins/cpptools/completionsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/completionsettingspage.h b/src/plugins/cpptools/completionsettingspage.h index 0a9bdd4afb1..592117fb696 100644 --- a/src/plugins/cpptools/completionsettingspage.h +++ b/src/plugins/cpptools/completionsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppchecksymbols.cpp b/src/plugins/cpptools/cppchecksymbols.cpp index 4aaef9c7e60..cd158421887 100644 --- a/src/plugins/cpptools/cppchecksymbols.cpp +++ b/src/plugins/cpptools/cppchecksymbols.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppchecksymbols.h b/src/plugins/cpptools/cppchecksymbols.h index 870bc709f86..3fcf1ee6985 100644 --- a/src/plugins/cpptools/cppchecksymbols.h +++ b/src/plugins/cpptools/cppchecksymbols.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppclassesfilter.cpp b/src/plugins/cpptools/cppclassesfilter.cpp index 316edb2898e..5809e015201 100644 --- a/src/plugins/cpptools/cppclassesfilter.cpp +++ b/src/plugins/cpptools/cppclassesfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppclassesfilter.h b/src/plugins/cpptools/cppclassesfilter.h index cb0475dd486..ceb02b8e7d0 100644 --- a/src/plugins/cpptools/cppclassesfilter.h +++ b/src/plugins/cpptools/cppclassesfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodeformatter.cpp b/src/plugins/cpptools/cppcodeformatter.cpp index d83434fde93..c15e8c4aac6 100644 --- a/src/plugins/cpptools/cppcodeformatter.cpp +++ b/src/plugins/cpptools/cppcodeformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodeformatter.h b/src/plugins/cpptools/cppcodeformatter.h index fe0c3620a95..18736e31450 100644 --- a/src/plugins/cpptools/cppcodeformatter.h +++ b/src/plugins/cpptools/cppcodeformatter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodegen_test.cpp b/src/plugins/cpptools/cppcodegen_test.cpp index 7344abe7dd2..43da0763f07 100644 --- a/src/plugins/cpptools/cppcodegen_test.cpp +++ b/src/plugins/cpptools/cppcodegen_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodemodelsettings.cpp b/src/plugins/cpptools/cppcodemodelsettings.cpp index d319f5c5dbe..207cc5141f8 100644 --- a/src/plugins/cpptools/cppcodemodelsettings.cpp +++ b/src/plugins/cpptools/cppcodemodelsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodemodelsettings.h b/src/plugins/cpptools/cppcodemodelsettings.h index ef1f8d63e09..21039593f6c 100644 --- a/src/plugins/cpptools/cppcodemodelsettings.h +++ b/src/plugins/cpptools/cppcodemodelsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodemodelsettingspage.cpp b/src/plugins/cpptools/cppcodemodelsettingspage.cpp index e5fd37824a6..2b9e8653b59 100644 --- a/src/plugins/cpptools/cppcodemodelsettingspage.cpp +++ b/src/plugins/cpptools/cppcodemodelsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodemodelsettingspage.h b/src/plugins/cpptools/cppcodemodelsettingspage.h index 310671e6be8..343d81e6af6 100644 --- a/src/plugins/cpptools/cppcodemodelsettingspage.h +++ b/src/plugins/cpptools/cppcodemodelsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodestylepreferences.cpp b/src/plugins/cpptools/cppcodestylepreferences.cpp index cfe6af734c9..47efe602fb4 100644 --- a/src/plugins/cpptools/cppcodestylepreferences.cpp +++ b/src/plugins/cpptools/cppcodestylepreferences.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodestylepreferences.h b/src/plugins/cpptools/cppcodestylepreferences.h index d3ef94e1a26..8634030417e 100644 --- a/src/plugins/cpptools/cppcodestylepreferences.h +++ b/src/plugins/cpptools/cppcodestylepreferences.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodestylepreferencesfactory.cpp b/src/plugins/cpptools/cppcodestylepreferencesfactory.cpp index 70610c24719..574c76ab3ce 100644 --- a/src/plugins/cpptools/cppcodestylepreferencesfactory.cpp +++ b/src/plugins/cpptools/cppcodestylepreferencesfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodestylepreferencesfactory.h b/src/plugins/cpptools/cppcodestylepreferencesfactory.h index 5b303ab8733..da31476f068 100644 --- a/src/plugins/cpptools/cppcodestylepreferencesfactory.h +++ b/src/plugins/cpptools/cppcodestylepreferencesfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodestylesettings.cpp b/src/plugins/cpptools/cppcodestylesettings.cpp index 057a8cbd7f7..0646e472eb8 100644 --- a/src/plugins/cpptools/cppcodestylesettings.cpp +++ b/src/plugins/cpptools/cppcodestylesettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodestylesettings.h b/src/plugins/cpptools/cppcodestylesettings.h index 141517baaa1..998c5a01ce3 100644 --- a/src/plugins/cpptools/cppcodestylesettings.h +++ b/src/plugins/cpptools/cppcodestylesettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodestylesettingspage.cpp b/src/plugins/cpptools/cppcodestylesettingspage.cpp index ca94a0ec573..eba4b33974b 100644 --- a/src/plugins/cpptools/cppcodestylesettingspage.cpp +++ b/src/plugins/cpptools/cppcodestylesettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcodestylesettingspage.h b/src/plugins/cpptools/cppcodestylesettingspage.h index 8f83f3ef183..4328e1faac2 100644 --- a/src/plugins/cpptools/cppcodestylesettingspage.h +++ b/src/plugins/cpptools/cppcodestylesettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcompletion_test.cpp b/src/plugins/cpptools/cppcompletion_test.cpp index d749a7d5540..ff3f5c38b1f 100644 --- a/src/plugins/cpptools/cppcompletion_test.cpp +++ b/src/plugins/cpptools/cppcompletion_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcompletionassist.cpp b/src/plugins/cpptools/cppcompletionassist.cpp index 266e7e03ec4..2c8878a24a1 100644 --- a/src/plugins/cpptools/cppcompletionassist.cpp +++ b/src/plugins/cpptools/cppcompletionassist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcompletionassist.h b/src/plugins/cpptools/cppcompletionassist.h index 454e737d4a5..98bca865461 100644 --- a/src/plugins/cpptools/cppcompletionassist.h +++ b/src/plugins/cpptools/cppcompletionassist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcompletionassistprovider.cpp b/src/plugins/cpptools/cppcompletionassistprovider.cpp index c746f0bf28d..11824b3b1d3 100644 --- a/src/plugins/cpptools/cppcompletionassistprovider.cpp +++ b/src/plugins/cpptools/cppcompletionassistprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcompletionassistprovider.h b/src/plugins/cpptools/cppcompletionassistprovider.h index e13a473e945..3f131f135ec 100644 --- a/src/plugins/cpptools/cppcompletionassistprovider.h +++ b/src/plugins/cpptools/cppcompletionassistprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcurrentdocumentfilter.cpp b/src/plugins/cpptools/cppcurrentdocumentfilter.cpp index 9ef4d7cbea7..2febb844c6b 100644 --- a/src/plugins/cpptools/cppcurrentdocumentfilter.cpp +++ b/src/plugins/cpptools/cppcurrentdocumentfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppcurrentdocumentfilter.h b/src/plugins/cpptools/cppcurrentdocumentfilter.h index d23c8e9c7d9..5e2bb390d6b 100644 --- a/src/plugins/cpptools/cppcurrentdocumentfilter.h +++ b/src/plugins/cpptools/cppcurrentdocumentfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppdoxygen.cpp b/src/plugins/cpptools/cppdoxygen.cpp index ea596b75a7d..991b30107ca 100644 --- a/src/plugins/cpptools/cppdoxygen.cpp +++ b/src/plugins/cpptools/cppdoxygen.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppdoxygen.h b/src/plugins/cpptools/cppdoxygen.h index 4c33b8f3529..8438adec61c 100644 --- a/src/plugins/cpptools/cppdoxygen.h +++ b/src/plugins/cpptools/cppdoxygen.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppfilesettingspage.cpp b/src/plugins/cpptools/cppfilesettingspage.cpp index 9de31210d82..c5cac630ef5 100644 --- a/src/plugins/cpptools/cppfilesettingspage.cpp +++ b/src/plugins/cpptools/cppfilesettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppfilesettingspage.h b/src/plugins/cpptools/cppfilesettingspage.h index 6fcf0dbc171..df66260303c 100644 --- a/src/plugins/cpptools/cppfilesettingspage.h +++ b/src/plugins/cpptools/cppfilesettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppfindreferences.cpp b/src/plugins/cpptools/cppfindreferences.cpp index a1e9625e85d..0cce94007c3 100644 --- a/src/plugins/cpptools/cppfindreferences.cpp +++ b/src/plugins/cpptools/cppfindreferences.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppfindreferences.h b/src/plugins/cpptools/cppfindreferences.h index 72e75c70c51..3b8863d0b0f 100644 --- a/src/plugins/cpptools/cppfindreferences.h +++ b/src/plugins/cpptools/cppfindreferences.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppfunctionsfilter.cpp b/src/plugins/cpptools/cppfunctionsfilter.cpp index 645f38a5bb4..400d19c1e6c 100644 --- a/src/plugins/cpptools/cppfunctionsfilter.cpp +++ b/src/plugins/cpptools/cppfunctionsfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppfunctionsfilter.h b/src/plugins/cpptools/cppfunctionsfilter.h index 1357e6d76d7..a3aa7d3c092 100644 --- a/src/plugins/cpptools/cppfunctionsfilter.h +++ b/src/plugins/cpptools/cppfunctionsfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppheadersource_test.cpp b/src/plugins/cpptools/cppheadersource_test.cpp index 26d833d1c40..95cb2cf1c66 100644 --- a/src/plugins/cpptools/cppheadersource_test.cpp +++ b/src/plugins/cpptools/cppheadersource_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Orgad Shaneh <orgads@gmail.com>. +** Copyright (C) 2014 Orgad Shaneh <orgads@gmail.com>. ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpphighlightingsupport.cpp b/src/plugins/cpptools/cpphighlightingsupport.cpp index 25346184672..7cd1e957c7d 100644 --- a/src/plugins/cpptools/cpphighlightingsupport.cpp +++ b/src/plugins/cpptools/cpphighlightingsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpphighlightingsupport.h b/src/plugins/cpptools/cpphighlightingsupport.h index ee085732b29..97f2e9d4759 100644 --- a/src/plugins/cpptools/cpphighlightingsupport.h +++ b/src/plugins/cpptools/cpphighlightingsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpphighlightingsupportinternal.cpp b/src/plugins/cpptools/cpphighlightingsupportinternal.cpp index 3009d45c169..0fe3351d943 100644 --- a/src/plugins/cpptools/cpphighlightingsupportinternal.cpp +++ b/src/plugins/cpptools/cpphighlightingsupportinternal.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpphighlightingsupportinternal.h b/src/plugins/cpptools/cpphighlightingsupportinternal.h index 7d274864910..6414643b243 100644 --- a/src/plugins/cpptools/cpphighlightingsupportinternal.h +++ b/src/plugins/cpptools/cpphighlightingsupportinternal.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppindexingsupport.cpp b/src/plugins/cpptools/cppindexingsupport.cpp index d1cb322a066..91dd7744879 100644 --- a/src/plugins/cpptools/cppindexingsupport.cpp +++ b/src/plugins/cpptools/cppindexingsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppindexingsupport.h b/src/plugins/cpptools/cppindexingsupport.h index c2b91817a39..00cb80f5d40 100644 --- a/src/plugins/cpptools/cppindexingsupport.h +++ b/src/plugins/cpptools/cppindexingsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpplocalsymbols.cpp b/src/plugins/cpptools/cpplocalsymbols.cpp index 58d9bffbae2..4e795cdf088 100644 --- a/src/plugins/cpptools/cpplocalsymbols.cpp +++ b/src/plugins/cpptools/cpplocalsymbols.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpplocalsymbols.h b/src/plugins/cpptools/cpplocalsymbols.h index 92465bb4b1c..061e4b20999 100644 --- a/src/plugins/cpptools/cpplocalsymbols.h +++ b/src/plugins/cpptools/cpplocalsymbols.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpplocatordata.cpp b/src/plugins/cpptools/cpplocatordata.cpp index 14fcd9df2c6..18086dbeac1 100644 --- a/src/plugins/cpptools/cpplocatordata.cpp +++ b/src/plugins/cpptools/cpplocatordata.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpplocatordata.h b/src/plugins/cpptools/cpplocatordata.h index d7a47c4161c..941286144c3 100644 --- a/src/plugins/cpptools/cpplocatordata.h +++ b/src/plugins/cpptools/cpplocatordata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpplocatorfilter.cpp b/src/plugins/cpptools/cpplocatorfilter.cpp index d673625a919..5680d36dc06 100644 --- a/src/plugins/cpptools/cpplocatorfilter.cpp +++ b/src/plugins/cpptools/cpplocatorfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpplocatorfilter.h b/src/plugins/cpptools/cpplocatorfilter.h index 583cdbb57f4..c1702410372 100644 --- a/src/plugins/cpptools/cpplocatorfilter.h +++ b/src/plugins/cpptools/cpplocatorfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpplocatorfilter_test.cpp b/src/plugins/cpptools/cpplocatorfilter_test.cpp index 7b6c3ae2745..bc3b9341fde 100644 --- a/src/plugins/cpptools/cpplocatorfilter_test.cpp +++ b/src/plugins/cpptools/cpplocatorfilter_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppmodelmanager.cpp b/src/plugins/cpptools/cppmodelmanager.cpp index bbe1a481aae..1ea0c77de45 100644 --- a/src/plugins/cpptools/cppmodelmanager.cpp +++ b/src/plugins/cpptools/cppmodelmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppmodelmanager.h b/src/plugins/cpptools/cppmodelmanager.h index 3bddb955ad9..e8e922b604e 100644 --- a/src/plugins/cpptools/cppmodelmanager.h +++ b/src/plugins/cpptools/cppmodelmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppmodelmanager_test.cpp b/src/plugins/cpptools/cppmodelmanager_test.cpp index 3e9f3aafe3c..91e89fced7e 100644 --- a/src/plugins/cpptools/cppmodelmanager_test.cpp +++ b/src/plugins/cpptools/cppmodelmanager_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppmodelmanagerinterface.cpp b/src/plugins/cpptools/cppmodelmanagerinterface.cpp index 31f1b55e18f..d3fb0fda86d 100644 --- a/src/plugins/cpptools/cppmodelmanagerinterface.cpp +++ b/src/plugins/cpptools/cppmodelmanagerinterface.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppmodelmanagerinterface.h b/src/plugins/cpptools/cppmodelmanagerinterface.h index 2cc0cbae647..000b921113e 100644 --- a/src/plugins/cpptools/cppmodelmanagerinterface.h +++ b/src/plugins/cpptools/cppmodelmanagerinterface.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppmodelmanagersupport.cpp b/src/plugins/cpptools/cppmodelmanagersupport.cpp index 8892dbada48..26f71555928 100644 --- a/src/plugins/cpptools/cppmodelmanagersupport.cpp +++ b/src/plugins/cpptools/cppmodelmanagersupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppmodelmanagersupport.h b/src/plugins/cpptools/cppmodelmanagersupport.h index be738c82a43..cd3ce1c835f 100644 --- a/src/plugins/cpptools/cppmodelmanagersupport.h +++ b/src/plugins/cpptools/cppmodelmanagersupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppmodelmanagersupportinternal.cpp b/src/plugins/cpptools/cppmodelmanagersupportinternal.cpp index 40527b8027e..9ec082f9ffe 100644 --- a/src/plugins/cpptools/cppmodelmanagersupportinternal.cpp +++ b/src/plugins/cpptools/cppmodelmanagersupportinternal.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppmodelmanagersupportinternal.h b/src/plugins/cpptools/cppmodelmanagersupportinternal.h index 650337358d2..d5b307b012d 100644 --- a/src/plugins/cpptools/cppmodelmanagersupportinternal.h +++ b/src/plugins/cpptools/cppmodelmanagersupportinternal.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpppointerdeclarationformatter.cpp b/src/plugins/cpptools/cpppointerdeclarationformatter.cpp index 53480f9b705..701909fb278 100644 --- a/src/plugins/cpptools/cpppointerdeclarationformatter.cpp +++ b/src/plugins/cpptools/cpppointerdeclarationformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpppointerdeclarationformatter.h b/src/plugins/cpptools/cpppointerdeclarationformatter.h index 9eadd6ed265..0bce8089dbe 100644 --- a/src/plugins/cpptools/cpppointerdeclarationformatter.h +++ b/src/plugins/cpptools/cpppointerdeclarationformatter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp b/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp index cddb4d0db26..14d6fef5a4c 100644 --- a/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp +++ b/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpppreprocessertesthelper.cpp b/src/plugins/cpptools/cpppreprocessertesthelper.cpp index dc1f48df359..88dd073bdac 100644 --- a/src/plugins/cpptools/cpppreprocessertesthelper.cpp +++ b/src/plugins/cpptools/cpppreprocessertesthelper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpppreprocessertesthelper.h b/src/plugins/cpptools/cpppreprocessertesthelper.h index c4eea5059e6..cd6084dddf0 100644 --- a/src/plugins/cpptools/cpppreprocessertesthelper.h +++ b/src/plugins/cpptools/cpppreprocessertesthelper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpppreprocessor_test.cpp b/src/plugins/cpptools/cpppreprocessor_test.cpp index 38c197e6e6a..000f19b997b 100644 --- a/src/plugins/cpptools/cpppreprocessor_test.cpp +++ b/src/plugins/cpptools/cpppreprocessor_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppprojectfile.cpp b/src/plugins/cpptools/cppprojectfile.cpp index 22b995c9479..9e74f3ac6e3 100644 --- a/src/plugins/cpptools/cppprojectfile.cpp +++ b/src/plugins/cpptools/cppprojectfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppprojectfile.h b/src/plugins/cpptools/cppprojectfile.h index 15fe2c2376e..5948aee4c8d 100644 --- a/src/plugins/cpptools/cppprojectfile.h +++ b/src/plugins/cpptools/cppprojectfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppqtstyleindenter.cpp b/src/plugins/cpptools/cppqtstyleindenter.cpp index 1e2ea6108e1..f687a216189 100644 --- a/src/plugins/cpptools/cppqtstyleindenter.cpp +++ b/src/plugins/cpptools/cppqtstyleindenter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppqtstyleindenter.h b/src/plugins/cpptools/cppqtstyleindenter.h index 92b236cabcc..a4da2bf7549 100644 --- a/src/plugins/cpptools/cppqtstyleindenter.h +++ b/src/plugins/cpptools/cppqtstyleindenter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpprefactoringchanges.cpp b/src/plugins/cpptools/cpprefactoringchanges.cpp index 9bc68f57e1d..58ddebdd272 100644 --- a/src/plugins/cpptools/cpprefactoringchanges.cpp +++ b/src/plugins/cpptools/cpprefactoringchanges.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpprefactoringchanges.h b/src/plugins/cpptools/cpprefactoringchanges.h index 833553a19d9..3fb96ed72b7 100644 --- a/src/plugins/cpptools/cpprefactoringchanges.h +++ b/src/plugins/cpptools/cpprefactoringchanges.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppsemanticinfo.cpp b/src/plugins/cpptools/cppsemanticinfo.cpp index 3484ab437d7..16072510740 100644 --- a/src/plugins/cpptools/cppsemanticinfo.cpp +++ b/src/plugins/cpptools/cppsemanticinfo.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppsemanticinfo.h b/src/plugins/cpptools/cppsemanticinfo.h index 45fa63b4280..cbb1734496b 100644 --- a/src/plugins/cpptools/cppsemanticinfo.h +++ b/src/plugins/cpptools/cppsemanticinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppsnapshotupdater.cpp b/src/plugins/cpptools/cppsnapshotupdater.cpp index 0a97a98fdfc..ae8e4e325a6 100644 --- a/src/plugins/cpptools/cppsnapshotupdater.cpp +++ b/src/plugins/cpptools/cppsnapshotupdater.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cppsnapshotupdater.h b/src/plugins/cpptools/cppsnapshotupdater.h index 739cb57d5a9..c5d14189465 100644 --- a/src/plugins/cpptools/cppsnapshotupdater.h +++ b/src/plugins/cpptools/cppsnapshotupdater.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptools_global.h b/src/plugins/cpptools/cpptools_global.h index 1dc53a32607..6ab5b6b35dc 100644 --- a/src/plugins/cpptools/cpptools_global.h +++ b/src/plugins/cpptools/cpptools_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptoolsconstants.h b/src/plugins/cpptools/cpptoolsconstants.h index ae3d384f2fb..a08e2b6ee9e 100644 --- a/src/plugins/cpptools/cpptoolsconstants.h +++ b/src/plugins/cpptools/cpptoolsconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptoolseditorsupport.cpp b/src/plugins/cpptools/cpptoolseditorsupport.cpp index 85c304cad63..a07c686cb5b 100644 --- a/src/plugins/cpptools/cpptoolseditorsupport.cpp +++ b/src/plugins/cpptools/cpptoolseditorsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptoolseditorsupport.h b/src/plugins/cpptools/cpptoolseditorsupport.h index 84674e3e518..ab7dc8e4a29 100644 --- a/src/plugins/cpptools/cpptoolseditorsupport.h +++ b/src/plugins/cpptools/cpptoolseditorsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptoolsplugin.cpp b/src/plugins/cpptools/cpptoolsplugin.cpp index b7206450326..8dc5e4c95e9 100644 --- a/src/plugins/cpptools/cpptoolsplugin.cpp +++ b/src/plugins/cpptools/cpptoolsplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptoolsplugin.h b/src/plugins/cpptools/cpptoolsplugin.h index 94b30bf9e56..067c484bb58 100644 --- a/src/plugins/cpptools/cpptoolsplugin.h +++ b/src/plugins/cpptools/cpptoolsplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptoolsreuse.cpp b/src/plugins/cpptools/cpptoolsreuse.cpp index ed4f694c0ea..b2d9c17d162 100644 --- a/src/plugins/cpptools/cpptoolsreuse.cpp +++ b/src/plugins/cpptools/cpptoolsreuse.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptoolsreuse.h b/src/plugins/cpptools/cpptoolsreuse.h index 062f1046d6e..a0156a8093a 100644 --- a/src/plugins/cpptools/cpptoolsreuse.h +++ b/src/plugins/cpptools/cpptoolsreuse.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptoolssettings.cpp b/src/plugins/cpptools/cpptoolssettings.cpp index 2385e4aa53b..b5f01290633 100644 --- a/src/plugins/cpptools/cpptoolssettings.cpp +++ b/src/plugins/cpptools/cpptoolssettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/cpptoolssettings.h b/src/plugins/cpptools/cpptoolssettings.h index 23a36a4ca0b..f7af18107bc 100644 --- a/src/plugins/cpptools/cpptoolssettings.h +++ b/src/plugins/cpptools/cpptoolssettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/doxygengenerator.cpp b/src/plugins/cpptools/doxygengenerator.cpp index 6cd780a96a0..681e33903d8 100644 --- a/src/plugins/cpptools/doxygengenerator.cpp +++ b/src/plugins/cpptools/doxygengenerator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/doxygengenerator.h b/src/plugins/cpptools/doxygengenerator.h index 2180653fbd4..2e8abccbee7 100644 --- a/src/plugins/cpptools/doxygengenerator.h +++ b/src/plugins/cpptools/doxygengenerator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/includeutils.cpp b/src/plugins/cpptools/includeutils.cpp index 405c3ed6be8..3d697974e7f 100644 --- a/src/plugins/cpptools/includeutils.cpp +++ b/src/plugins/cpptools/includeutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/includeutils.h b/src/plugins/cpptools/includeutils.h index b45f1f0d4c1..89fff5a3d13 100644 --- a/src/plugins/cpptools/includeutils.h +++ b/src/plugins/cpptools/includeutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/insertionpointlocator.cpp b/src/plugins/cpptools/insertionpointlocator.cpp index 21dc5138c9f..40d0475f230 100644 --- a/src/plugins/cpptools/insertionpointlocator.cpp +++ b/src/plugins/cpptools/insertionpointlocator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/insertionpointlocator.h b/src/plugins/cpptools/insertionpointlocator.h index 1d7065b3896..0324d24d093 100644 --- a/src/plugins/cpptools/insertionpointlocator.h +++ b/src/plugins/cpptools/insertionpointlocator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/modelmanagertesthelper.cpp b/src/plugins/cpptools/modelmanagertesthelper.cpp index 4d7590e130d..98de70ddffe 100644 --- a/src/plugins/cpptools/modelmanagertesthelper.cpp +++ b/src/plugins/cpptools/modelmanagertesthelper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/modelmanagertesthelper.h b/src/plugins/cpptools/modelmanagertesthelper.h index d4ac671bc1b..3923c96cbec 100644 --- a/src/plugins/cpptools/modelmanagertesthelper.h +++ b/src/plugins/cpptools/modelmanagertesthelper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/searchsymbols.cpp b/src/plugins/cpptools/searchsymbols.cpp index 08b5a8b56ff..ddbaaa01e55 100644 --- a/src/plugins/cpptools/searchsymbols.cpp +++ b/src/plugins/cpptools/searchsymbols.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/searchsymbols.h b/src/plugins/cpptools/searchsymbols.h index c81d8575123..a8b672b44ab 100644 --- a/src/plugins/cpptools/searchsymbols.h +++ b/src/plugins/cpptools/searchsymbols.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/symbolfinder.cpp b/src/plugins/cpptools/symbolfinder.cpp index 5994ededbf3..74b5f2d0a79 100644 --- a/src/plugins/cpptools/symbolfinder.cpp +++ b/src/plugins/cpptools/symbolfinder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/symbolfinder.h b/src/plugins/cpptools/symbolfinder.h index eb52235efc6..54255eacb09 100644 --- a/src/plugins/cpptools/symbolfinder.h +++ b/src/plugins/cpptools/symbolfinder.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/symbolsearcher_test.cpp b/src/plugins/cpptools/symbolsearcher_test.cpp index c5529b7b467..0426435029a 100644 --- a/src/plugins/cpptools/symbolsearcher_test.cpp +++ b/src/plugins/cpptools/symbolsearcher_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/symbolsfindfilter.cpp b/src/plugins/cpptools/symbolsfindfilter.cpp index f9a8d5f326a..adfdbc21912 100644 --- a/src/plugins/cpptools/symbolsfindfilter.cpp +++ b/src/plugins/cpptools/symbolsfindfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/symbolsfindfilter.h b/src/plugins/cpptools/symbolsfindfilter.h index 2a45a3fc198..998b58dba3e 100644 --- a/src/plugins/cpptools/symbolsfindfilter.h +++ b/src/plugins/cpptools/symbolsfindfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/typehierarchybuilder.cpp b/src/plugins/cpptools/typehierarchybuilder.cpp index 1e8c372a740..0b278cadfdd 100644 --- a/src/plugins/cpptools/typehierarchybuilder.cpp +++ b/src/plugins/cpptools/typehierarchybuilder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/typehierarchybuilder.h b/src/plugins/cpptools/typehierarchybuilder.h index 94d11510249..0a4153ea9f3 100644 --- a/src/plugins/cpptools/typehierarchybuilder.h +++ b/src/plugins/cpptools/typehierarchybuilder.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cpptools/typehierarchybuilder_test.cpp b/src/plugins/cpptools/typehierarchybuilder_test.cpp index 3bcfa054887..34b78326d1c 100644 --- a/src/plugins/cpptools/typehierarchybuilder_test.cpp +++ b/src/plugins/cpptools/typehierarchybuilder_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/CVS.pluginspec.in b/src/plugins/cvs/CVS.pluginspec.in index 49e4653d752..1c89ae0c7c2 100644 --- a/src/plugins/cvs/CVS.pluginspec.in +++ b/src/plugins/cvs/CVS.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"CVS\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/cvs/annotationhighlighter.cpp b/src/plugins/cvs/annotationhighlighter.cpp index d528394a2c8..ce2843dd9a6 100644 --- a/src/plugins/cvs/annotationhighlighter.cpp +++ b/src/plugins/cvs/annotationhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/annotationhighlighter.h b/src/plugins/cvs/annotationhighlighter.h index 9ded8cc148f..3f8e0ab21c4 100644 --- a/src/plugins/cvs/annotationhighlighter.h +++ b/src/plugins/cvs/annotationhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/checkoutwizard.cpp b/src/plugins/cvs/checkoutwizard.cpp index e2a3bb327cb..99dbf3a938d 100644 --- a/src/plugins/cvs/checkoutwizard.cpp +++ b/src/plugins/cvs/checkoutwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/checkoutwizard.h b/src/plugins/cvs/checkoutwizard.h index d6fc525218c..81290935ecc 100644 --- a/src/plugins/cvs/checkoutwizard.h +++ b/src/plugins/cvs/checkoutwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/checkoutwizardpage.cpp b/src/plugins/cvs/checkoutwizardpage.cpp index 0657c0eac4f..eed0465e573 100644 --- a/src/plugins/cvs/checkoutwizardpage.cpp +++ b/src/plugins/cvs/checkoutwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/checkoutwizardpage.h b/src/plugins/cvs/checkoutwizardpage.h index 4fd6d31ea4e..dbb5db156a7 100644 --- a/src/plugins/cvs/checkoutwizardpage.h +++ b/src/plugins/cvs/checkoutwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvsconstants.h b/src/plugins/cvs/cvsconstants.h index d3bc8e4b73d..835c7205687 100644 --- a/src/plugins/cvs/cvsconstants.h +++ b/src/plugins/cvs/cvsconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvscontrol.cpp b/src/plugins/cvs/cvscontrol.cpp index b22e93eafea..6627779327f 100644 --- a/src/plugins/cvs/cvscontrol.cpp +++ b/src/plugins/cvs/cvscontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvscontrol.h b/src/plugins/cvs/cvscontrol.h index 7d1fac56076..7c07517637e 100644 --- a/src/plugins/cvs/cvscontrol.h +++ b/src/plugins/cvs/cvscontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvseditor.cpp b/src/plugins/cvs/cvseditor.cpp index d34dc18f863..df1bdfd62b1 100644 --- a/src/plugins/cvs/cvseditor.cpp +++ b/src/plugins/cvs/cvseditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvseditor.h b/src/plugins/cvs/cvseditor.h index 82621f18f01..a1307f73f5a 100644 --- a/src/plugins/cvs/cvseditor.h +++ b/src/plugins/cvs/cvseditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp index 15826ba473c..a431190ccc5 100644 --- a/src/plugins/cvs/cvsplugin.cpp +++ b/src/plugins/cvs/cvsplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvsplugin.h b/src/plugins/cvs/cvsplugin.h index 6d8f057b83b..521e33d3617 100644 --- a/src/plugins/cvs/cvsplugin.h +++ b/src/plugins/cvs/cvsplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvssettings.cpp b/src/plugins/cvs/cvssettings.cpp index 113057fc8d1..9d2629d062b 100644 --- a/src/plugins/cvs/cvssettings.cpp +++ b/src/plugins/cvs/cvssettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvssettings.h b/src/plugins/cvs/cvssettings.h index 4eb01fafcac..b0f4ebc665a 100644 --- a/src/plugins/cvs/cvssettings.h +++ b/src/plugins/cvs/cvssettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvssubmiteditor.cpp b/src/plugins/cvs/cvssubmiteditor.cpp index 92ceade1e6f..9fa7da007d3 100644 --- a/src/plugins/cvs/cvssubmiteditor.cpp +++ b/src/plugins/cvs/cvssubmiteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvssubmiteditor.h b/src/plugins/cvs/cvssubmiteditor.h index 95a3c37fa42..a6e80566fec 100644 --- a/src/plugins/cvs/cvssubmiteditor.h +++ b/src/plugins/cvs/cvssubmiteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvsutils.cpp b/src/plugins/cvs/cvsutils.cpp index eb3ace82304..f87efa1ffdd 100644 --- a/src/plugins/cvs/cvsutils.cpp +++ b/src/plugins/cvs/cvsutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/cvsutils.h b/src/plugins/cvs/cvsutils.h index 33740c5b801..7e0182878da 100644 --- a/src/plugins/cvs/cvsutils.h +++ b/src/plugins/cvs/cvsutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/settingspage.cpp b/src/plugins/cvs/settingspage.cpp index e5f051579ed..60c41f4d1df 100644 --- a/src/plugins/cvs/settingspage.cpp +++ b/src/plugins/cvs/settingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/cvs/settingspage.h b/src/plugins/cvs/settingspage.h index ecd9c1d52d5..729fa33f64f 100644 --- a/src/plugins/cvs/settingspage.h +++ b/src/plugins/cvs/settingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/Debugger.pluginspec.in b/src/plugins/debugger/Debugger.pluginspec.in index 1ebcdb21b24..6c95aa4ae22 100644 --- a/src/plugins/debugger/Debugger.pluginspec.in +++ b/src/plugins/debugger/Debugger.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Debugger\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/debugger/basewindow.cpp b/src/plugins/debugger/basewindow.cpp index e47a1e04b24..b2757de790c 100644 --- a/src/plugins/debugger/basewindow.cpp +++ b/src/plugins/debugger/basewindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/basewindow.h b/src/plugins/debugger/basewindow.h index 0525bf000ac..53b0687b9d1 100644 --- a/src/plugins/debugger/basewindow.h +++ b/src/plugins/debugger/basewindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp index 597c06480a4..66897cba855 100644 --- a/src/plugins/debugger/breakhandler.cpp +++ b/src/plugins/debugger/breakhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/breakhandler.h b/src/plugins/debugger/breakhandler.h index 81467e35e9c..d10d92da11a 100644 --- a/src/plugins/debugger/breakhandler.h +++ b/src/plugins/debugger/breakhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/breakpoint.cpp b/src/plugins/debugger/breakpoint.cpp index 2d1dd15c126..318468bb720 100644 --- a/src/plugins/debugger/breakpoint.cpp +++ b/src/plugins/debugger/breakpoint.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/breakpoint.h b/src/plugins/debugger/breakpoint.h index 8891da055f0..06bf35a77aa 100644 --- a/src/plugins/debugger/breakpoint.h +++ b/src/plugins/debugger/breakpoint.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/breakpointmarker.cpp b/src/plugins/debugger/breakpointmarker.cpp index 0f945921b6f..d631d9c084c 100644 --- a/src/plugins/debugger/breakpointmarker.cpp +++ b/src/plugins/debugger/breakpointmarker.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/breakpointmarker.h b/src/plugins/debugger/breakpointmarker.h index ff90a56a56f..b41daab79ca 100644 --- a/src/plugins/debugger/breakpointmarker.h +++ b/src/plugins/debugger/breakpointmarker.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/breakwindow.cpp b/src/plugins/debugger/breakwindow.cpp index 91d11c4cebc..ec4be8cc613 100644 --- a/src/plugins/debugger/breakwindow.cpp +++ b/src/plugins/debugger/breakwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/breakwindow.h b/src/plugins/debugger/breakwindow.h index dfbf5bc55ed..da74d0cb0cb 100644 --- a/src/plugins/debugger/breakwindow.h +++ b/src/plugins/debugger/breakwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/cdb/bytearrayinputstream.cpp b/src/plugins/debugger/cdb/bytearrayinputstream.cpp index 138ff82176d..897adbc5025 100644 --- a/src/plugins/debugger/cdb/bytearrayinputstream.cpp +++ b/src/plugins/debugger/cdb/bytearrayinputstream.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/cdb/bytearrayinputstream.h b/src/plugins/debugger/cdb/bytearrayinputstream.h index a2ff61df10e..ea438bc73c3 100644 --- a/src/plugins/debugger/cdb/bytearrayinputstream.h +++ b/src/plugins/debugger/cdb/bytearrayinputstream.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index a596dea1c0f..c19ad017d69 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/cdb/cdbengine.h b/src/plugins/debugger/cdb/cdbengine.h index f9b4962f2cf..3296344f9fc 100644 --- a/src/plugins/debugger/cdb/cdbengine.h +++ b/src/plugins/debugger/cdb/cdbengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/cdb/cdboptionspage.cpp b/src/plugins/debugger/cdb/cdboptionspage.cpp index e3b6c4cd33f..5060a8ce151 100644 --- a/src/plugins/debugger/cdb/cdboptionspage.cpp +++ b/src/plugins/debugger/cdb/cdboptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/cdb/cdboptionspage.h b/src/plugins/debugger/cdb/cdboptionspage.h index a84a703c736..f26ab7cc3ee 100644 --- a/src/plugins/debugger/cdb/cdboptionspage.h +++ b/src/plugins/debugger/cdb/cdboptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/cdb/cdbparsehelpers.cpp b/src/plugins/debugger/cdb/cdbparsehelpers.cpp index fe7a28166a7..9f0a5629b04 100644 --- a/src/plugins/debugger/cdb/cdbparsehelpers.cpp +++ b/src/plugins/debugger/cdb/cdbparsehelpers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/cdb/cdbparsehelpers.h b/src/plugins/debugger/cdb/cdbparsehelpers.h index 4d046f30fe7..e84d717b543 100644 --- a/src/plugins/debugger/cdb/cdbparsehelpers.h +++ b/src/plugins/debugger/cdb/cdbparsehelpers.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/commonoptionspage.cpp b/src/plugins/debugger/commonoptionspage.cpp index b75581e0018..5493450d5e1 100644 --- a/src/plugins/debugger/commonoptionspage.cpp +++ b/src/plugins/debugger/commonoptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/commonoptionspage.h b/src/plugins/debugger/commonoptionspage.h index c09d1ccde45..508fb20240b 100644 --- a/src/plugins/debugger/commonoptionspage.h +++ b/src/plugins/debugger/commonoptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debugger_global.h b/src/plugins/debugger/debugger_global.h index fc205d7675d..13fbd15564c 100644 --- a/src/plugins/debugger/debugger_global.h +++ b/src/plugins/debugger/debugger_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index 7313f4b2946..073cd957771 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeractions.h b/src/plugins/debugger/debuggeractions.h index f4398c5645c..601c8e7226b 100644 --- a/src/plugins/debugger/debuggeractions.h +++ b/src/plugins/debugger/debuggeractions.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerconstants.h b/src/plugins/debugger/debuggerconstants.h index 19bc0fe994d..941e9c24314 100644 --- a/src/plugins/debugger/debuggerconstants.h +++ b/src/plugins/debugger/debuggerconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggercore.h b/src/plugins/debugger/debuggercore.h index d8119edea8b..7b056ca44e7 100644 --- a/src/plugins/debugger/debuggercore.h +++ b/src/plugins/debugger/debuggercore.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerdialogs.cpp b/src/plugins/debugger/debuggerdialogs.cpp index b1db49211d9..3be9af38725 100644 --- a/src/plugins/debugger/debuggerdialogs.cpp +++ b/src/plugins/debugger/debuggerdialogs.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerdialogs.h b/src/plugins/debugger/debuggerdialogs.h index 385462bc3ec..cc1a9bffb83 100644 --- a/src/plugins/debugger/debuggerdialogs.h +++ b/src/plugins/debugger/debuggerdialogs.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerengine.cpp b/src/plugins/debugger/debuggerengine.cpp index ab3828f4776..b6b69ff4e4c 100644 --- a/src/plugins/debugger/debuggerengine.cpp +++ b/src/plugins/debugger/debuggerengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerengine.h b/src/plugins/debugger/debuggerengine.h index 672fefdb6db..2dbb0839609 100644 --- a/src/plugins/debugger/debuggerengine.h +++ b/src/plugins/debugger/debuggerengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerinternalconstants.h b/src/plugins/debugger/debuggerinternalconstants.h index b5ed7da1b75..4cdf99a496d 100644 --- a/src/plugins/debugger/debuggerinternalconstants.h +++ b/src/plugins/debugger/debuggerinternalconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeritem.cpp b/src/plugins/debugger/debuggeritem.cpp index c620e250bfc..0f22707df86 100644 --- a/src/plugins/debugger/debuggeritem.cpp +++ b/src/plugins/debugger/debuggeritem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeritem.h b/src/plugins/debugger/debuggeritem.h index c7d9d707771..9d3a36d3411 100644 --- a/src/plugins/debugger/debuggeritem.h +++ b/src/plugins/debugger/debuggeritem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeritemmanager.cpp b/src/plugins/debugger/debuggeritemmanager.cpp index 552018bd98b..59c3adb0461 100644 --- a/src/plugins/debugger/debuggeritemmanager.cpp +++ b/src/plugins/debugger/debuggeritemmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeritemmanager.h b/src/plugins/debugger/debuggeritemmanager.h index 3140963dbd2..8189bda1c1c 100644 --- a/src/plugins/debugger/debuggeritemmanager.h +++ b/src/plugins/debugger/debuggeritemmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeritemmodel.cpp b/src/plugins/debugger/debuggeritemmodel.cpp index 913ebe5e1c7..b5d07830bb5 100644 --- a/src/plugins/debugger/debuggeritemmodel.cpp +++ b/src/plugins/debugger/debuggeritemmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeritemmodel.h b/src/plugins/debugger/debuggeritemmodel.h index 1f261696250..ca710c3628e 100644 --- a/src/plugins/debugger/debuggeritemmodel.h +++ b/src/plugins/debugger/debuggeritemmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerkitconfigwidget.cpp b/src/plugins/debugger/debuggerkitconfigwidget.cpp index 883d2221505..2d3486ef459 100644 --- a/src/plugins/debugger/debuggerkitconfigwidget.cpp +++ b/src/plugins/debugger/debuggerkitconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerkitconfigwidget.h b/src/plugins/debugger/debuggerkitconfigwidget.h index e126f513f96..c5bfa2e0fe3 100644 --- a/src/plugins/debugger/debuggerkitconfigwidget.h +++ b/src/plugins/debugger/debuggerkitconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerkitinformation.cpp b/src/plugins/debugger/debuggerkitinformation.cpp index 7ee98c619db..34fb486f35f 100644 --- a/src/plugins/debugger/debuggerkitinformation.cpp +++ b/src/plugins/debugger/debuggerkitinformation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerkitinformation.h b/src/plugins/debugger/debuggerkitinformation.h index 3e03e19d2e7..0ca0bb37ad3 100644 --- a/src/plugins/debugger/debuggerkitinformation.h +++ b/src/plugins/debugger/debuggerkitinformation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggermainwindow.cpp b/src/plugins/debugger/debuggermainwindow.cpp index ab1fef45571..a84532d8d25 100644 --- a/src/plugins/debugger/debuggermainwindow.cpp +++ b/src/plugins/debugger/debuggermainwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggermainwindow.h b/src/plugins/debugger/debuggermainwindow.h index 75bad457e95..23c87cfb38e 100644 --- a/src/plugins/debugger/debuggermainwindow.h +++ b/src/plugins/debugger/debuggermainwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeroptionspage.cpp b/src/plugins/debugger/debuggeroptionspage.cpp index bd0b8d29166..75dbaf5aeee 100644 --- a/src/plugins/debugger/debuggeroptionspage.cpp +++ b/src/plugins/debugger/debuggeroptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggeroptionspage.h b/src/plugins/debugger/debuggeroptionspage.h index 29089b4f528..f214bf99bf5 100644 --- a/src/plugins/debugger/debuggeroptionspage.h +++ b/src/plugins/debugger/debuggeroptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index a68df5c9c04..21a3e206cf3 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h index 32790efd4f0..3b58365819d 100644 --- a/src/plugins/debugger/debuggerplugin.h +++ b/src/plugins/debugger/debuggerplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerprotocol.cpp b/src/plugins/debugger/debuggerprotocol.cpp index b76bce34891..5e5ab738214 100644 --- a/src/plugins/debugger/debuggerprotocol.cpp +++ b/src/plugins/debugger/debuggerprotocol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerprotocol.h b/src/plugins/debugger/debuggerprotocol.h index bf90dd226e6..ed46dc1948b 100644 --- a/src/plugins/debugger/debuggerprotocol.h +++ b/src/plugins/debugger/debuggerprotocol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerrunconfigurationaspect.cpp b/src/plugins/debugger/debuggerrunconfigurationaspect.cpp index 90c4c1b248a..2122d158992 100644 --- a/src/plugins/debugger/debuggerrunconfigurationaspect.cpp +++ b/src/plugins/debugger/debuggerrunconfigurationaspect.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerrunconfigurationaspect.h b/src/plugins/debugger/debuggerrunconfigurationaspect.h index ab1c53838c5..34787783722 100644 --- a/src/plugins/debugger/debuggerrunconfigurationaspect.h +++ b/src/plugins/debugger/debuggerrunconfigurationaspect.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerruncontrolfactory.h b/src/plugins/debugger/debuggerruncontrolfactory.h index 70a9adf2d56..4b6ab2be349 100644 --- a/src/plugins/debugger/debuggerruncontrolfactory.h +++ b/src/plugins/debugger/debuggerruncontrolfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp index 59c2158dcff..9ccb36c5b84 100644 --- a/src/plugins/debugger/debuggerrunner.cpp +++ b/src/plugins/debugger/debuggerrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerrunner.h b/src/plugins/debugger/debuggerrunner.h index 3399aa60a2d..f6a66487c2a 100644 --- a/src/plugins/debugger/debuggerrunner.h +++ b/src/plugins/debugger/debuggerrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp index 2080d92d38c..ec7aa34b600 100644 --- a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp +++ b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggersourcepathmappingwidget.h b/src/plugins/debugger/debuggersourcepathmappingwidget.h index 83d94cf383c..1e589299db2 100644 --- a/src/plugins/debugger/debuggersourcepathmappingwidget.h +++ b/src/plugins/debugger/debuggersourcepathmappingwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerstartparameters.h b/src/plugins/debugger/debuggerstartparameters.h index f928fd40e3d..b66500a8411 100644 --- a/src/plugins/debugger/debuggerstartparameters.h +++ b/src/plugins/debugger/debuggerstartparameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerstreamops.cpp b/src/plugins/debugger/debuggerstreamops.cpp index 7443baa53c7..0b77e87b20b 100644 --- a/src/plugins/debugger/debuggerstreamops.cpp +++ b/src/plugins/debugger/debuggerstreamops.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerstreamops.h b/src/plugins/debugger/debuggerstreamops.h index 5c115900980..cd858030ed9 100644 --- a/src/plugins/debugger/debuggerstreamops.h +++ b/src/plugins/debugger/debuggerstreamops.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggerstringutils.h b/src/plugins/debugger/debuggerstringutils.h index d8e1d06551d..179a22d5cf4 100644 --- a/src/plugins/debugger/debuggerstringutils.h +++ b/src/plugins/debugger/debuggerstringutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggertooltipmanager.cpp b/src/plugins/debugger/debuggertooltipmanager.cpp index a4c69971456..1e8c3d7266d 100644 --- a/src/plugins/debugger/debuggertooltipmanager.cpp +++ b/src/plugins/debugger/debuggertooltipmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/debuggertooltipmanager.h b/src/plugins/debugger/debuggertooltipmanager.h index 721778aaf14..3ee5bbb9d4a 100644 --- a/src/plugins/debugger/debuggertooltipmanager.h +++ b/src/plugins/debugger/debuggertooltipmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/disassembleragent.cpp b/src/plugins/debugger/disassembleragent.cpp index 3dd14440bb1..6748ff9fe13 100644 --- a/src/plugins/debugger/disassembleragent.cpp +++ b/src/plugins/debugger/disassembleragent.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/disassembleragent.h b/src/plugins/debugger/disassembleragent.h index b6d3472b657..0a3b9bfe5b6 100644 --- a/src/plugins/debugger/disassembleragent.h +++ b/src/plugins/debugger/disassembleragent.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/disassemblerlines.cpp b/src/plugins/debugger/disassemblerlines.cpp index a583e60c9f7..f125d72448e 100644 --- a/src/plugins/debugger/disassemblerlines.cpp +++ b/src/plugins/debugger/disassemblerlines.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/disassemblerlines.h b/src/plugins/debugger/disassemblerlines.h index 6e896b1ab23..1026d10fba4 100644 --- a/src/plugins/debugger/disassemblerlines.h +++ b/src/plugins/debugger/disassemblerlines.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/attachgdbadapter.cpp b/src/plugins/debugger/gdb/attachgdbadapter.cpp index 038b90c94e4..038aa5618c5 100644 --- a/src/plugins/debugger/gdb/attachgdbadapter.cpp +++ b/src/plugins/debugger/gdb/attachgdbadapter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/attachgdbadapter.h b/src/plugins/debugger/gdb/attachgdbadapter.h index 045c238afd6..ca900b06506 100644 --- a/src/plugins/debugger/gdb/attachgdbadapter.h +++ b/src/plugins/debugger/gdb/attachgdbadapter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/classicgdbengine.cpp b/src/plugins/debugger/gdb/classicgdbengine.cpp index 3d355dcf575..518faf29fcb 100644 --- a/src/plugins/debugger/gdb/classicgdbengine.cpp +++ b/src/plugins/debugger/gdb/classicgdbengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/coregdbadapter.cpp b/src/plugins/debugger/gdb/coregdbadapter.cpp index 13f6326a21f..1e2ba36a919 100644 --- a/src/plugins/debugger/gdb/coregdbadapter.cpp +++ b/src/plugins/debugger/gdb/coregdbadapter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/coregdbadapter.h b/src/plugins/debugger/gdb/coregdbadapter.h index f1168b13206..4f274fb26a6 100644 --- a/src/plugins/debugger/gdb/coregdbadapter.h +++ b/src/plugins/debugger/gdb/coregdbadapter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 7cdacb90535..0ff3993168d 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/gdbengine.h b/src/plugins/debugger/gdb/gdbengine.h index cc863bb7ea9..7146a6c10ff 100644 --- a/src/plugins/debugger/gdb/gdbengine.h +++ b/src/plugins/debugger/gdb/gdbengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/gdboptionspage.cpp b/src/plugins/debugger/gdb/gdboptionspage.cpp index f0efdd3477b..518a3f28414 100644 --- a/src/plugins/debugger/gdb/gdboptionspage.cpp +++ b/src/plugins/debugger/gdb/gdboptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/gdboptionspage.h b/src/plugins/debugger/gdb/gdboptionspage.h index 29387f82c2a..8dacb9bb2d8 100644 --- a/src/plugins/debugger/gdb/gdboptionspage.h +++ b/src/plugins/debugger/gdb/gdboptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/gdbplainengine.cpp b/src/plugins/debugger/gdb/gdbplainengine.cpp index 4050e9048e5..c9651c9ee0e 100644 --- a/src/plugins/debugger/gdb/gdbplainengine.cpp +++ b/src/plugins/debugger/gdb/gdbplainengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/gdbplainengine.h b/src/plugins/debugger/gdb/gdbplainengine.h index 1bbc3e56777..0b9f79d278a 100644 --- a/src/plugins/debugger/gdb/gdbplainengine.h +++ b/src/plugins/debugger/gdb/gdbplainengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/gdbprocess.cpp b/src/plugins/debugger/gdb/gdbprocess.cpp index 4ee38308ba5..a6aad65eaf8 100644 --- a/src/plugins/debugger/gdb/gdbprocess.cpp +++ b/src/plugins/debugger/gdb/gdbprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/gdbprocess.h b/src/plugins/debugger/gdb/gdbprocess.h index dc356c608c7..6cec51589af 100644 --- a/src/plugins/debugger/gdb/gdbprocess.h +++ b/src/plugins/debugger/gdb/gdbprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/pythongdbengine.cpp b/src/plugins/debugger/gdb/pythongdbengine.cpp index 3fd1283799f..fa560cdca0b 100644 --- a/src/plugins/debugger/gdb/pythongdbengine.cpp +++ b/src/plugins/debugger/gdb/pythongdbengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/remotegdbserveradapter.cpp b/src/plugins/debugger/gdb/remotegdbserveradapter.cpp index 5cec6a35720..9b62f422f6e 100644 --- a/src/plugins/debugger/gdb/remotegdbserveradapter.cpp +++ b/src/plugins/debugger/gdb/remotegdbserveradapter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/remotegdbserveradapter.h b/src/plugins/debugger/gdb/remotegdbserveradapter.h index 38545764854..38daa7dbc94 100644 --- a/src/plugins/debugger/gdb/remotegdbserveradapter.h +++ b/src/plugins/debugger/gdb/remotegdbserveradapter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/startgdbserverdialog.cpp b/src/plugins/debugger/gdb/startgdbserverdialog.cpp index 5623bdf4c75..af55627551f 100644 --- a/src/plugins/debugger/gdb/startgdbserverdialog.cpp +++ b/src/plugins/debugger/gdb/startgdbserverdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/startgdbserverdialog.h b/src/plugins/debugger/gdb/startgdbserverdialog.h index bc5422f7ee6..cc5d5310cdd 100644 --- a/src/plugins/debugger/gdb/startgdbserverdialog.h +++ b/src/plugins/debugger/gdb/startgdbserverdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/termgdbadapter.cpp b/src/plugins/debugger/gdb/termgdbadapter.cpp index 48e5ef4378d..5f372e83868 100644 --- a/src/plugins/debugger/gdb/termgdbadapter.cpp +++ b/src/plugins/debugger/gdb/termgdbadapter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/gdb/termgdbadapter.h b/src/plugins/debugger/gdb/termgdbadapter.h index 67e17ce127e..ac84271d399 100644 --- a/src/plugins/debugger/gdb/termgdbadapter.h +++ b/src/plugins/debugger/gdb/termgdbadapter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/imageviewer.cpp b/src/plugins/debugger/imageviewer.cpp index 7c062b902b1..8a6cb5e6275 100644 --- a/src/plugins/debugger/imageviewer.cpp +++ b/src/plugins/debugger/imageviewer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/imageviewer.h b/src/plugins/debugger/imageviewer.h index 77049d2aaeb..e4f1f2665c5 100644 --- a/src/plugins/debugger/imageviewer.h +++ b/src/plugins/debugger/imageviewer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldb/lldbengine.cpp b/src/plugins/debugger/lldb/lldbengine.cpp index 4e5bab1bb5e..e1cf8841762 100644 --- a/src/plugins/debugger/lldb/lldbengine.cpp +++ b/src/plugins/debugger/lldb/lldbengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldb/lldbengine.h b/src/plugins/debugger/lldb/lldbengine.h index dc4e174768a..b5e0a2c4ea7 100644 --- a/src/plugins/debugger/lldb/lldbengine.h +++ b/src/plugins/debugger/lldb/lldbengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/guest/lldbengineguest.cpp b/src/plugins/debugger/lldblib/guest/lldbengineguest.cpp index 7a5cd176e1a..15b82c85035 100644 --- a/src/plugins/debugger/lldblib/guest/lldbengineguest.cpp +++ b/src/plugins/debugger/lldblib/guest/lldbengineguest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/guest/lldbengineguest.h b/src/plugins/debugger/lldblib/guest/lldbengineguest.h index c11ac3f0a34..b2af9842b0c 100644 --- a/src/plugins/debugger/lldblib/guest/lldbengineguest.h +++ b/src/plugins/debugger/lldblib/guest/lldbengineguest.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/guest/main.cpp b/src/plugins/debugger/lldblib/guest/main.cpp index 9803a490f88..dfb382d38dd 100644 --- a/src/plugins/debugger/lldblib/guest/main.cpp +++ b/src/plugins/debugger/lldblib/guest/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/ipcengineguest.cpp b/src/plugins/debugger/lldblib/ipcengineguest.cpp index 50ebae41771..4c5d9c814ef 100644 --- a/src/plugins/debugger/lldblib/ipcengineguest.cpp +++ b/src/plugins/debugger/lldblib/ipcengineguest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/ipcengineguest.h b/src/plugins/debugger/lldblib/ipcengineguest.h index 505328aa85e..75e278cfba4 100644 --- a/src/plugins/debugger/lldblib/ipcengineguest.h +++ b/src/plugins/debugger/lldblib/ipcengineguest.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/ipcenginehost.cpp b/src/plugins/debugger/lldblib/ipcenginehost.cpp index da48218ee3e..3203231d162 100644 --- a/src/plugins/debugger/lldblib/ipcenginehost.cpp +++ b/src/plugins/debugger/lldblib/ipcenginehost.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/ipcenginehost.h b/src/plugins/debugger/lldblib/ipcenginehost.h index 92f847ca445..0175c78ec65 100644 --- a/src/plugins/debugger/lldblib/ipcenginehost.h +++ b/src/plugins/debugger/lldblib/ipcenginehost.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/lldbenginehost.cpp b/src/plugins/debugger/lldblib/lldbenginehost.cpp index 538ba66e128..2e484abe402 100644 --- a/src/plugins/debugger/lldblib/lldbenginehost.cpp +++ b/src/plugins/debugger/lldblib/lldbenginehost.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/lldbenginehost.h b/src/plugins/debugger/lldblib/lldbenginehost.h index 52df2b373e3..d39f6748a99 100644 --- a/src/plugins/debugger/lldblib/lldbenginehost.h +++ b/src/plugins/debugger/lldblib/lldbenginehost.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/lldboptionspage.cpp b/src/plugins/debugger/lldblib/lldboptionspage.cpp index 5ce79b33ad1..14d414d128a 100644 --- a/src/plugins/debugger/lldblib/lldboptionspage.cpp +++ b/src/plugins/debugger/lldblib/lldboptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/lldblib/lldboptionspage.h b/src/plugins/debugger/lldblib/lldboptionspage.h index 81ebfaf28c3..71d5d05088a 100644 --- a/src/plugins/debugger/lldblib/lldboptionspage.h +++ b/src/plugins/debugger/lldblib/lldboptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/loadcoredialog.cpp b/src/plugins/debugger/loadcoredialog.cpp index 8a07d6c6c8d..a8303c70064 100644 --- a/src/plugins/debugger/loadcoredialog.cpp +++ b/src/plugins/debugger/loadcoredialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/loadcoredialog.h b/src/plugins/debugger/loadcoredialog.h index d566c0b0f51..e910218eb2d 100644 --- a/src/plugins/debugger/loadcoredialog.h +++ b/src/plugins/debugger/loadcoredialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/localsandexpressionswindow.cpp b/src/plugins/debugger/localsandexpressionswindow.cpp index 5f9e48adbec..2d54f2ed85a 100644 --- a/src/plugins/debugger/localsandexpressionswindow.cpp +++ b/src/plugins/debugger/localsandexpressionswindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/localsandexpressionswindow.h b/src/plugins/debugger/localsandexpressionswindow.h index 32b152205a6..26ca3de4e33 100644 --- a/src/plugins/debugger/localsandexpressionswindow.h +++ b/src/plugins/debugger/localsandexpressionswindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/logwindow.cpp b/src/plugins/debugger/logwindow.cpp index 7fa97601092..e9859924de6 100644 --- a/src/plugins/debugger/logwindow.cpp +++ b/src/plugins/debugger/logwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/logwindow.h b/src/plugins/debugger/logwindow.h index 2f1f3e179a2..7ff37453da4 100644 --- a/src/plugins/debugger/logwindow.h +++ b/src/plugins/debugger/logwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/memoryagent.cpp b/src/plugins/debugger/memoryagent.cpp index 00c25af006d..8f8d14a1d61 100644 --- a/src/plugins/debugger/memoryagent.cpp +++ b/src/plugins/debugger/memoryagent.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/memoryagent.h b/src/plugins/debugger/memoryagent.h index 5046e0753ab..3328e61172a 100644 --- a/src/plugins/debugger/memoryagent.h +++ b/src/plugins/debugger/memoryagent.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/memoryview.cpp b/src/plugins/debugger/memoryview.cpp index 3fdb256b37e..152956e46c4 100644 --- a/src/plugins/debugger/memoryview.cpp +++ b/src/plugins/debugger/memoryview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/memoryview.h b/src/plugins/debugger/memoryview.h index f6023e42cf9..075302c7777 100644 --- a/src/plugins/debugger/memoryview.h +++ b/src/plugins/debugger/memoryview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/moduleshandler.cpp b/src/plugins/debugger/moduleshandler.cpp index 3d22c888f66..b92e991afd0 100644 --- a/src/plugins/debugger/moduleshandler.cpp +++ b/src/plugins/debugger/moduleshandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/moduleshandler.h b/src/plugins/debugger/moduleshandler.h index 2680d5ab0f0..7af8317683c 100644 --- a/src/plugins/debugger/moduleshandler.h +++ b/src/plugins/debugger/moduleshandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/moduleswindow.cpp b/src/plugins/debugger/moduleswindow.cpp index ed5d3a6ca70..f7d7bf873c9 100644 --- a/src/plugins/debugger/moduleswindow.cpp +++ b/src/plugins/debugger/moduleswindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/moduleswindow.h b/src/plugins/debugger/moduleswindow.h index 5fed2bb1cce..ce6953e6178 100644 --- a/src/plugins/debugger/moduleswindow.h +++ b/src/plugins/debugger/moduleswindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/namedemangler/demanglerexceptions.h b/src/plugins/debugger/namedemangler/demanglerexceptions.h index e2f87694d4c..ad901f7c337 100644 --- a/src/plugins/debugger/namedemangler/demanglerexceptions.h +++ b/src/plugins/debugger/namedemangler/demanglerexceptions.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/namedemangler/globalparsestate.cpp b/src/plugins/debugger/namedemangler/globalparsestate.cpp index bf589ef5b76..0aadb918efe 100644 --- a/src/plugins/debugger/namedemangler/globalparsestate.cpp +++ b/src/plugins/debugger/namedemangler/globalparsestate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/namedemangler/globalparsestate.h b/src/plugins/debugger/namedemangler/globalparsestate.h index dbee1f97421..bf464aae535 100644 --- a/src/plugins/debugger/namedemangler/globalparsestate.h +++ b/src/plugins/debugger/namedemangler/globalparsestate.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/namedemangler/namedemangler.cpp b/src/plugins/debugger/namedemangler/namedemangler.cpp index c0cb15f05b0..c0240172df7 100644 --- a/src/plugins/debugger/namedemangler/namedemangler.cpp +++ b/src/plugins/debugger/namedemangler/namedemangler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/namedemangler/namedemangler.h b/src/plugins/debugger/namedemangler/namedemangler.h index b6934796b17..dbfd342f3df 100644 --- a/src/plugins/debugger/namedemangler/namedemangler.h +++ b/src/plugins/debugger/namedemangler/namedemangler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/namedemangler/parsetreenodes.cpp b/src/plugins/debugger/namedemangler/parsetreenodes.cpp index ba772a435af..d2008cb5186 100644 --- a/src/plugins/debugger/namedemangler/parsetreenodes.cpp +++ b/src/plugins/debugger/namedemangler/parsetreenodes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/namedemangler/parsetreenodes.h b/src/plugins/debugger/namedemangler/parsetreenodes.h index e2a78df816b..b8bd7330bbe 100644 --- a/src/plugins/debugger/namedemangler/parsetreenodes.h +++ b/src/plugins/debugger/namedemangler/parsetreenodes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/outputcollector.cpp b/src/plugins/debugger/outputcollector.cpp index da5f9733247..ecc71b11100 100644 --- a/src/plugins/debugger/outputcollector.cpp +++ b/src/plugins/debugger/outputcollector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/outputcollector.h b/src/plugins/debugger/outputcollector.h index aee4663a0a2..c3baced19e9 100644 --- a/src/plugins/debugger/outputcollector.h +++ b/src/plugins/debugger/outputcollector.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/pdb/pdbengine.cpp b/src/plugins/debugger/pdb/pdbengine.cpp index 71453f46f05..377efd73b67 100644 --- a/src/plugins/debugger/pdb/pdbengine.cpp +++ b/src/plugins/debugger/pdb/pdbengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/pdb/pdbengine.h b/src/plugins/debugger/pdb/pdbengine.h index 556729f6c7d..e10f3f73a72 100644 --- a/src/plugins/debugger/pdb/pdbengine.h +++ b/src/plugins/debugger/pdb/pdbengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/procinterrupt.cpp b/src/plugins/debugger/procinterrupt.cpp index 178f6a823e7..22f44b9db2f 100644 --- a/src/plugins/debugger/procinterrupt.cpp +++ b/src/plugins/debugger/procinterrupt.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/procinterrupt.h b/src/plugins/debugger/procinterrupt.h index 888d1524198..255d570fe9e 100644 --- a/src/plugins/debugger/procinterrupt.h +++ b/src/plugins/debugger/procinterrupt.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/ptracepreload.c b/src/plugins/debugger/ptracepreload.c index 0012a62fb19..7bbf4da44c6 100644 --- a/src/plugins/debugger/ptracepreload.c +++ b/src/plugins/debugger/ptracepreload.c @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/baseqmldebuggerclient.cpp b/src/plugins/debugger/qml/baseqmldebuggerclient.cpp index a552eed3105..e7dedb76ff4 100644 --- a/src/plugins/debugger/qml/baseqmldebuggerclient.cpp +++ b/src/plugins/debugger/qml/baseqmldebuggerclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/baseqmldebuggerclient.h b/src/plugins/debugger/qml/baseqmldebuggerclient.h index f356139e77d..258633d0738 100644 --- a/src/plugins/debugger/qml/baseqmldebuggerclient.h +++ b/src/plugins/debugger/qml/baseqmldebuggerclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/interactiveinterpreter.cpp b/src/plugins/debugger/qml/interactiveinterpreter.cpp index ed87bcebe5e..aacdfee485c 100644 --- a/src/plugins/debugger/qml/interactiveinterpreter.cpp +++ b/src/plugins/debugger/qml/interactiveinterpreter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/interactiveinterpreter.h b/src/plugins/debugger/qml/interactiveinterpreter.h index 4678de9c0e3..435a699f36b 100644 --- a/src/plugins/debugger/qml/interactiveinterpreter.h +++ b/src/plugins/debugger/qml/interactiveinterpreter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmladapter.cpp b/src/plugins/debugger/qml/qmladapter.cpp index 16c66285252..41d2713befb 100644 --- a/src/plugins/debugger/qml/qmladapter.cpp +++ b/src/plugins/debugger/qml/qmladapter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmladapter.h b/src/plugins/debugger/qml/qmladapter.h index 497cc7f06b3..a096dce3c33 100644 --- a/src/plugins/debugger/qml/qmladapter.h +++ b/src/plugins/debugger/qml/qmladapter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp index 00f79348b33..61090b940fc 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlcppengine.h b/src/plugins/debugger/qml/qmlcppengine.h index 761194f74d0..485c8ccca9f 100644 --- a/src/plugins/debugger/qml/qmlcppengine.h +++ b/src/plugins/debugger/qml/qmlcppengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp index 4308c42c48c..d542bf04d7d 100644 --- a/src/plugins/debugger/qml/qmlengine.cpp +++ b/src/plugins/debugger/qml/qmlengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlengine.h b/src/plugins/debugger/qml/qmlengine.h index d9b5cd0b84b..3d2641669a7 100644 --- a/src/plugins/debugger/qml/qmlengine.h +++ b/src/plugins/debugger/qml/qmlengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlinspectoradapter.cpp b/src/plugins/debugger/qml/qmlinspectoradapter.cpp index 57ddb45cb02..12e21ecfd57 100644 --- a/src/plugins/debugger/qml/qmlinspectoradapter.cpp +++ b/src/plugins/debugger/qml/qmlinspectoradapter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlinspectoradapter.h b/src/plugins/debugger/qml/qmlinspectoradapter.h index 1bdae26a76b..96d8dd6537f 100644 --- a/src/plugins/debugger/qml/qmlinspectoradapter.h +++ b/src/plugins/debugger/qml/qmlinspectoradapter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlinspectoragent.cpp b/src/plugins/debugger/qml/qmlinspectoragent.cpp index cdbf68719df..689101c540e 100644 --- a/src/plugins/debugger/qml/qmlinspectoragent.cpp +++ b/src/plugins/debugger/qml/qmlinspectoragent.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlinspectoragent.h b/src/plugins/debugger/qml/qmlinspectoragent.h index d48d3e3cb95..6a430fa95bd 100644 --- a/src/plugins/debugger/qml/qmlinspectoragent.h +++ b/src/plugins/debugger/qml/qmlinspectoragent.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmllivetextpreview.cpp b/src/plugins/debugger/qml/qmllivetextpreview.cpp index 55fe7148f4b..f01a04738ca 100644 --- a/src/plugins/debugger/qml/qmllivetextpreview.cpp +++ b/src/plugins/debugger/qml/qmllivetextpreview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmllivetextpreview.h b/src/plugins/debugger/qml/qmllivetextpreview.h index 5f1ff8f5c74..e2cefed4154 100644 --- a/src/plugins/debugger/qml/qmllivetextpreview.h +++ b/src/plugins/debugger/qml/qmllivetextpreview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp index c24f2a19f8c..803727c8df6 100644 --- a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp +++ b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlv8debuggerclient.h b/src/plugins/debugger/qml/qmlv8debuggerclient.h index fbd37c13a96..5e2b5e150d4 100644 --- a/src/plugins/debugger/qml/qmlv8debuggerclient.h +++ b/src/plugins/debugger/qml/qmlv8debuggerclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h b/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h index 19ec7f46d02..89bd6f908a0 100644 --- a/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h +++ b/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qscriptdebuggerclient.cpp b/src/plugins/debugger/qml/qscriptdebuggerclient.cpp index 9c66c25b9f9..4787a078e9e 100644 --- a/src/plugins/debugger/qml/qscriptdebuggerclient.cpp +++ b/src/plugins/debugger/qml/qscriptdebuggerclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/qml/qscriptdebuggerclient.h b/src/plugins/debugger/qml/qscriptdebuggerclient.h index d7b6b7963d3..02f0c1f2203 100644 --- a/src/plugins/debugger/qml/qscriptdebuggerclient.h +++ b/src/plugins/debugger/qml/qscriptdebuggerclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/registerhandler.cpp b/src/plugins/debugger/registerhandler.cpp index c33435fbfaa..71904f1ac47 100644 --- a/src/plugins/debugger/registerhandler.cpp +++ b/src/plugins/debugger/registerhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/registerhandler.h b/src/plugins/debugger/registerhandler.h index 725d41d5054..09dbbc7c564 100644 --- a/src/plugins/debugger/registerhandler.h +++ b/src/plugins/debugger/registerhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/registerpostmortemaction.cpp b/src/plugins/debugger/registerpostmortemaction.cpp index d7edfa3220c..15bc710c4ad 100644 --- a/src/plugins/debugger/registerpostmortemaction.cpp +++ b/src/plugins/debugger/registerpostmortemaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/registerpostmortemaction.h b/src/plugins/debugger/registerpostmortemaction.h index ac06ec8b7e6..8bf5cbbedca 100644 --- a/src/plugins/debugger/registerpostmortemaction.h +++ b/src/plugins/debugger/registerpostmortemaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/registerwindow.cpp b/src/plugins/debugger/registerwindow.cpp index a489f35a6b4..69d43834065 100644 --- a/src/plugins/debugger/registerwindow.cpp +++ b/src/plugins/debugger/registerwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/registerwindow.h b/src/plugins/debugger/registerwindow.h index 4bd3b5c1ee5..68dce321c00 100644 --- a/src/plugins/debugger/registerwindow.h +++ b/src/plugins/debugger/registerwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/backtrace.cpp b/src/plugins/debugger/shared/backtrace.cpp index 9604e10c89b..cae629f0309 100644 --- a/src/plugins/debugger/shared/backtrace.cpp +++ b/src/plugins/debugger/shared/backtrace.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/backtrace.h b/src/plugins/debugger/shared/backtrace.h index c00bf3cc902..7e320dce5bf 100644 --- a/src/plugins/debugger/shared/backtrace.h +++ b/src/plugins/debugger/shared/backtrace.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp index 93e06d10b80..e6877623582 100644 --- a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp +++ b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.h b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.h index ae518c95a0a..f80a803397e 100644 --- a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.h +++ b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/hostutils.cpp b/src/plugins/debugger/shared/hostutils.cpp index 800f4b029bd..469389a3dc2 100644 --- a/src/plugins/debugger/shared/hostutils.cpp +++ b/src/plugins/debugger/shared/hostutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/hostutils.h b/src/plugins/debugger/shared/hostutils.h index 17f1204e6f1..597bec42987 100644 --- a/src/plugins/debugger/shared/hostutils.h +++ b/src/plugins/debugger/shared/hostutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/peutils.cpp b/src/plugins/debugger/shared/peutils.cpp index c107763e66b..de15df0f84b 100644 --- a/src/plugins/debugger/shared/peutils.cpp +++ b/src/plugins/debugger/shared/peutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/peutils.h b/src/plugins/debugger/shared/peutils.h index b96adbcab75..66453222939 100644 --- a/src/plugins/debugger/shared/peutils.h +++ b/src/plugins/debugger/shared/peutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/symbolpathsdialog.cpp b/src/plugins/debugger/shared/symbolpathsdialog.cpp index 85105689966..c04f28b2ab1 100644 --- a/src/plugins/debugger/shared/symbolpathsdialog.cpp +++ b/src/plugins/debugger/shared/symbolpathsdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/shared/symbolpathsdialog.h b/src/plugins/debugger/shared/symbolpathsdialog.h index 2a34627a766..c4d82468bb6 100644 --- a/src/plugins/debugger/shared/symbolpathsdialog.h +++ b/src/plugins/debugger/shared/symbolpathsdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/snapshothandler.cpp b/src/plugins/debugger/snapshothandler.cpp index 4817de345e9..59ee207bbea 100644 --- a/src/plugins/debugger/snapshothandler.cpp +++ b/src/plugins/debugger/snapshothandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/snapshothandler.h b/src/plugins/debugger/snapshothandler.h index c0f3dded923..44c5df47e45 100644 --- a/src/plugins/debugger/snapshothandler.h +++ b/src/plugins/debugger/snapshothandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/snapshotwindow.cpp b/src/plugins/debugger/snapshotwindow.cpp index 541f43da008..d572789d04b 100644 --- a/src/plugins/debugger/snapshotwindow.cpp +++ b/src/plugins/debugger/snapshotwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/snapshotwindow.h b/src/plugins/debugger/snapshotwindow.h index a06b9f153ac..764ea9ea47a 100644 --- a/src/plugins/debugger/snapshotwindow.h +++ b/src/plugins/debugger/snapshotwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/sourceagent.cpp b/src/plugins/debugger/sourceagent.cpp index 210528bf139..ce63960d37d 100644 --- a/src/plugins/debugger/sourceagent.cpp +++ b/src/plugins/debugger/sourceagent.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/sourceagent.h b/src/plugins/debugger/sourceagent.h index cbb6c22e876..43028aa528d 100644 --- a/src/plugins/debugger/sourceagent.h +++ b/src/plugins/debugger/sourceagent.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/sourcefileshandler.cpp b/src/plugins/debugger/sourcefileshandler.cpp index e1d916e68cc..7fd5ea60e84 100644 --- a/src/plugins/debugger/sourcefileshandler.cpp +++ b/src/plugins/debugger/sourcefileshandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/sourcefileshandler.h b/src/plugins/debugger/sourcefileshandler.h index 2eb5dd5d408..0f541cf66a1 100644 --- a/src/plugins/debugger/sourcefileshandler.h +++ b/src/plugins/debugger/sourcefileshandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/sourcefileswindow.cpp b/src/plugins/debugger/sourcefileswindow.cpp index fb4830d0555..35bcc1417ce 100644 --- a/src/plugins/debugger/sourcefileswindow.cpp +++ b/src/plugins/debugger/sourcefileswindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/sourcefileswindow.h b/src/plugins/debugger/sourcefileswindow.h index 6df1ada1676..44b9d3d0bf3 100644 --- a/src/plugins/debugger/sourcefileswindow.h +++ b/src/plugins/debugger/sourcefileswindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/sourceutils.cpp b/src/plugins/debugger/sourceutils.cpp index ec3e72a2cda..2ac70d91a82 100644 --- a/src/plugins/debugger/sourceutils.cpp +++ b/src/plugins/debugger/sourceutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/sourceutils.h b/src/plugins/debugger/sourceutils.h index 5bc283fbd56..6882c6ce999 100644 --- a/src/plugins/debugger/sourceutils.h +++ b/src/plugins/debugger/sourceutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/stackframe.cpp b/src/plugins/debugger/stackframe.cpp index 12de6eeda87..936861ec0b4 100644 --- a/src/plugins/debugger/stackframe.cpp +++ b/src/plugins/debugger/stackframe.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/stackframe.h b/src/plugins/debugger/stackframe.h index 51a1dda071f..8de0057f4cd 100644 --- a/src/plugins/debugger/stackframe.h +++ b/src/plugins/debugger/stackframe.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/stackhandler.cpp b/src/plugins/debugger/stackhandler.cpp index 984ea555a90..bcc57619c92 100644 --- a/src/plugins/debugger/stackhandler.cpp +++ b/src/plugins/debugger/stackhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/stackhandler.h b/src/plugins/debugger/stackhandler.h index 8ffb7c767d2..31910ebeb57 100644 --- a/src/plugins/debugger/stackhandler.h +++ b/src/plugins/debugger/stackhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/stackwindow.cpp b/src/plugins/debugger/stackwindow.cpp index 35c3358f9ad..1ca9c467737 100644 --- a/src/plugins/debugger/stackwindow.cpp +++ b/src/plugins/debugger/stackwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/stackwindow.h b/src/plugins/debugger/stackwindow.h index 0eb7124d20b..18c23d3ae36 100644 --- a/src/plugins/debugger/stackwindow.h +++ b/src/plugins/debugger/stackwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/threaddata.h b/src/plugins/debugger/threaddata.h index 5362cad03b9..ae604d3562f 100644 --- a/src/plugins/debugger/threaddata.h +++ b/src/plugins/debugger/threaddata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/threadshandler.cpp b/src/plugins/debugger/threadshandler.cpp index 63b1e1375e7..a63b69159b2 100644 --- a/src/plugins/debugger/threadshandler.cpp +++ b/src/plugins/debugger/threadshandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/threadshandler.h b/src/plugins/debugger/threadshandler.h index 30f458ee36a..f9d860de44d 100644 --- a/src/plugins/debugger/threadshandler.h +++ b/src/plugins/debugger/threadshandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/threadswindow.cpp b/src/plugins/debugger/threadswindow.cpp index c2b9faae7fc..d9cbf6a80c2 100644 --- a/src/plugins/debugger/threadswindow.cpp +++ b/src/plugins/debugger/threadswindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/threadswindow.h b/src/plugins/debugger/threadswindow.h index 06fc1a60ab4..8e2d2a2620d 100644 --- a/src/plugins/debugger/threadswindow.h +++ b/src/plugins/debugger/threadswindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchdata.cpp b/src/plugins/debugger/watchdata.cpp index cead6220a3d..1f2b3cce3ec 100644 --- a/src/plugins/debugger/watchdata.cpp +++ b/src/plugins/debugger/watchdata.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchdata.h b/src/plugins/debugger/watchdata.h index fd2a3cbb0e4..94e92ce1444 100644 --- a/src/plugins/debugger/watchdata.h +++ b/src/plugins/debugger/watchdata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchdelegatewidgets.cpp b/src/plugins/debugger/watchdelegatewidgets.cpp index 5484f51accf..234051b04e5 100644 --- a/src/plugins/debugger/watchdelegatewidgets.cpp +++ b/src/plugins/debugger/watchdelegatewidgets.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchdelegatewidgets.h b/src/plugins/debugger/watchdelegatewidgets.h index 7e499639004..8748df1a33f 100644 --- a/src/plugins/debugger/watchdelegatewidgets.h +++ b/src/plugins/debugger/watchdelegatewidgets.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 23a149dab59..240933dc084 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchhandler.h b/src/plugins/debugger/watchhandler.h index 3855b5b85d3..73d89514154 100644 --- a/src/plugins/debugger/watchhandler.h +++ b/src/plugins/debugger/watchhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchutils.cpp b/src/plugins/debugger/watchutils.cpp index 6d97d2c8fd6..b6bf74edea5 100644 --- a/src/plugins/debugger/watchutils.cpp +++ b/src/plugins/debugger/watchutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchutils.h b/src/plugins/debugger/watchutils.h index bf841942ef2..aef3a2f1f61 100644 --- a/src/plugins/debugger/watchutils.h +++ b/src/plugins/debugger/watchutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchwindow.cpp b/src/plugins/debugger/watchwindow.cpp index 7539387542f..ba576a9ea7c 100644 --- a/src/plugins/debugger/watchwindow.cpp +++ b/src/plugins/debugger/watchwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/debugger/watchwindow.h b/src/plugins/debugger/watchwindow.h index 8489d11eb6a..052dfbc9239 100644 --- a/src/plugins/debugger/watchwindow.h +++ b/src/plugins/debugger/watchwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/Designer.pluginspec.in b/src/plugins/designer/Designer.pluginspec.in index 6f96561a303..1de2d7b4bd5 100644 --- a/src/plugins/designer/Designer.pluginspec.in +++ b/src/plugins/designer/Designer.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Designer\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/designer/codemodelhelpers.cpp b/src/plugins/designer/codemodelhelpers.cpp index 5b26c45d1e4..92a956e7bf6 100644 --- a/src/plugins/designer/codemodelhelpers.cpp +++ b/src/plugins/designer/codemodelhelpers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/codemodelhelpers.h b/src/plugins/designer/codemodelhelpers.h index 98f634b5cfa..b1b2d83cdb3 100644 --- a/src/plugins/designer/codemodelhelpers.h +++ b/src/plugins/designer/codemodelhelpers.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/cppsettingspage.cpp b/src/plugins/designer/cpp/cppsettingspage.cpp index cc24f2ca898..1355262f25b 100644 --- a/src/plugins/designer/cpp/cppsettingspage.cpp +++ b/src/plugins/designer/cpp/cppsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/cppsettingspage.h b/src/plugins/designer/cpp/cppsettingspage.h index 647c7d7d19e..0594ec11240 100644 --- a/src/plugins/designer/cpp/cppsettingspage.h +++ b/src/plugins/designer/cpp/cppsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/formclasswizard.cpp b/src/plugins/designer/cpp/formclasswizard.cpp index 56202924b8c..533f6c331a6 100644 --- a/src/plugins/designer/cpp/formclasswizard.cpp +++ b/src/plugins/designer/cpp/formclasswizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/formclasswizard.h b/src/plugins/designer/cpp/formclasswizard.h index d8ee46c7218..214e5cb1f8c 100644 --- a/src/plugins/designer/cpp/formclasswizard.h +++ b/src/plugins/designer/cpp/formclasswizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/formclasswizarddialog.cpp b/src/plugins/designer/cpp/formclasswizarddialog.cpp index 5d62e35ee9a..06487e80663 100644 --- a/src/plugins/designer/cpp/formclasswizarddialog.cpp +++ b/src/plugins/designer/cpp/formclasswizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/formclasswizarddialog.h b/src/plugins/designer/cpp/formclasswizarddialog.h index 7ba7debe1e3..0a1bc48bf33 100644 --- a/src/plugins/designer/cpp/formclasswizarddialog.h +++ b/src/plugins/designer/cpp/formclasswizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/formclasswizardpage.cpp b/src/plugins/designer/cpp/formclasswizardpage.cpp index c62746ad5e2..241753bb8a8 100644 --- a/src/plugins/designer/cpp/formclasswizardpage.cpp +++ b/src/plugins/designer/cpp/formclasswizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/formclasswizardpage.h b/src/plugins/designer/cpp/formclasswizardpage.h index b8051db1c08..776549a6b63 100644 --- a/src/plugins/designer/cpp/formclasswizardpage.h +++ b/src/plugins/designer/cpp/formclasswizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/formclasswizardparameters.cpp b/src/plugins/designer/cpp/formclasswizardparameters.cpp index f64c097c955..fa7f7518b1e 100644 --- a/src/plugins/designer/cpp/formclasswizardparameters.cpp +++ b/src/plugins/designer/cpp/formclasswizardparameters.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/cpp/formclasswizardparameters.h b/src/plugins/designer/cpp/formclasswizardparameters.h index 8e7b29c43e5..11f15ff948a 100644 --- a/src/plugins/designer/cpp/formclasswizardparameters.h +++ b/src/plugins/designer/cpp/formclasswizardparameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/designer_export.h b/src/plugins/designer/designer_export.h index b25683eb158..0cb18e2fb1e 100644 --- a/src/plugins/designer/designer_export.h +++ b/src/plugins/designer/designer_export.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/designerconstants.h b/src/plugins/designer/designerconstants.h index 12a8f0fecc1..205abf05665 100644 --- a/src/plugins/designer/designerconstants.h +++ b/src/plugins/designer/designerconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/designercontext.cpp b/src/plugins/designer/designercontext.cpp index 512067af3ac..df3fb11b333 100644 --- a/src/plugins/designer/designercontext.cpp +++ b/src/plugins/designer/designercontext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/designercontext.h b/src/plugins/designer/designercontext.h index 658b5d0a212..1515cc8335e 100644 --- a/src/plugins/designer/designercontext.h +++ b/src/plugins/designer/designercontext.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/designerxmleditorwidget.cpp b/src/plugins/designer/designerxmleditorwidget.cpp index 202f65c5651..b7a5a70baa2 100644 --- a/src/plugins/designer/designerxmleditorwidget.cpp +++ b/src/plugins/designer/designerxmleditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/designerxmleditorwidget.h b/src/plugins/designer/designerxmleditorwidget.h index 9c0780d7056..e0c10552af5 100644 --- a/src/plugins/designer/designerxmleditorwidget.h +++ b/src/plugins/designer/designerxmleditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/editordata.h b/src/plugins/designer/editordata.h index a8398727c64..c13ec63dd93 100644 --- a/src/plugins/designer/editordata.h +++ b/src/plugins/designer/editordata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/editorwidget.cpp b/src/plugins/designer/editorwidget.cpp index d1d7a1798d8..41506b18be5 100644 --- a/src/plugins/designer/editorwidget.cpp +++ b/src/plugins/designer/editorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/editorwidget.h b/src/plugins/designer/editorwidget.h index 830da5812fc..ea554e83fde 100644 --- a/src/plugins/designer/editorwidget.h +++ b/src/plugins/designer/editorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formeditorfactory.cpp b/src/plugins/designer/formeditorfactory.cpp index 3939d0ae245..cbbd830c260 100644 --- a/src/plugins/designer/formeditorfactory.cpp +++ b/src/plugins/designer/formeditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formeditorfactory.h b/src/plugins/designer/formeditorfactory.h index a17446d18b6..45b96f80ba0 100644 --- a/src/plugins/designer/formeditorfactory.h +++ b/src/plugins/designer/formeditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formeditorplugin.cpp b/src/plugins/designer/formeditorplugin.cpp index b9ce3236540..2353a3c84bc 100644 --- a/src/plugins/designer/formeditorplugin.cpp +++ b/src/plugins/designer/formeditorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formeditorplugin.h b/src/plugins/designer/formeditorplugin.h index 4f2e9481f72..a7b822558e0 100644 --- a/src/plugins/designer/formeditorplugin.h +++ b/src/plugins/designer/formeditorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formeditorstack.cpp b/src/plugins/designer/formeditorstack.cpp index 2b441fa71d8..be622befe44 100644 --- a/src/plugins/designer/formeditorstack.cpp +++ b/src/plugins/designer/formeditorstack.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formeditorstack.h b/src/plugins/designer/formeditorstack.h index 9f10df2755b..65407b3a0f3 100644 --- a/src/plugins/designer/formeditorstack.h +++ b/src/plugins/designer/formeditorstack.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formeditorw.cpp b/src/plugins/designer/formeditorw.cpp index aa0064eb5f3..5652f3b9852 100644 --- a/src/plugins/designer/formeditorw.cpp +++ b/src/plugins/designer/formeditorw.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formeditorw.h b/src/plugins/designer/formeditorw.h index 7a5f0f25b74..7f20ee2eda4 100644 --- a/src/plugins/designer/formeditorw.h +++ b/src/plugins/designer/formeditorw.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formtemplatewizardpage.cpp b/src/plugins/designer/formtemplatewizardpage.cpp index be34106365b..cba2bb2d0ad 100644 --- a/src/plugins/designer/formtemplatewizardpage.cpp +++ b/src/plugins/designer/formtemplatewizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formtemplatewizardpage.h b/src/plugins/designer/formtemplatewizardpage.h index 5b59fea8e85..8577dc442a2 100644 --- a/src/plugins/designer/formtemplatewizardpage.h +++ b/src/plugins/designer/formtemplatewizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formwindoweditor.cpp b/src/plugins/designer/formwindoweditor.cpp index d6a46c29de3..71456386dea 100644 --- a/src/plugins/designer/formwindoweditor.cpp +++ b/src/plugins/designer/formwindoweditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formwindoweditor.h b/src/plugins/designer/formwindoweditor.h index a2f0549d869..2b71f08b947 100644 --- a/src/plugins/designer/formwindoweditor.h +++ b/src/plugins/designer/formwindoweditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formwindowfile.cpp b/src/plugins/designer/formwindowfile.cpp index 45a966569fd..73b5a7e4e7d 100644 --- a/src/plugins/designer/formwindowfile.cpp +++ b/src/plugins/designer/formwindowfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formwindowfile.h b/src/plugins/designer/formwindowfile.h index 6edbc37418e..a894edee9d6 100644 --- a/src/plugins/designer/formwindowfile.h +++ b/src/plugins/designer/formwindowfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formwizard.cpp b/src/plugins/designer/formwizard.cpp index ac26d732cc7..0bf26dc80da 100644 --- a/src/plugins/designer/formwizard.cpp +++ b/src/plugins/designer/formwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formwizard.h b/src/plugins/designer/formwizard.h index 988a9b11f77..4eb15d90d45 100644 --- a/src/plugins/designer/formwizard.h +++ b/src/plugins/designer/formwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formwizarddialog.cpp b/src/plugins/designer/formwizarddialog.cpp index 4af2f27d2cc..7abd6f95131 100644 --- a/src/plugins/designer/formwizarddialog.cpp +++ b/src/plugins/designer/formwizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/formwizarddialog.h b/src/plugins/designer/formwizarddialog.h index 471e0eb5cd5..98c8e6a8c1e 100644 --- a/src/plugins/designer/formwizarddialog.h +++ b/src/plugins/designer/formwizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/gotoslot_test.cpp b/src/plugins/designer/gotoslot_test.cpp index c4a9cb6466d..b8b8f0a58b8 100644 --- a/src/plugins/designer/gotoslot_test.cpp +++ b/src/plugins/designer/gotoslot_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/abstractnewformwidget_p.h b/src/plugins/designer/qt_private/abstractnewformwidget_p.h index 6fb81b7f800..99cd9cc5d71 100644 --- a/src/plugins/designer/qt_private/abstractnewformwidget_p.h +++ b/src/plugins/designer/qt_private/abstractnewformwidget_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/abstractoptionspage_p.h b/src/plugins/designer/qt_private/abstractoptionspage_p.h index 8d81e5f6e89..bb0b388986b 100644 --- a/src/plugins/designer/qt_private/abstractoptionspage_p.h +++ b/src/plugins/designer/qt_private/abstractoptionspage_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/abstractsettings_p.h b/src/plugins/designer/qt_private/abstractsettings_p.h index f2463a9adf7..ee6cc35cb3e 100644 --- a/src/plugins/designer/qt_private/abstractsettings_p.h +++ b/src/plugins/designer/qt_private/abstractsettings_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/formwindowbase_p.h b/src/plugins/designer/qt_private/formwindowbase_p.h index 07ef5bd20ca..1071728c7a4 100644 --- a/src/plugins/designer/qt_private/formwindowbase_p.h +++ b/src/plugins/designer/qt_private/formwindowbase_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/iconloader_p.h b/src/plugins/designer/qt_private/iconloader_p.h index 37a7c557ca7..62b62ea6a30 100644 --- a/src/plugins/designer/qt_private/iconloader_p.h +++ b/src/plugins/designer/qt_private/iconloader_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/pluginmanager_p.h b/src/plugins/designer/qt_private/pluginmanager_p.h index 457c647e72b..a286f051601 100644 --- a/src/plugins/designer/qt_private/pluginmanager_p.h +++ b/src/plugins/designer/qt_private/pluginmanager_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/qdesigner_formwindowmanager_p.h b/src/plugins/designer/qt_private/qdesigner_formwindowmanager_p.h index ec290a84a25..29199033507 100644 --- a/src/plugins/designer/qt_private/qdesigner_formwindowmanager_p.h +++ b/src/plugins/designer/qt_private/qdesigner_formwindowmanager_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/qdesigner_integration_p.h b/src/plugins/designer/qt_private/qdesigner_integration_p.h index 67d59c2aaf1..095467e2d76 100644 --- a/src/plugins/designer/qt_private/qdesigner_integration_p.h +++ b/src/plugins/designer/qt_private/qdesigner_integration_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/qsimpleresource_p.h b/src/plugins/designer/qt_private/qsimpleresource_p.h index c78288eddb1..7554d9f97dc 100644 --- a/src/plugins/designer/qt_private/qsimpleresource_p.h +++ b/src/plugins/designer/qt_private/qsimpleresource_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/qtresourcemodel_p.h b/src/plugins/designer/qt_private/qtresourcemodel_p.h index 7290e75b100..c1dff2417d7 100644 --- a/src/plugins/designer/qt_private/qtresourcemodel_p.h +++ b/src/plugins/designer/qt_private/qtresourcemodel_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/shared_enums_p.h b/src/plugins/designer/qt_private/shared_enums_p.h index 88162ef7508..1a10ef43eb9 100644 --- a/src/plugins/designer/qt_private/shared_enums_p.h +++ b/src/plugins/designer/qt_private/shared_enums_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qt_private/shared_global_p.h b/src/plugins/designer/qt_private/shared_global_p.h index 0476f72beb1..6f7f65ba1a8 100644 --- a/src/plugins/designer/qt_private/shared_global_p.h +++ b/src/plugins/designer/qt_private/shared_global_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qtcreatorintegration.cpp b/src/plugins/designer/qtcreatorintegration.cpp index 9fc0bd8d11e..be0ad306d3f 100644 --- a/src/plugins/designer/qtcreatorintegration.cpp +++ b/src/plugins/designer/qtcreatorintegration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qtcreatorintegration.h b/src/plugins/designer/qtcreatorintegration.h index e7581d318c2..92f89ee8b49 100644 --- a/src/plugins/designer/qtcreatorintegration.h +++ b/src/plugins/designer/qtcreatorintegration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qtdesignerformclasscodegenerator.cpp b/src/plugins/designer/qtdesignerformclasscodegenerator.cpp index fb08bfb1d87..6739eae60f7 100644 --- a/src/plugins/designer/qtdesignerformclasscodegenerator.cpp +++ b/src/plugins/designer/qtdesignerformclasscodegenerator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/qtdesignerformclasscodegenerator.h b/src/plugins/designer/qtdesignerformclasscodegenerator.h index 91e7f17f1c0..abe527a72ce 100644 --- a/src/plugins/designer/qtdesignerformclasscodegenerator.h +++ b/src/plugins/designer/qtdesignerformclasscodegenerator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/resourcehandler.cpp b/src/plugins/designer/resourcehandler.cpp index 756d873e000..7c331f61925 100644 --- a/src/plugins/designer/resourcehandler.cpp +++ b/src/plugins/designer/resourcehandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/resourcehandler.h b/src/plugins/designer/resourcehandler.h index 400ecd7ab15..12ad8a30f09 100644 --- a/src/plugins/designer/resourcehandler.h +++ b/src/plugins/designer/resourcehandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/settingsmanager.cpp b/src/plugins/designer/settingsmanager.cpp index ba71a26bf41..c709c46bc38 100644 --- a/src/plugins/designer/settingsmanager.cpp +++ b/src/plugins/designer/settingsmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/settingsmanager.h b/src/plugins/designer/settingsmanager.h index 757265048a6..94e3da512b6 100644 --- a/src/plugins/designer/settingsmanager.h +++ b/src/plugins/designer/settingsmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/settingspage.cpp b/src/plugins/designer/settingspage.cpp index 7fe793f94cb..8892f8ada55 100644 --- a/src/plugins/designer/settingspage.cpp +++ b/src/plugins/designer/settingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/settingspage.h b/src/plugins/designer/settingspage.h index 3df347e5464..0e6a9fcd3f1 100644 --- a/src/plugins/designer/settingspage.h +++ b/src/plugins/designer/settingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/designer/syncqtheader.sh b/src/plugins/designer/syncqtheader.sh index 5403ac04a54..07b42b26c7b 100755 --- a/src/plugins/designer/syncqtheader.sh +++ b/src/plugins/designer/syncqtheader.sh @@ -2,7 +2,7 @@ ############################################################################# # -# Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +# Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). # Contact: http://www.qt-project.org/legal # # This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/DiffEditor.pluginspec.in b/src/plugins/diffeditor/DiffEditor.pluginspec.in index 2120f011080..de362447dce 100644 --- a/src/plugins/diffeditor/DiffEditor.pluginspec.in +++ b/src/plugins/diffeditor/DiffEditor.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"DiffEditor\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/diffeditor/diffeditor.cpp b/src/plugins/diffeditor/diffeditor.cpp index 32ae0c4f132..e99ce81284d 100644 --- a/src/plugins/diffeditor/diffeditor.cpp +++ b/src/plugins/diffeditor/diffeditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditor.h b/src/plugins/diffeditor/diffeditor.h index 0b469b4c794..e557e2052e1 100644 --- a/src/plugins/diffeditor/diffeditor.h +++ b/src/plugins/diffeditor/diffeditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditor_global.h b/src/plugins/diffeditor/diffeditor_global.h index da6ef60935c..078a5835424 100644 --- a/src/plugins/diffeditor/diffeditor_global.h +++ b/src/plugins/diffeditor/diffeditor_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditorconstants.h b/src/plugins/diffeditor/diffeditorconstants.h index 37e7157527f..34e8e729a04 100644 --- a/src/plugins/diffeditor/diffeditorconstants.h +++ b/src/plugins/diffeditor/diffeditorconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditorfactory.cpp b/src/plugins/diffeditor/diffeditorfactory.cpp index 1a84d13a08d..46fbbf1e74f 100644 --- a/src/plugins/diffeditor/diffeditorfactory.cpp +++ b/src/plugins/diffeditor/diffeditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditorfactory.h b/src/plugins/diffeditor/diffeditorfactory.h index a21af4d1fb3..7abe41259a9 100644 --- a/src/plugins/diffeditor/diffeditorfactory.h +++ b/src/plugins/diffeditor/diffeditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditorfile.cpp b/src/plugins/diffeditor/diffeditorfile.cpp index 43eb5f70d30..073480941cf 100644 --- a/src/plugins/diffeditor/diffeditorfile.cpp +++ b/src/plugins/diffeditor/diffeditorfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditorfile.h b/src/plugins/diffeditor/diffeditorfile.h index 261701c2bdd..ae7aed4cb11 100644 --- a/src/plugins/diffeditor/diffeditorfile.h +++ b/src/plugins/diffeditor/diffeditorfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditorplugin.cpp b/src/plugins/diffeditor/diffeditorplugin.cpp index 0cab237c1c8..c8eec21e650 100644 --- a/src/plugins/diffeditor/diffeditorplugin.cpp +++ b/src/plugins/diffeditor/diffeditorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditorplugin.h b/src/plugins/diffeditor/diffeditorplugin.h index 226204e3381..774ce1b6e5f 100644 --- a/src/plugins/diffeditor/diffeditorplugin.h +++ b/src/plugins/diffeditor/diffeditorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditorwidget.cpp b/src/plugins/diffeditor/diffeditorwidget.cpp index ede54a44250..9a4247d0f11 100644 --- a/src/plugins/diffeditor/diffeditorwidget.cpp +++ b/src/plugins/diffeditor/diffeditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffeditorwidget.h b/src/plugins/diffeditor/diffeditorwidget.h index c1e11565eab..b819d4b9789 100644 --- a/src/plugins/diffeditor/diffeditorwidget.h +++ b/src/plugins/diffeditor/diffeditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/differ.cpp b/src/plugins/diffeditor/differ.cpp index f8b034efbbe..bd65e4bb407 100644 --- a/src/plugins/diffeditor/differ.cpp +++ b/src/plugins/diffeditor/differ.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/differ.h b/src/plugins/diffeditor/differ.h index 7870f562c3a..89ed32eeb82 100644 --- a/src/plugins/diffeditor/differ.h +++ b/src/plugins/diffeditor/differ.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffshoweditor.cpp b/src/plugins/diffeditor/diffshoweditor.cpp index cee56cb306d..b8d732d0cbb 100644 --- a/src/plugins/diffeditor/diffshoweditor.cpp +++ b/src/plugins/diffeditor/diffshoweditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffshoweditor.h b/src/plugins/diffeditor/diffshoweditor.h index cace93f73a4..0cd05191b37 100644 --- a/src/plugins/diffeditor/diffshoweditor.h +++ b/src/plugins/diffeditor/diffshoweditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffshoweditorfactory.cpp b/src/plugins/diffeditor/diffshoweditorfactory.cpp index 6597795b501..b169a648985 100644 --- a/src/plugins/diffeditor/diffshoweditorfactory.cpp +++ b/src/plugins/diffeditor/diffshoweditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/diffeditor/diffshoweditorfactory.h b/src/plugins/diffeditor/diffshoweditorfactory.h index 25f5285dbe8..268ee01e599 100644 --- a/src/plugins/diffeditor/diffshoweditorfactory.h +++ b/src/plugins/diffeditor/diffshoweditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/fakevim/FakeVim.pluginspec.in b/src/plugins/fakevim/FakeVim.pluginspec.in index f42f3a71750..d8c2b8658da 100644 --- a/src/plugins/fakevim/FakeVim.pluginspec.in +++ b/src/plugins/fakevim/FakeVim.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"FakeVim\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/fakevim/fakevim_test.cpp b/src/plugins/fakevim/fakevim_test.cpp index c87685e1ea9..eef9ab0874c 100644 --- a/src/plugins/fakevim/fakevim_test.cpp +++ b/src/plugins/fakevim/fakevim_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Lukas Holecek <hluk@email.cz> +** Copyright (C) 2014 Lukas Holecek <hluk@email.cz> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/fakevim/fakevimactions.cpp b/src/plugins/fakevim/fakevimactions.cpp index 22aad3fc26d..183ff884ac2 100644 --- a/src/plugins/fakevim/fakevimactions.cpp +++ b/src/plugins/fakevim/fakevimactions.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/fakevim/fakevimactions.h b/src/plugins/fakevim/fakevimactions.h index 982296e4764..dc56976b509 100644 --- a/src/plugins/fakevim/fakevimactions.h +++ b/src/plugins/fakevim/fakevimactions.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/fakevim/fakevimhandler.cpp b/src/plugins/fakevim/fakevimhandler.cpp index ed6513da0ae..6b9fc7129d8 100644 --- a/src/plugins/fakevim/fakevimhandler.cpp +++ b/src/plugins/fakevim/fakevimhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/fakevim/fakevimhandler.h b/src/plugins/fakevim/fakevimhandler.h index 3af38bd8b76..30176cd6891 100644 --- a/src/plugins/fakevim/fakevimhandler.h +++ b/src/plugins/fakevim/fakevimhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp index 00d996166a7..38d54567892 100644 --- a/src/plugins/fakevim/fakevimplugin.cpp +++ b/src/plugins/fakevim/fakevimplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/fakevim/fakevimplugin.h b/src/plugins/fakevim/fakevimplugin.h index 46e4dcd2632..5adb0a6b304 100644 --- a/src/plugins/fakevim/fakevimplugin.h +++ b/src/plugins/fakevim/fakevimplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/Find.pluginspec.in b/src/plugins/find/Find.pluginspec.in index d467971fd40..f670aa2f555 100644 --- a/src/plugins/find/Find.pluginspec.in +++ b/src/plugins/find/Find.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Find\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/find/basetextfind.cpp b/src/plugins/find/basetextfind.cpp index 14f19b8e571..7fa257cfa4b 100644 --- a/src/plugins/find/basetextfind.cpp +++ b/src/plugins/find/basetextfind.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/basetextfind.h b/src/plugins/find/basetextfind.h index 60f2ef06c91..b5769223020 100644 --- a/src/plugins/find/basetextfind.h +++ b/src/plugins/find/basetextfind.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/currentdocumentfind.cpp b/src/plugins/find/currentdocumentfind.cpp index b7884330030..48723e15351 100644 --- a/src/plugins/find/currentdocumentfind.cpp +++ b/src/plugins/find/currentdocumentfind.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/currentdocumentfind.h b/src/plugins/find/currentdocumentfind.h index d6a2cc1ef35..2c79ab36aef 100644 --- a/src/plugins/find/currentdocumentfind.h +++ b/src/plugins/find/currentdocumentfind.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/find_global.h b/src/plugins/find/find_global.h index d186f216d63..68d06d5145b 100644 --- a/src/plugins/find/find_global.h +++ b/src/plugins/find/find_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/findplugin.cpp b/src/plugins/find/findplugin.cpp index 6a819dbe17e..be9196e209d 100644 --- a/src/plugins/find/findplugin.cpp +++ b/src/plugins/find/findplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/findplugin.h b/src/plugins/find/findplugin.h index b4fb190730b..872ae87ea22 100644 --- a/src/plugins/find/findplugin.h +++ b/src/plugins/find/findplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/findtoolbar.cpp b/src/plugins/find/findtoolbar.cpp index 2b6c07d75a4..bfb9158d849 100644 --- a/src/plugins/find/findtoolbar.cpp +++ b/src/plugins/find/findtoolbar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/findtoolbar.h b/src/plugins/find/findtoolbar.h index 2928ac47e14..a5e2fcade7f 100644 --- a/src/plugins/find/findtoolbar.h +++ b/src/plugins/find/findtoolbar.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/findtoolwindow.cpp b/src/plugins/find/findtoolwindow.cpp index 5d22d114a92..77b48d28662 100644 --- a/src/plugins/find/findtoolwindow.cpp +++ b/src/plugins/find/findtoolwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/findtoolwindow.h b/src/plugins/find/findtoolwindow.h index 14380b0724a..49cb5211cb0 100644 --- a/src/plugins/find/findtoolwindow.h +++ b/src/plugins/find/findtoolwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/ifindfilter.cpp b/src/plugins/find/ifindfilter.cpp index 7755d7088df..bcd8e8d2c4f 100644 --- a/src/plugins/find/ifindfilter.cpp +++ b/src/plugins/find/ifindfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/ifindfilter.h b/src/plugins/find/ifindfilter.h index 3be0336802e..378762c04d9 100644 --- a/src/plugins/find/ifindfilter.h +++ b/src/plugins/find/ifindfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/ifindsupport.cpp b/src/plugins/find/ifindsupport.cpp index da89d903953..a001fc08660 100644 --- a/src/plugins/find/ifindsupport.cpp +++ b/src/plugins/find/ifindsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/ifindsupport.h b/src/plugins/find/ifindsupport.h index 8bb75fd2f38..d5b80023670 100644 --- a/src/plugins/find/ifindsupport.h +++ b/src/plugins/find/ifindsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresulttreeitemdelegate.cpp b/src/plugins/find/searchresulttreeitemdelegate.cpp index a1cf8f778a4..3f9e9b20981 100644 --- a/src/plugins/find/searchresulttreeitemdelegate.cpp +++ b/src/plugins/find/searchresulttreeitemdelegate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresulttreeitemdelegate.h b/src/plugins/find/searchresulttreeitemdelegate.h index ecef3098355..e91882bd79d 100644 --- a/src/plugins/find/searchresulttreeitemdelegate.h +++ b/src/plugins/find/searchresulttreeitemdelegate.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresulttreeitemroles.h b/src/plugins/find/searchresulttreeitemroles.h index 6e21a32d8e5..80cda671ca3 100644 --- a/src/plugins/find/searchresulttreeitemroles.h +++ b/src/plugins/find/searchresulttreeitemroles.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresulttreeitems.cpp b/src/plugins/find/searchresulttreeitems.cpp index 32ca3114207..a49e4d03e16 100644 --- a/src/plugins/find/searchresulttreeitems.cpp +++ b/src/plugins/find/searchresulttreeitems.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresulttreeitems.h b/src/plugins/find/searchresulttreeitems.h index 4778e2104d3..e64c93e7598 100644 --- a/src/plugins/find/searchresulttreeitems.h +++ b/src/plugins/find/searchresulttreeitems.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresulttreemodel.cpp b/src/plugins/find/searchresulttreemodel.cpp index 4062ed5e290..feca87cc39d 100644 --- a/src/plugins/find/searchresulttreemodel.cpp +++ b/src/plugins/find/searchresulttreemodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresulttreemodel.h b/src/plugins/find/searchresulttreemodel.h index 8286fba317c..ad45c6f4b62 100644 --- a/src/plugins/find/searchresulttreemodel.h +++ b/src/plugins/find/searchresulttreemodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresulttreeview.cpp b/src/plugins/find/searchresulttreeview.cpp index 24559fc318e..8b96176264e 100644 --- a/src/plugins/find/searchresulttreeview.cpp +++ b/src/plugins/find/searchresulttreeview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresulttreeview.h b/src/plugins/find/searchresulttreeview.h index 900329140c3..ecf290c90df 100644 --- a/src/plugins/find/searchresulttreeview.h +++ b/src/plugins/find/searchresulttreeview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresultwidget.cpp b/src/plugins/find/searchresultwidget.cpp index 57c16afc615..bbdfe3d1386 100644 --- a/src/plugins/find/searchresultwidget.cpp +++ b/src/plugins/find/searchresultwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresultwidget.h b/src/plugins/find/searchresultwidget.h index 758b2b08b36..76ec7da9350 100644 --- a/src/plugins/find/searchresultwidget.h +++ b/src/plugins/find/searchresultwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresultwindow.cpp b/src/plugins/find/searchresultwindow.cpp index c6cc1906d52..a5dce4791db 100644 --- a/src/plugins/find/searchresultwindow.cpp +++ b/src/plugins/find/searchresultwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/searchresultwindow.h b/src/plugins/find/searchresultwindow.h index 49e371ce78c..8c7f052c01f 100644 --- a/src/plugins/find/searchresultwindow.h +++ b/src/plugins/find/searchresultwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/textfindconstants.h b/src/plugins/find/textfindconstants.h index f2fe3f4d9c6..0100df7d2d3 100644 --- a/src/plugins/find/textfindconstants.h +++ b/src/plugins/find/textfindconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/treeviewfind.cpp b/src/plugins/find/treeviewfind.cpp index 99a3149f1df..24ac4e7e374 100644 --- a/src/plugins/find/treeviewfind.cpp +++ b/src/plugins/find/treeviewfind.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/find/treeviewfind.h b/src/plugins/find/treeviewfind.h index 8d300978e76..b7ac19468f9 100644 --- a/src/plugins/find/treeviewfind.h +++ b/src/plugins/find/treeviewfind.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/GenericProjectManager.pluginspec.in b/src/plugins/genericprojectmanager/GenericProjectManager.pluginspec.in index f4c8a5404d3..e018441767e 100644 --- a/src/plugins/genericprojectmanager/GenericProjectManager.pluginspec.in +++ b/src/plugins/genericprojectmanager/GenericProjectManager.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"GenericProjectManager\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/genericprojectmanager/filesselectionwizardpage.cpp b/src/plugins/genericprojectmanager/filesselectionwizardpage.cpp index be2dba58b78..a577f0a6e6a 100644 --- a/src/plugins/genericprojectmanager/filesselectionwizardpage.cpp +++ b/src/plugins/genericprojectmanager/filesselectionwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/filesselectionwizardpage.h b/src/plugins/genericprojectmanager/filesselectionwizardpage.h index 0d9c36348a0..1758fdade44 100644 --- a/src/plugins/genericprojectmanager/filesselectionwizardpage.h +++ b/src/plugins/genericprojectmanager/filesselectionwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericbuildconfiguration.cpp b/src/plugins/genericprojectmanager/genericbuildconfiguration.cpp index b43b6505d99..633a389b3a0 100644 --- a/src/plugins/genericprojectmanager/genericbuildconfiguration.cpp +++ b/src/plugins/genericprojectmanager/genericbuildconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericbuildconfiguration.h b/src/plugins/genericprojectmanager/genericbuildconfiguration.h index d2f1880f48b..524a9eaa683 100644 --- a/src/plugins/genericprojectmanager/genericbuildconfiguration.h +++ b/src/plugins/genericprojectmanager/genericbuildconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericmakestep.cpp b/src/plugins/genericprojectmanager/genericmakestep.cpp index d2f0c580765..c21a725fe67 100644 --- a/src/plugins/genericprojectmanager/genericmakestep.cpp +++ b/src/plugins/genericprojectmanager/genericmakestep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericmakestep.h b/src/plugins/genericprojectmanager/genericmakestep.h index 046afe8384b..f30de3b10dc 100644 --- a/src/plugins/genericprojectmanager/genericmakestep.h +++ b/src/plugins/genericprojectmanager/genericmakestep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericproject.cpp b/src/plugins/genericprojectmanager/genericproject.cpp index ad39fa8f051..d1102d66627 100644 --- a/src/plugins/genericprojectmanager/genericproject.cpp +++ b/src/plugins/genericprojectmanager/genericproject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericproject.h b/src/plugins/genericprojectmanager/genericproject.h index 70d1f096083..ff8c8efe492 100644 --- a/src/plugins/genericprojectmanager/genericproject.h +++ b/src/plugins/genericprojectmanager/genericproject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectconstants.h b/src/plugins/genericprojectmanager/genericprojectconstants.h index bba052ed5c3..71676ba660e 100644 --- a/src/plugins/genericprojectmanager/genericprojectconstants.h +++ b/src/plugins/genericprojectmanager/genericprojectconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectfileseditor.cpp b/src/plugins/genericprojectmanager/genericprojectfileseditor.cpp index 287ce305635..32837c6a881 100644 --- a/src/plugins/genericprojectmanager/genericprojectfileseditor.cpp +++ b/src/plugins/genericprojectmanager/genericprojectfileseditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectfileseditor.h b/src/plugins/genericprojectmanager/genericprojectfileseditor.h index 75014f8060d..4e1c7998fc9 100644 --- a/src/plugins/genericprojectmanager/genericprojectfileseditor.h +++ b/src/plugins/genericprojectmanager/genericprojectfileseditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectmanager.cpp b/src/plugins/genericprojectmanager/genericprojectmanager.cpp index 2ae768efa4f..c1f0d672bcf 100644 --- a/src/plugins/genericprojectmanager/genericprojectmanager.cpp +++ b/src/plugins/genericprojectmanager/genericprojectmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectmanager.h b/src/plugins/genericprojectmanager/genericprojectmanager.h index 163f154b9bf..dd53c8909cb 100644 --- a/src/plugins/genericprojectmanager/genericprojectmanager.h +++ b/src/plugins/genericprojectmanager/genericprojectmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectnodes.cpp b/src/plugins/genericprojectmanager/genericprojectnodes.cpp index 7bd6773f530..4250e95b1a3 100644 --- a/src/plugins/genericprojectmanager/genericprojectnodes.cpp +++ b/src/plugins/genericprojectmanager/genericprojectnodes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectnodes.h b/src/plugins/genericprojectmanager/genericprojectnodes.h index 38ed7bdc17e..e64c5bd1abd 100644 --- a/src/plugins/genericprojectmanager/genericprojectnodes.h +++ b/src/plugins/genericprojectmanager/genericprojectnodes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectplugin.cpp b/src/plugins/genericprojectmanager/genericprojectplugin.cpp index 08695a063bd..c798a70a885 100644 --- a/src/plugins/genericprojectmanager/genericprojectplugin.cpp +++ b/src/plugins/genericprojectmanager/genericprojectplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectplugin.h b/src/plugins/genericprojectmanager/genericprojectplugin.h index e8b9e0321c8..0fe87905446 100644 --- a/src/plugins/genericprojectmanager/genericprojectplugin.h +++ b/src/plugins/genericprojectmanager/genericprojectplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectwizard.cpp b/src/plugins/genericprojectmanager/genericprojectwizard.cpp index 0f7cbdeacd3..a7d700efc8b 100644 --- a/src/plugins/genericprojectmanager/genericprojectwizard.cpp +++ b/src/plugins/genericprojectmanager/genericprojectwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/genericprojectwizard.h b/src/plugins/genericprojectmanager/genericprojectwizard.h index 2a2aac91474..f496d3e1e68 100644 --- a/src/plugins/genericprojectmanager/genericprojectwizard.h +++ b/src/plugins/genericprojectmanager/genericprojectwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/pkgconfigtool.cpp b/src/plugins/genericprojectmanager/pkgconfigtool.cpp index 127d82d4734..f8a63078fe8 100644 --- a/src/plugins/genericprojectmanager/pkgconfigtool.cpp +++ b/src/plugins/genericprojectmanager/pkgconfigtool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/pkgconfigtool.h b/src/plugins/genericprojectmanager/pkgconfigtool.h index 43e3fe47064..af534741169 100644 --- a/src/plugins/genericprojectmanager/pkgconfigtool.h +++ b/src/plugins/genericprojectmanager/pkgconfigtool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/selectablefilesmodel.cpp b/src/plugins/genericprojectmanager/selectablefilesmodel.cpp index 60deb9da160..24e5f8ac34f 100644 --- a/src/plugins/genericprojectmanager/selectablefilesmodel.cpp +++ b/src/plugins/genericprojectmanager/selectablefilesmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/genericprojectmanager/selectablefilesmodel.h b/src/plugins/genericprojectmanager/selectablefilesmodel.h index fcd09beb5d4..adb98afacac 100644 --- a/src/plugins/genericprojectmanager/selectablefilesmodel.h +++ b/src/plugins/genericprojectmanager/selectablefilesmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/Git.pluginspec.in b/src/plugins/git/Git.pluginspec.in index b68684dd813..95203b3eb24 100644 --- a/src/plugins/git/Git.pluginspec.in +++ b/src/plugins/git/Git.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Git\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/git/annotationhighlighter.cpp b/src/plugins/git/annotationhighlighter.cpp index 4e91ca08820..dc5046970a6 100644 --- a/src/plugins/git/annotationhighlighter.cpp +++ b/src/plugins/git/annotationhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/annotationhighlighter.h b/src/plugins/git/annotationhighlighter.h index 73f59851265..6226676864f 100644 --- a/src/plugins/git/annotationhighlighter.h +++ b/src/plugins/git/annotationhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/branchadddialog.cpp b/src/plugins/git/branchadddialog.cpp index df5d2ba9cf1..d96caf8d403 100644 --- a/src/plugins/git/branchadddialog.cpp +++ b/src/plugins/git/branchadddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/branchadddialog.h b/src/plugins/git/branchadddialog.h index df67d55a4cf..56d750e92d1 100644 --- a/src/plugins/git/branchadddialog.h +++ b/src/plugins/git/branchadddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/branchcheckoutdialog.cpp b/src/plugins/git/branchcheckoutdialog.cpp index d8fe4314aff..f87587fc501 100644 --- a/src/plugins/git/branchcheckoutdialog.cpp +++ b/src/plugins/git/branchcheckoutdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Petar Perisin <petar.perisin@gmail.com> +** Copyright (C) 2014 Petar Perisin <petar.perisin@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/branchcheckoutdialog.h b/src/plugins/git/branchcheckoutdialog.h index fd4250ac1aa..c36d19c6ce9 100644 --- a/src/plugins/git/branchcheckoutdialog.h +++ b/src/plugins/git/branchcheckoutdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Petar Perisin <petar.perisin@gmail.com> +** Copyright (C) 2014 Petar Perisin <petar.perisin@gmail.com> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/branchdialog.cpp b/src/plugins/git/branchdialog.cpp index 9fadf16934a..1641f2e0090 100644 --- a/src/plugins/git/branchdialog.cpp +++ b/src/plugins/git/branchdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/branchdialog.h b/src/plugins/git/branchdialog.h index 3343becfa97..f80188db1d7 100644 --- a/src/plugins/git/branchdialog.h +++ b/src/plugins/git/branchdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/branchmodel.cpp b/src/plugins/git/branchmodel.cpp index b3719db8b92..75e5c7cbc93 100644 --- a/src/plugins/git/branchmodel.cpp +++ b/src/plugins/git/branchmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/branchmodel.h b/src/plugins/git/branchmodel.h index f110944105f..2f90e0faaed 100644 --- a/src/plugins/git/branchmodel.h +++ b/src/plugins/git/branchmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/changeselectiondialog.cpp b/src/plugins/git/changeselectiondialog.cpp index 80b7b4ea83f..d9552cd575c 100644 --- a/src/plugins/git/changeselectiondialog.cpp +++ b/src/plugins/git/changeselectiondialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/changeselectiondialog.h b/src/plugins/git/changeselectiondialog.h index 6af4f73af03..fe441f2ec3d 100644 --- a/src/plugins/git/changeselectiondialog.h +++ b/src/plugins/git/changeselectiondialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/clonewizard.cpp b/src/plugins/git/clonewizard.cpp index a222ef48dcc..5c370afb168 100644 --- a/src/plugins/git/clonewizard.cpp +++ b/src/plugins/git/clonewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/clonewizard.h b/src/plugins/git/clonewizard.h index 676a132a3ea..7d6ebe230eb 100644 --- a/src/plugins/git/clonewizard.h +++ b/src/plugins/git/clonewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/clonewizardpage.cpp b/src/plugins/git/clonewizardpage.cpp index adebffb75db..b6c4a52cf42 100644 --- a/src/plugins/git/clonewizardpage.cpp +++ b/src/plugins/git/clonewizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/clonewizardpage.h b/src/plugins/git/clonewizardpage.h index ab69df8090c..fc59b264f96 100644 --- a/src/plugins/git/clonewizardpage.h +++ b/src/plugins/git/clonewizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/commitdata.cpp b/src/plugins/git/commitdata.cpp index 068b3bd1e89..9a1fefcbaf4 100644 --- a/src/plugins/git/commitdata.cpp +++ b/src/plugins/git/commitdata.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/commitdata.h b/src/plugins/git/commitdata.h index 635e24a3b9b..8fbee2b5d9e 100644 --- a/src/plugins/git/commitdata.h +++ b/src/plugins/git/commitdata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritdialog.cpp b/src/plugins/git/gerrit/gerritdialog.cpp index 8859af24e7c..881b3f736cf 100644 --- a/src/plugins/git/gerrit/gerritdialog.cpp +++ b/src/plugins/git/gerrit/gerritdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritdialog.h b/src/plugins/git/gerrit/gerritdialog.h index 7d8d1275c31..1a7fc3d5321 100644 --- a/src/plugins/git/gerrit/gerritdialog.h +++ b/src/plugins/git/gerrit/gerritdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritmodel.cpp b/src/plugins/git/gerrit/gerritmodel.cpp index 4084cc8a04b..feb693ca2e3 100644 --- a/src/plugins/git/gerrit/gerritmodel.cpp +++ b/src/plugins/git/gerrit/gerritmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritmodel.h b/src/plugins/git/gerrit/gerritmodel.h index f78d68f3c7f..61a526ccf0c 100644 --- a/src/plugins/git/gerrit/gerritmodel.h +++ b/src/plugins/git/gerrit/gerritmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritoptionspage.cpp b/src/plugins/git/gerrit/gerritoptionspage.cpp index 456b1edf6de..a63b64b97f2 100644 --- a/src/plugins/git/gerrit/gerritoptionspage.cpp +++ b/src/plugins/git/gerrit/gerritoptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritoptionspage.h b/src/plugins/git/gerrit/gerritoptionspage.h index 02a3131a1a5..c027fd7a960 100644 --- a/src/plugins/git/gerrit/gerritoptionspage.h +++ b/src/plugins/git/gerrit/gerritoptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritparameters.cpp b/src/plugins/git/gerrit/gerritparameters.cpp index 14d30f4b051..b18983a646d 100644 --- a/src/plugins/git/gerrit/gerritparameters.cpp +++ b/src/plugins/git/gerrit/gerritparameters.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritparameters.h b/src/plugins/git/gerrit/gerritparameters.h index 07ef1324cda..5b2051303c9 100644 --- a/src/plugins/git/gerrit/gerritparameters.h +++ b/src/plugins/git/gerrit/gerritparameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritplugin.cpp b/src/plugins/git/gerrit/gerritplugin.cpp index 75eefd32b1f..2acbc32fce1 100644 --- a/src/plugins/git/gerrit/gerritplugin.cpp +++ b/src/plugins/git/gerrit/gerritplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritplugin.h b/src/plugins/git/gerrit/gerritplugin.h index b2a6ef737ab..cefa726d35a 100644 --- a/src/plugins/git/gerrit/gerritplugin.h +++ b/src/plugins/git/gerrit/gerritplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritpushdialog.cpp b/src/plugins/git/gerrit/gerritpushdialog.cpp index d66c97f72b8..83d182c12af 100644 --- a/src/plugins/git/gerrit/gerritpushdialog.cpp +++ b/src/plugins/git/gerrit/gerritpushdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Petar Perisin. +** Copyright (C) 2014 Petar Perisin. ** Contact: petar.perisin@gmail.com ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gerrit/gerritpushdialog.h b/src/plugins/git/gerrit/gerritpushdialog.h index 950cbacb297..16a0beb77cd 100644 --- a/src/plugins/git/gerrit/gerritpushdialog.h +++ b/src/plugins/git/gerrit/gerritpushdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Petar Perisin. +** Copyright (C) 2014 Petar Perisin. ** Contact: petar.perisin@gmail.com ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index b6a1d9045ac..614761e1668 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitclient.h b/src/plugins/git/gitclient.h index 26a300fd434..382222680eb 100644 --- a/src/plugins/git/gitclient.h +++ b/src/plugins/git/gitclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitconstants.h b/src/plugins/git/gitconstants.h index ca311cb5f1a..057ad1a5f52 100644 --- a/src/plugins/git/gitconstants.h +++ b/src/plugins/git/gitconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/giteditor.cpp b/src/plugins/git/giteditor.cpp index 4f0b8314c67..c9b5552acb5 100644 --- a/src/plugins/git/giteditor.cpp +++ b/src/plugins/git/giteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/giteditor.h b/src/plugins/git/giteditor.h index 84b53992214..5943485e344 100644 --- a/src/plugins/git/giteditor.h +++ b/src/plugins/git/giteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/githighlighters.cpp b/src/plugins/git/githighlighters.cpp index 835b0f556d5..aca4944cfc9 100644 --- a/src/plugins/git/githighlighters.cpp +++ b/src/plugins/git/githighlighters.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/githighlighters.h b/src/plugins/git/githighlighters.h index 888b615c721..e269e97bb63 100644 --- a/src/plugins/git/githighlighters.h +++ b/src/plugins/git/githighlighters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitorious.cpp b/src/plugins/git/gitorious/gitorious.cpp index fd61b2d6f72..538aa48bcd5 100644 --- a/src/plugins/git/gitorious/gitorious.cpp +++ b/src/plugins/git/gitorious/gitorious.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitorious.h b/src/plugins/git/gitorious/gitorious.h index 938ecb9085d..e215ebf5f86 100644 --- a/src/plugins/git/gitorious/gitorious.h +++ b/src/plugins/git/gitorious/gitorious.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitoriousclonewizard.cpp b/src/plugins/git/gitorious/gitoriousclonewizard.cpp index 96288326968..739f981f7ad 100644 --- a/src/plugins/git/gitorious/gitoriousclonewizard.cpp +++ b/src/plugins/git/gitorious/gitoriousclonewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitoriousclonewizard.h b/src/plugins/git/gitorious/gitoriousclonewizard.h index 81bc86ee98d..8e28a9e06bb 100644 --- a/src/plugins/git/gitorious/gitoriousclonewizard.h +++ b/src/plugins/git/gitorious/gitoriousclonewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitorioushostwidget.cpp b/src/plugins/git/gitorious/gitorioushostwidget.cpp index 3aedcf00462..018ed0ff46c 100644 --- a/src/plugins/git/gitorious/gitorioushostwidget.cpp +++ b/src/plugins/git/gitorious/gitorioushostwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitorioushostwidget.h b/src/plugins/git/gitorious/gitorioushostwidget.h index a96f564caed..1fcb0f9f976 100644 --- a/src/plugins/git/gitorious/gitorioushostwidget.h +++ b/src/plugins/git/gitorious/gitorioushostwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitorioushostwizardpage.cpp b/src/plugins/git/gitorious/gitorioushostwizardpage.cpp index adc5d6b5e5b..05dfd94f5a6 100644 --- a/src/plugins/git/gitorious/gitorioushostwizardpage.cpp +++ b/src/plugins/git/gitorious/gitorioushostwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitorioushostwizardpage.h b/src/plugins/git/gitorious/gitorioushostwizardpage.h index a304cdbc0fc..a64f42b4e36 100644 --- a/src/plugins/git/gitorious/gitorioushostwizardpage.h +++ b/src/plugins/git/gitorious/gitorioushostwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitoriousprojectwidget.cpp b/src/plugins/git/gitorious/gitoriousprojectwidget.cpp index 1e9f970d8b7..5629271a92e 100644 --- a/src/plugins/git/gitorious/gitoriousprojectwidget.cpp +++ b/src/plugins/git/gitorious/gitoriousprojectwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitoriousprojectwidget.h b/src/plugins/git/gitorious/gitoriousprojectwidget.h index b55aaacf106..55c8c7d69f8 100644 --- a/src/plugins/git/gitorious/gitoriousprojectwidget.h +++ b/src/plugins/git/gitorious/gitoriousprojectwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitoriousprojectwizardpage.cpp b/src/plugins/git/gitorious/gitoriousprojectwizardpage.cpp index d7de4cdd523..152fcb3a1aa 100644 --- a/src/plugins/git/gitorious/gitoriousprojectwizardpage.cpp +++ b/src/plugins/git/gitorious/gitoriousprojectwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitoriousprojectwizardpage.h b/src/plugins/git/gitorious/gitoriousprojectwizardpage.h index 0bdcf0e4df8..338fd434b6a 100644 --- a/src/plugins/git/gitorious/gitoriousprojectwizardpage.h +++ b/src/plugins/git/gitorious/gitoriousprojectwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitoriousrepositorywizardpage.cpp b/src/plugins/git/gitorious/gitoriousrepositorywizardpage.cpp index 6b568e0a496..621fe959bd6 100644 --- a/src/plugins/git/gitorious/gitoriousrepositorywizardpage.cpp +++ b/src/plugins/git/gitorious/gitoriousrepositorywizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitorious/gitoriousrepositorywizardpage.h b/src/plugins/git/gitorious/gitoriousrepositorywizardpage.h index 647887a9331..ce1272b5f0b 100644 --- a/src/plugins/git/gitorious/gitoriousrepositorywizardpage.h +++ b/src/plugins/git/gitorious/gitoriousrepositorywizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitplugin.cpp b/src/plugins/git/gitplugin.cpp index 45bf783147f..1d148ec0bae 100644 --- a/src/plugins/git/gitplugin.cpp +++ b/src/plugins/git/gitplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitplugin.h b/src/plugins/git/gitplugin.h index f451834f300..5a0467717f6 100644 --- a/src/plugins/git/gitplugin.h +++ b/src/plugins/git/gitplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitsettings.cpp b/src/plugins/git/gitsettings.cpp index 197c13d7249..34fe54b8acf 100644 --- a/src/plugins/git/gitsettings.cpp +++ b/src/plugins/git/gitsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitsettings.h b/src/plugins/git/gitsettings.h index 33980173b71..701af49229e 100644 --- a/src/plugins/git/gitsettings.h +++ b/src/plugins/git/gitsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitsubmiteditor.cpp b/src/plugins/git/gitsubmiteditor.cpp index a7f2359da15..0c785fcfb5f 100644 --- a/src/plugins/git/gitsubmiteditor.cpp +++ b/src/plugins/git/gitsubmiteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitsubmiteditor.h b/src/plugins/git/gitsubmiteditor.h index da099f2d23e..e7aec33c10b 100644 --- a/src/plugins/git/gitsubmiteditor.h +++ b/src/plugins/git/gitsubmiteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitsubmiteditorwidget.cpp b/src/plugins/git/gitsubmiteditorwidget.cpp index 50cffe06b7e..a44e1ae5789 100644 --- a/src/plugins/git/gitsubmiteditorwidget.cpp +++ b/src/plugins/git/gitsubmiteditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitsubmiteditorwidget.h b/src/plugins/git/gitsubmiteditorwidget.h index adef5096bd3..cc67233e0e2 100644 --- a/src/plugins/git/gitsubmiteditorwidget.h +++ b/src/plugins/git/gitsubmiteditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitutils.cpp b/src/plugins/git/gitutils.cpp index 7dab04257f2..704be41b9dc 100644 --- a/src/plugins/git/gitutils.cpp +++ b/src/plugins/git/gitutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitutils.h b/src/plugins/git/gitutils.h index 4275f3a38d5..8882bd345c7 100644 --- a/src/plugins/git/gitutils.h +++ b/src/plugins/git/gitutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitversioncontrol.cpp b/src/plugins/git/gitversioncontrol.cpp index 95c4890b5ff..dbb302d3d8b 100644 --- a/src/plugins/git/gitversioncontrol.cpp +++ b/src/plugins/git/gitversioncontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/gitversioncontrol.h b/src/plugins/git/gitversioncontrol.h index c5f26f545fe..f7fe4ebed1c 100644 --- a/src/plugins/git/gitversioncontrol.h +++ b/src/plugins/git/gitversioncontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/logchangedialog.cpp b/src/plugins/git/logchangedialog.cpp index e09e5267f72..cdc42a38637 100644 --- a/src/plugins/git/logchangedialog.cpp +++ b/src/plugins/git/logchangedialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/logchangedialog.h b/src/plugins/git/logchangedialog.h index 22f6641b73e..1c83cfce7a6 100644 --- a/src/plugins/git/logchangedialog.h +++ b/src/plugins/git/logchangedialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/mergetool.cpp b/src/plugins/git/mergetool.cpp index 9e565b76f4a..44190b79810 100644 --- a/src/plugins/git/mergetool.cpp +++ b/src/plugins/git/mergetool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/mergetool.h b/src/plugins/git/mergetool.h index 96bce2fe7bf..ae6b87b65bc 100644 --- a/src/plugins/git/mergetool.h +++ b/src/plugins/git/mergetool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/remotedialog.cpp b/src/plugins/git/remotedialog.cpp index db4cb867594..155a646f322 100644 --- a/src/plugins/git/remotedialog.cpp +++ b/src/plugins/git/remotedialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/remotedialog.h b/src/plugins/git/remotedialog.h index 7ab485ef043..37fb57eda65 100644 --- a/src/plugins/git/remotedialog.h +++ b/src/plugins/git/remotedialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/remotemodel.cpp b/src/plugins/git/remotemodel.cpp index b6f0933e7c6..d0bb1e5e8a7 100644 --- a/src/plugins/git/remotemodel.cpp +++ b/src/plugins/git/remotemodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/remotemodel.h b/src/plugins/git/remotemodel.h index 035bea0f076..eac2f8c8e53 100644 --- a/src/plugins/git/remotemodel.h +++ b/src/plugins/git/remotemodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/settingspage.cpp b/src/plugins/git/settingspage.cpp index 075ad9ba448..339d353ce8a 100644 --- a/src/plugins/git/settingspage.cpp +++ b/src/plugins/git/settingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/settingspage.h b/src/plugins/git/settingspage.h index 18e70f473b9..7386d85ddab 100644 --- a/src/plugins/git/settingspage.h +++ b/src/plugins/git/settingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/stashdialog.cpp b/src/plugins/git/stashdialog.cpp index 153173e4b30..644e0001cd5 100644 --- a/src/plugins/git/stashdialog.cpp +++ b/src/plugins/git/stashdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/git/stashdialog.h b/src/plugins/git/stashdialog.h index 15f24fc04b4..d169d785e5e 100644 --- a/src/plugins/git/stashdialog.h +++ b/src/plugins/git/stashdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/GLSLEditor.pluginspec.in b/src/plugins/glsleditor/GLSLEditor.pluginspec.in index d584804eada..ec077be8b52 100644 --- a/src/plugins/glsleditor/GLSLEditor.pluginspec.in +++ b/src/plugins/glsleditor/GLSLEditor.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"GLSLEditor\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/glsleditor/glslautocompleter.cpp b/src/plugins/glsleditor/glslautocompleter.cpp index 5f5747c4695..6f247b46f51 100644 --- a/src/plugins/glsleditor/glslautocompleter.cpp +++ b/src/plugins/glsleditor/glslautocompleter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslautocompleter.h b/src/plugins/glsleditor/glslautocompleter.h index e2cbb6cfb34..91beb099a19 100644 --- a/src/plugins/glsleditor/glslautocompleter.h +++ b/src/plugins/glsleditor/glslautocompleter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslcompletionassist.cpp b/src/plugins/glsleditor/glslcompletionassist.cpp index f5ecd2c9834..69107abb2df 100644 --- a/src/plugins/glsleditor/glslcompletionassist.cpp +++ b/src/plugins/glsleditor/glslcompletionassist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslcompletionassist.h b/src/plugins/glsleditor/glslcompletionassist.h index bf75cfe31fa..879307e8184 100644 --- a/src/plugins/glsleditor/glslcompletionassist.h +++ b/src/plugins/glsleditor/glslcompletionassist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glsleditor.cpp b/src/plugins/glsleditor/glsleditor.cpp index f7cdc003363..67ff3afd333 100644 --- a/src/plugins/glsleditor/glsleditor.cpp +++ b/src/plugins/glsleditor/glsleditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glsleditor.h b/src/plugins/glsleditor/glsleditor.h index 1362a64e3d6..5d1b9306a97 100644 --- a/src/plugins/glsleditor/glsleditor.h +++ b/src/plugins/glsleditor/glsleditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glsleditorconstants.h b/src/plugins/glsleditor/glsleditorconstants.h index e1acd754c93..d0ffb394075 100644 --- a/src/plugins/glsleditor/glsleditorconstants.h +++ b/src/plugins/glsleditor/glsleditorconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glsleditoreditable.cpp b/src/plugins/glsleditor/glsleditoreditable.cpp index c5586110f0d..2f07aac6b75 100644 --- a/src/plugins/glsleditor/glsleditoreditable.cpp +++ b/src/plugins/glsleditor/glsleditoreditable.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glsleditoreditable.h b/src/plugins/glsleditor/glsleditoreditable.h index d358af3d735..f4fec5744c8 100644 --- a/src/plugins/glsleditor/glsleditoreditable.h +++ b/src/plugins/glsleditor/glsleditoreditable.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glsleditorfactory.cpp b/src/plugins/glsleditor/glsleditorfactory.cpp index 5afdfe65cbe..889db06caaf 100644 --- a/src/plugins/glsleditor/glsleditorfactory.cpp +++ b/src/plugins/glsleditor/glsleditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glsleditorfactory.h b/src/plugins/glsleditor/glsleditorfactory.h index 0932b3f556e..d36f8d459ad 100644 --- a/src/plugins/glsleditor/glsleditorfactory.h +++ b/src/plugins/glsleditor/glsleditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glsleditorplugin.cpp b/src/plugins/glsleditor/glsleditorplugin.cpp index 43b30df3053..a9544e9ef52 100644 --- a/src/plugins/glsleditor/glsleditorplugin.cpp +++ b/src/plugins/glsleditor/glsleditorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glsleditorplugin.h b/src/plugins/glsleditor/glsleditorplugin.h index 882f01800af..c9627e85014 100644 --- a/src/plugins/glsleditor/glsleditorplugin.h +++ b/src/plugins/glsleditor/glsleditorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslfilewizard.cpp b/src/plugins/glsleditor/glslfilewizard.cpp index 0541ac9388f..76704f19611 100644 --- a/src/plugins/glsleditor/glslfilewizard.cpp +++ b/src/plugins/glsleditor/glslfilewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslfilewizard.h b/src/plugins/glsleditor/glslfilewizard.h index 4beeedb4610..e0c6da73b8b 100644 --- a/src/plugins/glsleditor/glslfilewizard.h +++ b/src/plugins/glsleditor/glslfilewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslhighlighter.cpp b/src/plugins/glsleditor/glslhighlighter.cpp index a298a38baa3..2443e65660d 100644 --- a/src/plugins/glsleditor/glslhighlighter.cpp +++ b/src/plugins/glsleditor/glslhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslhighlighter.h b/src/plugins/glsleditor/glslhighlighter.h index 0f5660092ac..3e703e58987 100644 --- a/src/plugins/glsleditor/glslhighlighter.h +++ b/src/plugins/glsleditor/glslhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslhighlighterfactory.cpp b/src/plugins/glsleditor/glslhighlighterfactory.cpp index db9faa86e08..2ca6bb12c9d 100644 --- a/src/plugins/glsleditor/glslhighlighterfactory.cpp +++ b/src/plugins/glsleditor/glslhighlighterfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslhighlighterfactory.h b/src/plugins/glsleditor/glslhighlighterfactory.h index e6dbbddedc1..a5233e5f78b 100644 --- a/src/plugins/glsleditor/glslhighlighterfactory.h +++ b/src/plugins/glsleditor/glslhighlighterfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslhoverhandler.cpp b/src/plugins/glsleditor/glslhoverhandler.cpp index 2dd021d24a2..6731568b3f2 100644 --- a/src/plugins/glsleditor/glslhoverhandler.cpp +++ b/src/plugins/glsleditor/glslhoverhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslhoverhandler.h b/src/plugins/glsleditor/glslhoverhandler.h index 34d63292e46..58ce5fd5bd5 100644 --- a/src/plugins/glsleditor/glslhoverhandler.h +++ b/src/plugins/glsleditor/glslhoverhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslindenter.cpp b/src/plugins/glsleditor/glslindenter.cpp index e902520cc7f..e8c80bd6248 100644 --- a/src/plugins/glsleditor/glslindenter.cpp +++ b/src/plugins/glsleditor/glslindenter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/glslindenter.h b/src/plugins/glsleditor/glslindenter.h index c3cd86225d4..2ea91f21e6c 100644 --- a/src/plugins/glsleditor/glslindenter.h +++ b/src/plugins/glsleditor/glslindenter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/reuse.cpp b/src/plugins/glsleditor/reuse.cpp index a221e219122..c1f118341e8 100644 --- a/src/plugins/glsleditor/reuse.cpp +++ b/src/plugins/glsleditor/reuse.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/glsleditor/reuse.h b/src/plugins/glsleditor/reuse.h index d28afcff517..247c0020ca6 100644 --- a/src/plugins/glsleditor/reuse.h +++ b/src/plugins/glsleditor/reuse.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/helloworld/HelloWorld.pluginspec.in b/src/plugins/helloworld/HelloWorld.pluginspec.in index 4a951ed3ac8..b99efdddf33 100644 --- a/src/plugins/helloworld/HelloWorld.pluginspec.in +++ b/src/plugins/helloworld/HelloWorld.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"HelloWorld\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\" experimental=\"true\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/helloworld/helloworldplugin.cpp b/src/plugins/helloworld/helloworldplugin.cpp index 314d1e90659..50ec3b1fc31 100644 --- a/src/plugins/helloworld/helloworldplugin.cpp +++ b/src/plugins/helloworld/helloworldplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/helloworld/helloworldplugin.h b/src/plugins/helloworld/helloworldplugin.h index 40c84c1ec51..1ee5889ac9b 100644 --- a/src/plugins/helloworld/helloworldplugin.h +++ b/src/plugins/helloworld/helloworldplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/helloworld/helloworldwindow.cpp b/src/plugins/helloworld/helloworldwindow.cpp index ba96eaf2dbf..201a5298b11 100644 --- a/src/plugins/helloworld/helloworldwindow.cpp +++ b/src/plugins/helloworld/helloworldwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/helloworld/helloworldwindow.h b/src/plugins/helloworld/helloworldwindow.h index fa50f31e211..bb4a2121f63 100644 --- a/src/plugins/helloworld/helloworldwindow.h +++ b/src/plugins/helloworld/helloworldwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/Help.pluginspec.in b/src/plugins/help/Help.pluginspec.in index e54c0d34229..f8bb8ab6f8a 100644 --- a/src/plugins/help/Help.pluginspec.in +++ b/src/plugins/help/Help.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Help\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/help/centralwidget.cpp b/src/plugins/help/centralwidget.cpp index c5fbe52abff..b99ba69487e 100644 --- a/src/plugins/help/centralwidget.cpp +++ b/src/plugins/help/centralwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/centralwidget.h b/src/plugins/help/centralwidget.h index b0b333b3ab8..a260eb2326e 100644 --- a/src/plugins/help/centralwidget.h +++ b/src/plugins/help/centralwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/docsettingspage.cpp b/src/plugins/help/docsettingspage.cpp index 627aaab13fc..9c2bdcb83f4 100644 --- a/src/plugins/help/docsettingspage.cpp +++ b/src/plugins/help/docsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/docsettingspage.h b/src/plugins/help/docsettingspage.h index 337db8f7b79..cb3db51ac4c 100644 --- a/src/plugins/help/docsettingspage.h +++ b/src/plugins/help/docsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/externalhelpwindow.cpp b/src/plugins/help/externalhelpwindow.cpp index 0fbb160fed0..a85df263079 100644 --- a/src/plugins/help/externalhelpwindow.cpp +++ b/src/plugins/help/externalhelpwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/externalhelpwindow.h b/src/plugins/help/externalhelpwindow.h index b710a3149d1..9739d99019a 100644 --- a/src/plugins/help/externalhelpwindow.h +++ b/src/plugins/help/externalhelpwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/filtersettingspage.cpp b/src/plugins/help/filtersettingspage.cpp index f97cdfa879a..7606f32c388 100644 --- a/src/plugins/help/filtersettingspage.cpp +++ b/src/plugins/help/filtersettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/filtersettingspage.h b/src/plugins/help/filtersettingspage.h index 3d20d19521d..cc0ef99bc06 100644 --- a/src/plugins/help/filtersettingspage.h +++ b/src/plugins/help/filtersettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/generalsettingspage.cpp b/src/plugins/help/generalsettingspage.cpp index 43ac9b1aed9..39e495c96fc 100644 --- a/src/plugins/help/generalsettingspage.cpp +++ b/src/plugins/help/generalsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/generalsettingspage.h b/src/plugins/help/generalsettingspage.h index 70fb588b96d..e243369e46b 100644 --- a/src/plugins/help/generalsettingspage.h +++ b/src/plugins/help/generalsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpconstants.h b/src/plugins/help/helpconstants.h index 59fc2dc091f..8c80f008d74 100644 --- a/src/plugins/help/helpconstants.h +++ b/src/plugins/help/helpconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpfindsupport.cpp b/src/plugins/help/helpfindsupport.cpp index e2c5806b606..16efef0b003 100644 --- a/src/plugins/help/helpfindsupport.cpp +++ b/src/plugins/help/helpfindsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpfindsupport.h b/src/plugins/help/helpfindsupport.h index e4ace00d20a..fce9eaf45e6 100644 --- a/src/plugins/help/helpfindsupport.h +++ b/src/plugins/help/helpfindsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpindexfilter.cpp b/src/plugins/help/helpindexfilter.cpp index 5e65e84e324..e964e9c428c 100644 --- a/src/plugins/help/helpindexfilter.cpp +++ b/src/plugins/help/helpindexfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpindexfilter.h b/src/plugins/help/helpindexfilter.h index 5658246e142..bf26413dac6 100644 --- a/src/plugins/help/helpindexfilter.h +++ b/src/plugins/help/helpindexfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpmode.cpp b/src/plugins/help/helpmode.cpp index b0e75308ad8..b0cb81662b0 100644 --- a/src/plugins/help/helpmode.cpp +++ b/src/plugins/help/helpmode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpmode.h b/src/plugins/help/helpmode.h index 20982f03d4f..1c3e3bd07f6 100644 --- a/src/plugins/help/helpmode.h +++ b/src/plugins/help/helpmode.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp index 68b75b8c8c0..33ab67a5bd7 100644 --- a/src/plugins/help/helpplugin.cpp +++ b/src/plugins/help/helpplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpplugin.h b/src/plugins/help/helpplugin.h index ef5b8987943..1e03dfe9a24 100644 --- a/src/plugins/help/helpplugin.h +++ b/src/plugins/help/helpplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpviewer.cpp b/src/plugins/help/helpviewer.cpp index 7d3c93e1c14..50435be481d 100644 --- a/src/plugins/help/helpviewer.cpp +++ b/src/plugins/help/helpviewer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpviewer.h b/src/plugins/help/helpviewer.h index 6882aa92f8c..1355684b1dd 100644 --- a/src/plugins/help/helpviewer.h +++ b/src/plugins/help/helpviewer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpviewer_p.h b/src/plugins/help/helpviewer_p.h index 01153264426..647b8a944b8 100644 --- a/src/plugins/help/helpviewer_p.h +++ b/src/plugins/help/helpviewer_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpviewer_qtb.cpp b/src/plugins/help/helpviewer_qtb.cpp index 9787dc1622c..e643ccc1588 100644 --- a/src/plugins/help/helpviewer_qtb.cpp +++ b/src/plugins/help/helpviewer_qtb.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/helpviewer_qwv.cpp b/src/plugins/help/helpviewer_qwv.cpp index 586e3908c4e..f0f44bc66f2 100644 --- a/src/plugins/help/helpviewer_qwv.cpp +++ b/src/plugins/help/helpviewer_qwv.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/localhelpmanager.cpp b/src/plugins/help/localhelpmanager.cpp index a225d77125d..9bce86ce87d 100644 --- a/src/plugins/help/localhelpmanager.cpp +++ b/src/plugins/help/localhelpmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/localhelpmanager.h b/src/plugins/help/localhelpmanager.h index 9e7bc029fdf..3f8b720499a 100644 --- a/src/plugins/help/localhelpmanager.h +++ b/src/plugins/help/localhelpmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/openpagesmanager.cpp b/src/plugins/help/openpagesmanager.cpp index 8bc3471d1ec..3e98495a78f 100644 --- a/src/plugins/help/openpagesmanager.cpp +++ b/src/plugins/help/openpagesmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/openpagesmanager.h b/src/plugins/help/openpagesmanager.h index 63e5f30a960..6f0d632a6f3 100644 --- a/src/plugins/help/openpagesmanager.h +++ b/src/plugins/help/openpagesmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/openpagesmodel.cpp b/src/plugins/help/openpagesmodel.cpp index 4f22e922c92..f6aeaa3ceb1 100644 --- a/src/plugins/help/openpagesmodel.cpp +++ b/src/plugins/help/openpagesmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/openpagesmodel.h b/src/plugins/help/openpagesmodel.h index 0b687fe7efc..a1e4267669f 100644 --- a/src/plugins/help/openpagesmodel.h +++ b/src/plugins/help/openpagesmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/openpagesswitcher.cpp b/src/plugins/help/openpagesswitcher.cpp index b07e58bd9f4..a152af04a14 100644 --- a/src/plugins/help/openpagesswitcher.cpp +++ b/src/plugins/help/openpagesswitcher.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/openpagesswitcher.h b/src/plugins/help/openpagesswitcher.h index c3f18343b35..a20f2518fa8 100644 --- a/src/plugins/help/openpagesswitcher.h +++ b/src/plugins/help/openpagesswitcher.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/openpageswidget.cpp b/src/plugins/help/openpageswidget.cpp index 555c5fe015f..2a03ad710e0 100644 --- a/src/plugins/help/openpageswidget.cpp +++ b/src/plugins/help/openpageswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/openpageswidget.h b/src/plugins/help/openpageswidget.h index e095bac8338..247019e8565 100644 --- a/src/plugins/help/openpageswidget.h +++ b/src/plugins/help/openpageswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/remotehelpfilter.cpp b/src/plugins/help/remotehelpfilter.cpp index 5a1459cf7e4..130f196f1b8 100644 --- a/src/plugins/help/remotehelpfilter.cpp +++ b/src/plugins/help/remotehelpfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/remotehelpfilter.h b/src/plugins/help/remotehelpfilter.h index 4bcb0c8ed6e..a070a0f3fb4 100644 --- a/src/plugins/help/remotehelpfilter.h +++ b/src/plugins/help/remotehelpfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/searchwidget.cpp b/src/plugins/help/searchwidget.cpp index d616c054c50..a90b0b47e7b 100644 --- a/src/plugins/help/searchwidget.cpp +++ b/src/plugins/help/searchwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/searchwidget.h b/src/plugins/help/searchwidget.h index fbc68c40835..5750f178558 100644 --- a/src/plugins/help/searchwidget.h +++ b/src/plugins/help/searchwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/xbelsupport.cpp b/src/plugins/help/xbelsupport.cpp index 1850629fb96..130cfd3716f 100644 --- a/src/plugins/help/xbelsupport.cpp +++ b/src/plugins/help/xbelsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/help/xbelsupport.h b/src/plugins/help/xbelsupport.h index e48c70f129b..6d600ce2bc5 100644 --- a/src/plugins/help/xbelsupport.h +++ b/src/plugins/help/xbelsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/ImageViewer.pluginspec.in b/src/plugins/imageviewer/ImageViewer.pluginspec.in index 6a1975fc123..6e65a78d7d5 100644 --- a/src/plugins/imageviewer/ImageViewer.pluginspec.in +++ b/src/plugins/imageviewer/ImageViewer.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"ImageViewer\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Denis Mingulov</copyright> + <copyright>(C) 2014 Denis Mingulov</copyright> <license> Commercial Usage diff --git a/src/plugins/imageviewer/imageview.cpp b/src/plugins/imageviewer/imageview.cpp index 5747b1b13a9..0767a68eb32 100644 --- a/src/plugins/imageviewer/imageview.cpp +++ b/src/plugins/imageviewer/imageview.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/src/plugins/imageviewer/imageview.h b/src/plugins/imageviewer/imageview.h index 7aaedf5cd5f..14e17d8b683 100644 --- a/src/plugins/imageviewer/imageview.h +++ b/src/plugins/imageviewer/imageview.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator diff --git a/src/plugins/imageviewer/imageviewer.cpp b/src/plugins/imageviewer/imageviewer.cpp index e214eade6d4..63e4811da23 100644 --- a/src/plugins/imageviewer/imageviewer.cpp +++ b/src/plugins/imageviewer/imageviewer.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imageviewer.h b/src/plugins/imageviewer/imageviewer.h index 2890d45a325..1ca58ce6dc5 100644 --- a/src/plugins/imageviewer/imageviewer.h +++ b/src/plugins/imageviewer/imageviewer.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imagevieweractionhandler.cpp b/src/plugins/imageviewer/imagevieweractionhandler.cpp index 4b27ddd75d7..ab3c7654d21 100644 --- a/src/plugins/imageviewer/imagevieweractionhandler.cpp +++ b/src/plugins/imageviewer/imagevieweractionhandler.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imagevieweractionhandler.h b/src/plugins/imageviewer/imagevieweractionhandler.h index 505ab6d64ea..28266c2fab2 100644 --- a/src/plugins/imageviewer/imagevieweractionhandler.h +++ b/src/plugins/imageviewer/imagevieweractionhandler.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imageviewerconstants.h b/src/plugins/imageviewer/imageviewerconstants.h index 7dc52262f58..0e0fa970a3f 100644 --- a/src/plugins/imageviewer/imageviewerconstants.h +++ b/src/plugins/imageviewer/imageviewerconstants.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imageviewerfactory.cpp b/src/plugins/imageviewer/imageviewerfactory.cpp index b77c468c1a6..faced86d9e0 100644 --- a/src/plugins/imageviewer/imageviewerfactory.cpp +++ b/src/plugins/imageviewer/imageviewerfactory.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imageviewerfactory.h b/src/plugins/imageviewer/imageviewerfactory.h index a4200013ca5..fa61e9ec1e4 100644 --- a/src/plugins/imageviewer/imageviewerfactory.h +++ b/src/plugins/imageviewer/imageviewerfactory.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imageviewerfile.cpp b/src/plugins/imageviewer/imageviewerfile.cpp index a7c96e0ceb5..fd59de68a42 100644 --- a/src/plugins/imageviewer/imageviewerfile.cpp +++ b/src/plugins/imageviewer/imageviewerfile.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imageviewerfile.h b/src/plugins/imageviewer/imageviewerfile.h index d042e8ab1f3..dc88a47c047 100644 --- a/src/plugins/imageviewer/imageviewerfile.h +++ b/src/plugins/imageviewer/imageviewerfile.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imageviewerplugin.cpp b/src/plugins/imageviewer/imageviewerplugin.cpp index a0a68394116..9772f30ef11 100644 --- a/src/plugins/imageviewer/imageviewerplugin.cpp +++ b/src/plugins/imageviewer/imageviewerplugin.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/imageviewer/imageviewerplugin.h b/src/plugins/imageviewer/imageviewerplugin.h index 9ec64c3943f..7731a2b5943 100644 --- a/src/plugins/imageviewer/imageviewerplugin.h +++ b/src/plugins/imageviewer/imageviewerplugin.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (C) 2013 Denis Mingulov. -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Denis Mingulov. +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/Ios.pluginspec.in b/src/plugins/ios/Ios.pluginspec.in index 210c342680c..835bc1d08c0 100644 --- a/src/plugins/ios/Ios.pluginspec.in +++ b/src/plugins/ios/Ios.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Ios\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_VERSION\" experimental=\"true\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <platform>Mac OS.*</platform> <license> Commercial Usage diff --git a/src/plugins/ios/iosbuildstep.cpp b/src/plugins/ios/iosbuildstep.cpp index adf82b84dbf..0d7bf56de41 100644 --- a/src/plugins/ios/iosbuildstep.cpp +++ b/src/plugins/ios/iosbuildstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosbuildstep.h b/src/plugins/ios/iosbuildstep.h index 7834f3b789e..fd39525601c 100644 --- a/src/plugins/ios/iosbuildstep.h +++ b/src/plugins/ios/iosbuildstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosconfigurations.cpp b/src/plugins/ios/iosconfigurations.cpp index 060bb5d7ffc..a182d55c5c3 100644 --- a/src/plugins/ios/iosconfigurations.cpp +++ b/src/plugins/ios/iosconfigurations.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosconfigurations.h b/src/plugins/ios/iosconfigurations.h index 21b0660764f..a3bbfc4ecee 100644 --- a/src/plugins/ios/iosconfigurations.h +++ b/src/plugins/ios/iosconfigurations.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosconstants.h b/src/plugins/ios/iosconstants.h index f4df71a0916..3bdab989ebf 100644 --- a/src/plugins/ios/iosconstants.h +++ b/src/plugins/ios/iosconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdebugsupport.cpp b/src/plugins/ios/iosdebugsupport.cpp index 44edcb276bc..4b82e207e57 100644 --- a/src/plugins/ios/iosdebugsupport.cpp +++ b/src/plugins/ios/iosdebugsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdebugsupport.h b/src/plugins/ios/iosdebugsupport.h index 03671798393..02068255754 100644 --- a/src/plugins/ios/iosdebugsupport.h +++ b/src/plugins/ios/iosdebugsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdeployconfiguration.cpp b/src/plugins/ios/iosdeployconfiguration.cpp index df108bc7354..d138759d64a 100644 --- a/src/plugins/ios/iosdeployconfiguration.cpp +++ b/src/plugins/ios/iosdeployconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdeployconfiguration.h b/src/plugins/ios/iosdeployconfiguration.h index f92ac8cc3c3..c3a45416674 100644 --- a/src/plugins/ios/iosdeployconfiguration.h +++ b/src/plugins/ios/iosdeployconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdeploystep.cpp b/src/plugins/ios/iosdeploystep.cpp index 37baafeea62..9b0e0019546 100644 --- a/src/plugins/ios/iosdeploystep.cpp +++ b/src/plugins/ios/iosdeploystep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdeploystep.h b/src/plugins/ios/iosdeploystep.h index e74a5c0bbbf..ea09b7e0008 100644 --- a/src/plugins/ios/iosdeploystep.h +++ b/src/plugins/ios/iosdeploystep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdeploystepfactory.cpp b/src/plugins/ios/iosdeploystepfactory.cpp index 8b8430fbe67..f1d1f2fa5d3 100644 --- a/src/plugins/ios/iosdeploystepfactory.cpp +++ b/src/plugins/ios/iosdeploystepfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdeploystepfactory.h b/src/plugins/ios/iosdeploystepfactory.h index be9fc63bc70..f68f2eed8eb 100644 --- a/src/plugins/ios/iosdeploystepfactory.h +++ b/src/plugins/ios/iosdeploystepfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdeploystepwidget.cpp b/src/plugins/ios/iosdeploystepwidget.cpp index 9f43d2b48ae..3c9dea8bd22 100644 --- a/src/plugins/ios/iosdeploystepwidget.cpp +++ b/src/plugins/ios/iosdeploystepwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdeploystepwidget.h b/src/plugins/ios/iosdeploystepwidget.h index 1c3be04e40c..b5e625b4f61 100644 --- a/src/plugins/ios/iosdeploystepwidget.h +++ b/src/plugins/ios/iosdeploystepwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdevice.cpp b/src/plugins/ios/iosdevice.cpp index 58cf894b962..a9753cadb11 100644 --- a/src/plugins/ios/iosdevice.cpp +++ b/src/plugins/ios/iosdevice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdevice.h b/src/plugins/ios/iosdevice.h index 9b2b8f8cda1..f480f3a62f9 100644 --- a/src/plugins/ios/iosdevice.h +++ b/src/plugins/ios/iosdevice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdevicefactory.cpp b/src/plugins/ios/iosdevicefactory.cpp index 6f72674f13d..a78a74adb62 100644 --- a/src/plugins/ios/iosdevicefactory.cpp +++ b/src/plugins/ios/iosdevicefactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosdevicefactory.h b/src/plugins/ios/iosdevicefactory.h index 704e4f34f61..582f725f4a6 100644 --- a/src/plugins/ios/iosdevicefactory.h +++ b/src/plugins/ios/iosdevicefactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosmanager.cpp b/src/plugins/ios/iosmanager.cpp index d70dad64f61..1a51f2f4e92 100644 --- a/src/plugins/ios/iosmanager.cpp +++ b/src/plugins/ios/iosmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosmanager.h b/src/plugins/ios/iosmanager.h index 83f1c58a02b..97a8ffd8068 100644 --- a/src/plugins/ios/iosmanager.h +++ b/src/plugins/ios/iosmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosplugin.cpp b/src/plugins/ios/iosplugin.cpp index 555d120800a..c239d9059f0 100644 --- a/src/plugins/ios/iosplugin.cpp +++ b/src/plugins/ios/iosplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosplugin.h b/src/plugins/ios/iosplugin.h index 832343919e2..f374fca76e4 100644 --- a/src/plugins/ios/iosplugin.h +++ b/src/plugins/ios/iosplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosprobe.cpp b/src/plugins/ios/iosprobe.cpp index e3ebae3e40e..b7a3a154b45 100644 --- a/src/plugins/ios/iosprobe.cpp +++ b/src/plugins/ios/iosprobe.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosprobe.h b/src/plugins/ios/iosprobe.h index 7249f1158e7..9aa52604eaa 100644 --- a/src/plugins/ios/iosprobe.h +++ b/src/plugins/ios/iosprobe.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosqtversion.cpp b/src/plugins/ios/iosqtversion.cpp index 8475c0ca47d..50c84aeb6bd 100644 --- a/src/plugins/ios/iosqtversion.cpp +++ b/src/plugins/ios/iosqtversion.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosqtversion.h b/src/plugins/ios/iosqtversion.h index 7c720a05907..d7f3f85b249 100644 --- a/src/plugins/ios/iosqtversion.h +++ b/src/plugins/ios/iosqtversion.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosqtversionfactory.cpp b/src/plugins/ios/iosqtversionfactory.cpp index c842c5a9c27..4b2dcd880b6 100644 --- a/src/plugins/ios/iosqtversionfactory.cpp +++ b/src/plugins/ios/iosqtversionfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosqtversionfactory.h b/src/plugins/ios/iosqtversionfactory.h index 2757576e0f2..930a09282aa 100644 --- a/src/plugins/ios/iosqtversionfactory.h +++ b/src/plugins/ios/iosqtversionfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosrunconfiguration.cpp b/src/plugins/ios/iosrunconfiguration.cpp index 0cb5d1aa7fe..b4994f4e26a 100644 --- a/src/plugins/ios/iosrunconfiguration.cpp +++ b/src/plugins/ios/iosrunconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosrunconfiguration.h b/src/plugins/ios/iosrunconfiguration.h index bb8dc31765c..6ae4dbb2895 100644 --- a/src/plugins/ios/iosrunconfiguration.h +++ b/src/plugins/ios/iosrunconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosruncontrol.cpp b/src/plugins/ios/iosruncontrol.cpp index 6db4fa7d446..5a12772cd84 100644 --- a/src/plugins/ios/iosruncontrol.cpp +++ b/src/plugins/ios/iosruncontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosruncontrol.h b/src/plugins/ios/iosruncontrol.h index 922a5bdd0cb..f216c450bf2 100644 --- a/src/plugins/ios/iosruncontrol.h +++ b/src/plugins/ios/iosruncontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosrunfactories.cpp b/src/plugins/ios/iosrunfactories.cpp index e9c82197842..b7c78e87983 100644 --- a/src/plugins/ios/iosrunfactories.cpp +++ b/src/plugins/ios/iosrunfactories.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosrunfactories.h b/src/plugins/ios/iosrunfactories.h index 8f4641c331c..abecfc25241 100644 --- a/src/plugins/ios/iosrunfactories.h +++ b/src/plugins/ios/iosrunfactories.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp index 69fc95c11d9..cb958259600 100644 --- a/src/plugins/ios/iosrunner.cpp +++ b/src/plugins/ios/iosrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iosrunner.h b/src/plugins/ios/iosrunner.h index 5a0267d0776..abf971c416d 100644 --- a/src/plugins/ios/iosrunner.h +++ b/src/plugins/ios/iosrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iossettingspage.cpp b/src/plugins/ios/iossettingspage.cpp index f1a61e7aeb3..33cf2e28882 100644 --- a/src/plugins/ios/iossettingspage.cpp +++ b/src/plugins/ios/iossettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iossettingspage.h b/src/plugins/ios/iossettingspage.h index 96ee1909055..32711977b6b 100644 --- a/src/plugins/ios/iossettingspage.h +++ b/src/plugins/ios/iossettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iossettingswidget.cpp b/src/plugins/ios/iossettingswidget.cpp index b4e7e44eb39..16eea3846e2 100644 --- a/src/plugins/ios/iossettingswidget.cpp +++ b/src/plugins/ios/iossettingswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iossettingswidget.h b/src/plugins/ios/iossettingswidget.h index 58b8fc7c60c..01e955c6551 100644 --- a/src/plugins/ios/iossettingswidget.h +++ b/src/plugins/ios/iossettingswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iossimulator.cpp b/src/plugins/ios/iossimulator.cpp index 711d3f7e303..792acc871d4 100644 --- a/src/plugins/ios/iossimulator.cpp +++ b/src/plugins/ios/iossimulator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iossimulator.h b/src/plugins/ios/iossimulator.h index 2a6e85f1230..6349562cb20 100644 --- a/src/plugins/ios/iossimulator.h +++ b/src/plugins/ios/iossimulator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iossimulatorfactory.cpp b/src/plugins/ios/iossimulatorfactory.cpp index 7ee5d8e2110..314a2f6270d 100644 --- a/src/plugins/ios/iossimulatorfactory.cpp +++ b/src/plugins/ios/iossimulatorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iossimulatorfactory.h b/src/plugins/ios/iossimulatorfactory.h index 5055af6f077..aee1bface99 100644 --- a/src/plugins/ios/iossimulatorfactory.h +++ b/src/plugins/ios/iossimulatorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iostoolhandler.cpp b/src/plugins/ios/iostoolhandler.cpp index cc921ae41e8..e00e13754dd 100644 --- a/src/plugins/ios/iostoolhandler.cpp +++ b/src/plugins/ios/iostoolhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/ios/iostoolhandler.h b/src/plugins/ios/iostoolhandler.h index de8e53c4845..749565a55eb 100644 --- a/src/plugins/ios/iostoolhandler.h +++ b/src/plugins/ios/iostoolhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/Locator.pluginspec.in b/src/plugins/locator/Locator.pluginspec.in index 8144fdaa8d4..ecd6d22c95a 100644 --- a/src/plugins/locator/Locator.pluginspec.in +++ b/src/plugins/locator/Locator.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Locator\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/locator/basefilefilter.cpp b/src/plugins/locator/basefilefilter.cpp index bfe10a8cd6a..c802014f1e8 100644 --- a/src/plugins/locator/basefilefilter.cpp +++ b/src/plugins/locator/basefilefilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/basefilefilter.h b/src/plugins/locator/basefilefilter.h index 4f02760dc40..7e7c7fe7860 100644 --- a/src/plugins/locator/basefilefilter.h +++ b/src/plugins/locator/basefilefilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/commandlocator.cpp b/src/plugins/locator/commandlocator.cpp index 022ae3a7a34..bf9e2eed8b9 100644 --- a/src/plugins/locator/commandlocator.cpp +++ b/src/plugins/locator/commandlocator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/commandlocator.h b/src/plugins/locator/commandlocator.h index b33000d006a..3943c492825 100644 --- a/src/plugins/locator/commandlocator.h +++ b/src/plugins/locator/commandlocator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/directoryfilter.cpp b/src/plugins/locator/directoryfilter.cpp index 0e1ef3bd2b5..f920c3de621 100644 --- a/src/plugins/locator/directoryfilter.cpp +++ b/src/plugins/locator/directoryfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/directoryfilter.h b/src/plugins/locator/directoryfilter.h index 89296924c83..021a5167923 100644 --- a/src/plugins/locator/directoryfilter.h +++ b/src/plugins/locator/directoryfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/executefilter.cpp b/src/plugins/locator/executefilter.cpp index 20e940a1d78..4f7cc7404e9 100644 --- a/src/plugins/locator/executefilter.cpp +++ b/src/plugins/locator/executefilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/executefilter.h b/src/plugins/locator/executefilter.h index 26d6ee48723..9d2f0e946ca 100644 --- a/src/plugins/locator/executefilter.h +++ b/src/plugins/locator/executefilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/filesystemfilter.cpp b/src/plugins/locator/filesystemfilter.cpp index d7c978a1e4e..b5a11399641 100644 --- a/src/plugins/locator/filesystemfilter.cpp +++ b/src/plugins/locator/filesystemfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/filesystemfilter.h b/src/plugins/locator/filesystemfilter.h index 0ee126bd0d4..9708dca4897 100644 --- a/src/plugins/locator/filesystemfilter.h +++ b/src/plugins/locator/filesystemfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/ilocatorfilter.cpp b/src/plugins/locator/ilocatorfilter.cpp index 8df45181002..70e8374c3ba 100644 --- a/src/plugins/locator/ilocatorfilter.cpp +++ b/src/plugins/locator/ilocatorfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/ilocatorfilter.h b/src/plugins/locator/ilocatorfilter.h index 6ea20a64a91..b3ca3039fc3 100644 --- a/src/plugins/locator/ilocatorfilter.h +++ b/src/plugins/locator/ilocatorfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locator_global.h b/src/plugins/locator/locator_global.h index 30067a74402..751f7c17b5c 100644 --- a/src/plugins/locator/locator_global.h +++ b/src/plugins/locator/locator_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locator_test.cpp b/src/plugins/locator/locator_test.cpp index 1d433bab369..e9532fb36a3 100644 --- a/src/plugins/locator/locator_test.cpp +++ b/src/plugins/locator/locator_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorconstants.h b/src/plugins/locator/locatorconstants.h index dfd82e7cd60..71bca5f0af0 100644 --- a/src/plugins/locator/locatorconstants.h +++ b/src/plugins/locator/locatorconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorfiltersfilter.cpp b/src/plugins/locator/locatorfiltersfilter.cpp index 240a2581b4d..ff69e2a3fe3 100644 --- a/src/plugins/locator/locatorfiltersfilter.cpp +++ b/src/plugins/locator/locatorfiltersfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorfiltersfilter.h b/src/plugins/locator/locatorfiltersfilter.h index fe81e63d9c0..8fb7bab8e39 100644 --- a/src/plugins/locator/locatorfiltersfilter.h +++ b/src/plugins/locator/locatorfiltersfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorfiltertest.cpp b/src/plugins/locator/locatorfiltertest.cpp index 692d213ef93..a552594e3ea 100644 --- a/src/plugins/locator/locatorfiltertest.cpp +++ b/src/plugins/locator/locatorfiltertest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorfiltertest.h b/src/plugins/locator/locatorfiltertest.h index df520adfdf8..a2ddbf12fb7 100644 --- a/src/plugins/locator/locatorfiltertest.h +++ b/src/plugins/locator/locatorfiltertest.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatormanager.cpp b/src/plugins/locator/locatormanager.cpp index 38a17dc270d..279cecaaae6 100644 --- a/src/plugins/locator/locatormanager.cpp +++ b/src/plugins/locator/locatormanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatormanager.h b/src/plugins/locator/locatormanager.h index 53b1b8a392c..9affcf8e611 100644 --- a/src/plugins/locator/locatormanager.h +++ b/src/plugins/locator/locatormanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorplugin.cpp b/src/plugins/locator/locatorplugin.cpp index 9513b317798..4348254135e 100644 --- a/src/plugins/locator/locatorplugin.cpp +++ b/src/plugins/locator/locatorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorplugin.h b/src/plugins/locator/locatorplugin.h index b30e224b089..f9268e12f15 100644 --- a/src/plugins/locator/locatorplugin.h +++ b/src/plugins/locator/locatorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorsearchutils.cpp b/src/plugins/locator/locatorsearchutils.cpp index eb3eed749e4..51c37f31c01 100644 --- a/src/plugins/locator/locatorsearchutils.cpp +++ b/src/plugins/locator/locatorsearchutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorsearchutils.h b/src/plugins/locator/locatorsearchutils.h index 0b0d382689d..59d90cdda3b 100644 --- a/src/plugins/locator/locatorsearchutils.h +++ b/src/plugins/locator/locatorsearchutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorwidget.cpp b/src/plugins/locator/locatorwidget.cpp index 1cc5fa22b2f..d592b459a1e 100644 --- a/src/plugins/locator/locatorwidget.cpp +++ b/src/plugins/locator/locatorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/locatorwidget.h b/src/plugins/locator/locatorwidget.h index 547d17c5c60..aefa335a10f 100644 --- a/src/plugins/locator/locatorwidget.h +++ b/src/plugins/locator/locatorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/opendocumentsfilter.cpp b/src/plugins/locator/opendocumentsfilter.cpp index 85ead6f0649..f0e4549590e 100644 --- a/src/plugins/locator/opendocumentsfilter.cpp +++ b/src/plugins/locator/opendocumentsfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/opendocumentsfilter.h b/src/plugins/locator/opendocumentsfilter.h index a42f8fca50c..e567d5b291e 100644 --- a/src/plugins/locator/opendocumentsfilter.h +++ b/src/plugins/locator/opendocumentsfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/settingspage.cpp b/src/plugins/locator/settingspage.cpp index a12d3052d7e..1813cbcb5e7 100644 --- a/src/plugins/locator/settingspage.cpp +++ b/src/plugins/locator/settingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/locator/settingspage.h b/src/plugins/locator/settingspage.h index 7cd2ec71eee..ea8e5dd523e 100644 --- a/src/plugins/locator/settingspage.h +++ b/src/plugins/locator/settingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/Macros.pluginspec.in b/src/plugins/macros/Macros.pluginspec.in index 5796bbbb7c0..b88ff2b19b1 100644 --- a/src/plugins/macros/Macros.pluginspec.in +++ b/src/plugins/macros/Macros.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Macros\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Nicolas Arnaud-Cormos</copyright> + <copyright>(C) 2014 Nicolas Arnaud-Cormos</copyright> <license> Commercial Usage diff --git a/src/plugins/macros/actionmacrohandler.cpp b/src/plugins/macros/actionmacrohandler.cpp index da2bb4e1bd0..538a2bf60a8 100644 --- a/src/plugins/macros/actionmacrohandler.cpp +++ b/src/plugins/macros/actionmacrohandler.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/actionmacrohandler.h b/src/plugins/macros/actionmacrohandler.h index 93e7a898abd..0678b404705 100644 --- a/src/plugins/macros/actionmacrohandler.h +++ b/src/plugins/macros/actionmacrohandler.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/findmacrohandler.cpp b/src/plugins/macros/findmacrohandler.cpp index 829475cb170..4fe95088819 100644 --- a/src/plugins/macros/findmacrohandler.cpp +++ b/src/plugins/macros/findmacrohandler.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/findmacrohandler.h b/src/plugins/macros/findmacrohandler.h index a1bfb8eebfd..7f35f1adfd4 100644 --- a/src/plugins/macros/findmacrohandler.h +++ b/src/plugins/macros/findmacrohandler.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/imacrohandler.cpp b/src/plugins/macros/imacrohandler.cpp index c29be0b74e9..c8c1cedc5f3 100644 --- a/src/plugins/macros/imacrohandler.cpp +++ b/src/plugins/macros/imacrohandler.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/imacrohandler.h b/src/plugins/macros/imacrohandler.h index defa7d041cd..e7133f2c541 100644 --- a/src/plugins/macros/imacrohandler.h +++ b/src/plugins/macros/imacrohandler.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macro.cpp b/src/plugins/macros/macro.cpp index 4f7e174626d..4b34adacdd7 100644 --- a/src/plugins/macros/macro.cpp +++ b/src/plugins/macros/macro.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macro.h b/src/plugins/macros/macro.h index 6a06beb0153..7621b9a2a87 100644 --- a/src/plugins/macros/macro.h +++ b/src/plugins/macros/macro.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macroevent.cpp b/src/plugins/macros/macroevent.cpp index 6c2e925a2de..e103268a89c 100644 --- a/src/plugins/macros/macroevent.cpp +++ b/src/plugins/macros/macroevent.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macroevent.h b/src/plugins/macros/macroevent.h index 2e12f377048..5a1aa6ec292 100644 --- a/src/plugins/macros/macroevent.h +++ b/src/plugins/macros/macroevent.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrolocatorfilter.cpp b/src/plugins/macros/macrolocatorfilter.cpp index 2bb81904c55..e1cd889445d 100644 --- a/src/plugins/macros/macrolocatorfilter.cpp +++ b/src/plugins/macros/macrolocatorfilter.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrolocatorfilter.h b/src/plugins/macros/macrolocatorfilter.h index e3efd66a390..40a685d746f 100644 --- a/src/plugins/macros/macrolocatorfilter.h +++ b/src/plugins/macros/macrolocatorfilter.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macromanager.cpp b/src/plugins/macros/macromanager.cpp index 1cf253b1e8c..65efbda9640 100644 --- a/src/plugins/macros/macromanager.cpp +++ b/src/plugins/macros/macromanager.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macromanager.h b/src/plugins/macros/macromanager.h index 843c087fa7d..5f10e75013e 100644 --- a/src/plugins/macros/macromanager.h +++ b/src/plugins/macros/macromanager.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrooptionspage.cpp b/src/plugins/macros/macrooptionspage.cpp index 97220d054c4..c3c259de992 100644 --- a/src/plugins/macros/macrooptionspage.cpp +++ b/src/plugins/macros/macrooptionspage.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrooptionspage.h b/src/plugins/macros/macrooptionspage.h index a1b3575744e..767f6125c72 100644 --- a/src/plugins/macros/macrooptionspage.h +++ b/src/plugins/macros/macrooptionspage.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrooptionswidget.cpp b/src/plugins/macros/macrooptionswidget.cpp index dfe386d3064..78437c8ee31 100644 --- a/src/plugins/macros/macrooptionswidget.cpp +++ b/src/plugins/macros/macrooptionswidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrooptionswidget.h b/src/plugins/macros/macrooptionswidget.h index 234cd165e58..ed75a15d16a 100644 --- a/src/plugins/macros/macrooptionswidget.h +++ b/src/plugins/macros/macrooptionswidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrosconstants.h b/src/plugins/macros/macrosconstants.h index 2807af62ca9..caabd19388b 100644 --- a/src/plugins/macros/macrosconstants.h +++ b/src/plugins/macros/macrosconstants.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrosplugin.cpp b/src/plugins/macros/macrosplugin.cpp index e3d445aadaf..a672e592cd2 100644 --- a/src/plugins/macros/macrosplugin.cpp +++ b/src/plugins/macros/macrosplugin.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrosplugin.h b/src/plugins/macros/macrosplugin.h index 9eb196dcc0c..61e06524342 100644 --- a/src/plugins/macros/macrosplugin.h +++ b/src/plugins/macros/macrosplugin.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrotextfind.cpp b/src/plugins/macros/macrotextfind.cpp index ab14dc5076b..b56a81cdd33 100644 --- a/src/plugins/macros/macrotextfind.cpp +++ b/src/plugins/macros/macrotextfind.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/macrotextfind.h b/src/plugins/macros/macrotextfind.h index cedcfa355e3..f2e6fecb66e 100644 --- a/src/plugins/macros/macrotextfind.h +++ b/src/plugins/macros/macrotextfind.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/savedialog.cpp b/src/plugins/macros/savedialog.cpp index 2f79efa09e6..84c3dc46d14 100644 --- a/src/plugins/macros/savedialog.cpp +++ b/src/plugins/macros/savedialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/savedialog.h b/src/plugins/macros/savedialog.h index bc89ed39284..a6e5a7fa572 100644 --- a/src/plugins/macros/savedialog.h +++ b/src/plugins/macros/savedialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/texteditormacrohandler.cpp b/src/plugins/macros/texteditormacrohandler.cpp index 8d156eac9e1..b395b35d7eb 100644 --- a/src/plugins/macros/texteditormacrohandler.cpp +++ b/src/plugins/macros/texteditormacrohandler.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/macros/texteditormacrohandler.h b/src/plugins/macros/texteditormacrohandler.h index c04710a0daa..f747a14dd21 100644 --- a/src/plugins/macros/texteditormacrohandler.h +++ b/src/plugins/macros/texteditormacrohandler.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Nicolas Arnaud-Cormos +** Copyright (c) 2014 Nicolas Arnaud-Cormos ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/Mercurial.pluginspec.in b/src/plugins/mercurial/Mercurial.pluginspec.in index c771782d813..49117607167 100644 --- a/src/plugins/mercurial/Mercurial.pluginspec.in +++ b/src/plugins/mercurial/Mercurial.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Mercurial\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Brian McGillion</vendor> - <copyright>(C) 2013 Brian McGillion</copyright> + <copyright>(C) 2014 Brian McGillion</copyright> <license> Commercial Usage diff --git a/src/plugins/mercurial/annotationhighlighter.cpp b/src/plugins/mercurial/annotationhighlighter.cpp index 6a0a0be01e3..c47c6cc3bf3 100644 --- a/src/plugins/mercurial/annotationhighlighter.cpp +++ b/src/plugins/mercurial/annotationhighlighter.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/annotationhighlighter.h b/src/plugins/mercurial/annotationhighlighter.h index 931a745c6ee..bb8d7fa8211 100644 --- a/src/plugins/mercurial/annotationhighlighter.h +++ b/src/plugins/mercurial/annotationhighlighter.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/authenticationdialog.cpp b/src/plugins/mercurial/authenticationdialog.cpp index 2dc6cbf6dc8..c514012c9be 100644 --- a/src/plugins/mercurial/authenticationdialog.cpp +++ b/src/plugins/mercurial/authenticationdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/authenticationdialog.h b/src/plugins/mercurial/authenticationdialog.h index 31e54a8ffb9..c80304de999 100644 --- a/src/plugins/mercurial/authenticationdialog.h +++ b/src/plugins/mercurial/authenticationdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/clonewizard.cpp b/src/plugins/mercurial/clonewizard.cpp index 9da92663928..3e13bf7a5eb 100644 --- a/src/plugins/mercurial/clonewizard.cpp +++ b/src/plugins/mercurial/clonewizard.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/clonewizard.h b/src/plugins/mercurial/clonewizard.h index 155058c01f5..c9adc7b0ce6 100644 --- a/src/plugins/mercurial/clonewizard.h +++ b/src/plugins/mercurial/clonewizard.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/clonewizardpage.cpp b/src/plugins/mercurial/clonewizardpage.cpp index f3f0be521e3..d734f7459fd 100644 --- a/src/plugins/mercurial/clonewizardpage.cpp +++ b/src/plugins/mercurial/clonewizardpage.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/clonewizardpage.h b/src/plugins/mercurial/clonewizardpage.h index f45e66e05bf..f70db0cdc2b 100644 --- a/src/plugins/mercurial/clonewizardpage.h +++ b/src/plugins/mercurial/clonewizardpage.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/commiteditor.cpp b/src/plugins/mercurial/commiteditor.cpp index 175a8df224c..1c7d9fcf757 100644 --- a/src/plugins/mercurial/commiteditor.cpp +++ b/src/plugins/mercurial/commiteditor.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/commiteditor.h b/src/plugins/mercurial/commiteditor.h index 3cb71bf770f..d657c11506e 100644 --- a/src/plugins/mercurial/commiteditor.h +++ b/src/plugins/mercurial/commiteditor.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/constants.h b/src/plugins/mercurial/constants.h index d1ffcda7115..ab74028d75e 100644 --- a/src/plugins/mercurial/constants.h +++ b/src/plugins/mercurial/constants.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialclient.cpp b/src/plugins/mercurial/mercurialclient.cpp index f1969682f51..821c4d53b6c 100644 --- a/src/plugins/mercurial/mercurialclient.cpp +++ b/src/plugins/mercurial/mercurialclient.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialclient.h b/src/plugins/mercurial/mercurialclient.h index 845d2db4786..7ccf999adb9 100644 --- a/src/plugins/mercurial/mercurialclient.h +++ b/src/plugins/mercurial/mercurialclient.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialcommitwidget.cpp b/src/plugins/mercurial/mercurialcommitwidget.cpp index 262994bf566..e366f15ea90 100644 --- a/src/plugins/mercurial/mercurialcommitwidget.cpp +++ b/src/plugins/mercurial/mercurialcommitwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialcommitwidget.h b/src/plugins/mercurial/mercurialcommitwidget.h index e7d1b960ff8..2d23fba5338 100644 --- a/src/plugins/mercurial/mercurialcommitwidget.h +++ b/src/plugins/mercurial/mercurialcommitwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialcontrol.cpp b/src/plugins/mercurial/mercurialcontrol.cpp index 5ab69bc9dd7..753b3c71366 100644 --- a/src/plugins/mercurial/mercurialcontrol.cpp +++ b/src/plugins/mercurial/mercurialcontrol.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialcontrol.h b/src/plugins/mercurial/mercurialcontrol.h index bfd49b0f6f1..067dcf1c787 100644 --- a/src/plugins/mercurial/mercurialcontrol.h +++ b/src/plugins/mercurial/mercurialcontrol.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialeditor.cpp b/src/plugins/mercurial/mercurialeditor.cpp index ca6a62b9fb4..81ed8bb2571 100644 --- a/src/plugins/mercurial/mercurialeditor.cpp +++ b/src/plugins/mercurial/mercurialeditor.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialeditor.h b/src/plugins/mercurial/mercurialeditor.h index ddbefdcce8c..cda4ae94d9c 100644 --- a/src/plugins/mercurial/mercurialeditor.h +++ b/src/plugins/mercurial/mercurialeditor.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialplugin.cpp b/src/plugins/mercurial/mercurialplugin.cpp index 8febeebee6a..8814c4f0eba 100644 --- a/src/plugins/mercurial/mercurialplugin.cpp +++ b/src/plugins/mercurial/mercurialplugin.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialplugin.h b/src/plugins/mercurial/mercurialplugin.h index d34c1b8e958..7c5ab3d2031 100644 --- a/src/plugins/mercurial/mercurialplugin.h +++ b/src/plugins/mercurial/mercurialplugin.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialsettings.cpp b/src/plugins/mercurial/mercurialsettings.cpp index 86ad05b7266..7e4b7bc184b 100644 --- a/src/plugins/mercurial/mercurialsettings.cpp +++ b/src/plugins/mercurial/mercurialsettings.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/mercurialsettings.h b/src/plugins/mercurial/mercurialsettings.h index 6e668f0e614..baba7e0422e 100644 --- a/src/plugins/mercurial/mercurialsettings.h +++ b/src/plugins/mercurial/mercurialsettings.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/optionspage.cpp b/src/plugins/mercurial/optionspage.cpp index 79e5ca41ad3..3139cd61a4d 100644 --- a/src/plugins/mercurial/optionspage.cpp +++ b/src/plugins/mercurial/optionspage.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/optionspage.h b/src/plugins/mercurial/optionspage.h index ff55161a7c9..cb560c3d4b1 100644 --- a/src/plugins/mercurial/optionspage.h +++ b/src/plugins/mercurial/optionspage.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/revertdialog.cpp b/src/plugins/mercurial/revertdialog.cpp index 16b5dc06f93..95e86643615 100644 --- a/src/plugins/mercurial/revertdialog.cpp +++ b/src/plugins/mercurial/revertdialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/revertdialog.h b/src/plugins/mercurial/revertdialog.h index ce9520b57dc..7e40f1ab3dc 100644 --- a/src/plugins/mercurial/revertdialog.h +++ b/src/plugins/mercurial/revertdialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/srcdestdialog.cpp b/src/plugins/mercurial/srcdestdialog.cpp index a5559754aa3..8b45cdd12ae 100644 --- a/src/plugins/mercurial/srcdestdialog.cpp +++ b/src/plugins/mercurial/srcdestdialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/mercurial/srcdestdialog.h b/src/plugins/mercurial/srcdestdialog.h index 0bcdf21a647..5735c6cd662 100644 --- a/src/plugins/mercurial/srcdestdialog.h +++ b/src/plugins/mercurial/srcdestdialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion +** Copyright (c) 2014 Brian McGillion ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/Perforce.pluginspec.in b/src/plugins/perforce/Perforce.pluginspec.in index 2b69c6368d0..97037e8fdfa 100644 --- a/src/plugins/perforce/Perforce.pluginspec.in +++ b/src/plugins/perforce/Perforce.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Perforce\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/perforce/annotationhighlighter.cpp b/src/plugins/perforce/annotationhighlighter.cpp index 93ee74918c4..a5dbb7c5a2b 100644 --- a/src/plugins/perforce/annotationhighlighter.cpp +++ b/src/plugins/perforce/annotationhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/annotationhighlighter.h b/src/plugins/perforce/annotationhighlighter.h index 2d35c04c6e7..56cc86dcb15 100644 --- a/src/plugins/perforce/annotationhighlighter.h +++ b/src/plugins/perforce/annotationhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/changenumberdialog.cpp b/src/plugins/perforce/changenumberdialog.cpp index 445a3f939ef..1d095968a9f 100644 --- a/src/plugins/perforce/changenumberdialog.cpp +++ b/src/plugins/perforce/changenumberdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/changenumberdialog.h b/src/plugins/perforce/changenumberdialog.h index b0b178169e4..d2092bfedac 100644 --- a/src/plugins/perforce/changenumberdialog.h +++ b/src/plugins/perforce/changenumberdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/pendingchangesdialog.cpp b/src/plugins/perforce/pendingchangesdialog.cpp index c4cdaf4d512..a77a3b973e2 100644 --- a/src/plugins/perforce/pendingchangesdialog.cpp +++ b/src/plugins/perforce/pendingchangesdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/pendingchangesdialog.h b/src/plugins/perforce/pendingchangesdialog.h index 9cb227f6dc1..f98b75f7efd 100644 --- a/src/plugins/perforce/pendingchangesdialog.h +++ b/src/plugins/perforce/pendingchangesdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforcechecker.cpp b/src/plugins/perforce/perforcechecker.cpp index 5971c004562..664d820b3ca 100644 --- a/src/plugins/perforce/perforcechecker.cpp +++ b/src/plugins/perforce/perforcechecker.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforcechecker.h b/src/plugins/perforce/perforcechecker.h index e466250c274..3422d383bf0 100644 --- a/src/plugins/perforce/perforcechecker.h +++ b/src/plugins/perforce/perforcechecker.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforceconstants.h b/src/plugins/perforce/perforceconstants.h index 316fc2483c3..4d9bbef1056 100644 --- a/src/plugins/perforce/perforceconstants.h +++ b/src/plugins/perforce/perforceconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforceeditor.cpp b/src/plugins/perforce/perforceeditor.cpp index a859a77fe6c..5865a09bd54 100644 --- a/src/plugins/perforce/perforceeditor.cpp +++ b/src/plugins/perforce/perforceeditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforceeditor.h b/src/plugins/perforce/perforceeditor.h index 6f8163d23c4..1abc5227ade 100644 --- a/src/plugins/perforce/perforceeditor.h +++ b/src/plugins/perforce/perforceeditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforceplugin.cpp b/src/plugins/perforce/perforceplugin.cpp index 69dcc62fbcb..63872df6227 100644 --- a/src/plugins/perforce/perforceplugin.cpp +++ b/src/plugins/perforce/perforceplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforceplugin.h b/src/plugins/perforce/perforceplugin.h index b03fab15c9d..7337181b223 100644 --- a/src/plugins/perforce/perforceplugin.h +++ b/src/plugins/perforce/perforceplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforcesettings.cpp b/src/plugins/perforce/perforcesettings.cpp index 822f4f90bbe..9a9f301795a 100644 --- a/src/plugins/perforce/perforcesettings.cpp +++ b/src/plugins/perforce/perforcesettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforcesettings.h b/src/plugins/perforce/perforcesettings.h index 17a7fdca3be..a6a8f916788 100644 --- a/src/plugins/perforce/perforcesettings.h +++ b/src/plugins/perforce/perforcesettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforcesubmiteditor.cpp b/src/plugins/perforce/perforcesubmiteditor.cpp index ef910427ba8..eb1b3d2f2f0 100644 --- a/src/plugins/perforce/perforcesubmiteditor.cpp +++ b/src/plugins/perforce/perforcesubmiteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforcesubmiteditor.h b/src/plugins/perforce/perforcesubmiteditor.h index 9baf78ac88c..129114d889b 100644 --- a/src/plugins/perforce/perforcesubmiteditor.h +++ b/src/plugins/perforce/perforcesubmiteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforcesubmiteditorwidget.cpp b/src/plugins/perforce/perforcesubmiteditorwidget.cpp index be1ef9c2bbc..15bef004d13 100644 --- a/src/plugins/perforce/perforcesubmiteditorwidget.cpp +++ b/src/plugins/perforce/perforcesubmiteditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforcesubmiteditorwidget.h b/src/plugins/perforce/perforcesubmiteditorwidget.h index f0acd1c8974..9447fff5352 100644 --- a/src/plugins/perforce/perforcesubmiteditorwidget.h +++ b/src/plugins/perforce/perforcesubmiteditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforceversioncontrol.cpp b/src/plugins/perforce/perforceversioncontrol.cpp index e406d84b609..970f078cabf 100644 --- a/src/plugins/perforce/perforceversioncontrol.cpp +++ b/src/plugins/perforce/perforceversioncontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/perforceversioncontrol.h b/src/plugins/perforce/perforceversioncontrol.h index 38aed32304b..085eed0aab8 100644 --- a/src/plugins/perforce/perforceversioncontrol.h +++ b/src/plugins/perforce/perforceversioncontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/settingspage.cpp b/src/plugins/perforce/settingspage.cpp index 7c159d4791b..d2bae1dc2dc 100644 --- a/src/plugins/perforce/settingspage.cpp +++ b/src/plugins/perforce/settingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/perforce/settingspage.h b/src/plugins/perforce/settingspage.h index bf12f865410..84fba4f8417 100644 --- a/src/plugins/perforce/settingspage.h +++ b/src/plugins/perforce/settingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/ProjectExplorer.pluginspec.in b/src/plugins/projectexplorer/ProjectExplorer.pluginspec.in index bf58664ad0b..62b797fad82 100644 --- a/src/plugins/projectexplorer/ProjectExplorer.pluginspec.in +++ b/src/plugins/projectexplorer/ProjectExplorer.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"ProjectExplorer\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/projectexplorer/abi.cpp b/src/plugins/projectexplorer/abi.cpp index aafe96ccd95..a46ee0a0f4b 100644 --- a/src/plugins/projectexplorer/abi.cpp +++ b/src/plugins/projectexplorer/abi.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/abi.h b/src/plugins/projectexplorer/abi.h index e7e7a9669ea..6b4c090b0ea 100644 --- a/src/plugins/projectexplorer/abi.h +++ b/src/plugins/projectexplorer/abi.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/abiwidget.cpp b/src/plugins/projectexplorer/abiwidget.cpp index b6851a7ee91..db232add026 100644 --- a/src/plugins/projectexplorer/abiwidget.cpp +++ b/src/plugins/projectexplorer/abiwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/abiwidget.h b/src/plugins/projectexplorer/abiwidget.h index 209c76c6cde..55d5a0934fe 100644 --- a/src/plugins/projectexplorer/abiwidget.h +++ b/src/plugins/projectexplorer/abiwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/abstractmsvctoolchain.cpp b/src/plugins/projectexplorer/abstractmsvctoolchain.cpp index 8660dcaff74..f71c1892cc9 100644 --- a/src/plugins/projectexplorer/abstractmsvctoolchain.cpp +++ b/src/plugins/projectexplorer/abstractmsvctoolchain.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/abstractmsvctoolchain.h b/src/plugins/projectexplorer/abstractmsvctoolchain.h index 13ec2dbb783..950c51b1595 100644 --- a/src/plugins/projectexplorer/abstractmsvctoolchain.h +++ b/src/plugins/projectexplorer/abstractmsvctoolchain.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/abstractprocessstep.cpp b/src/plugins/projectexplorer/abstractprocessstep.cpp index a9933d3ffc5..01ce341880e 100644 --- a/src/plugins/projectexplorer/abstractprocessstep.cpp +++ b/src/plugins/projectexplorer/abstractprocessstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/abstractprocessstep.h b/src/plugins/projectexplorer/abstractprocessstep.h index 9ad22574dee..aa9d0ebfd0f 100644 --- a/src/plugins/projectexplorer/abstractprocessstep.h +++ b/src/plugins/projectexplorer/abstractprocessstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/allprojectsfilter.cpp b/src/plugins/projectexplorer/allprojectsfilter.cpp index 32a0aeb7512..0c45806127d 100644 --- a/src/plugins/projectexplorer/allprojectsfilter.cpp +++ b/src/plugins/projectexplorer/allprojectsfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/allprojectsfilter.h b/src/plugins/projectexplorer/allprojectsfilter.h index dbdbebe7f28..38dae1ae148 100644 --- a/src/plugins/projectexplorer/allprojectsfilter.h +++ b/src/plugins/projectexplorer/allprojectsfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/allprojectsfind.cpp b/src/plugins/projectexplorer/allprojectsfind.cpp index 27a9e14060a..cc93ff2af2b 100644 --- a/src/plugins/projectexplorer/allprojectsfind.cpp +++ b/src/plugins/projectexplorer/allprojectsfind.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/allprojectsfind.h b/src/plugins/projectexplorer/allprojectsfind.h index 7781e2fdef6..c51a7f9ecb8 100644 --- a/src/plugins/projectexplorer/allprojectsfind.h +++ b/src/plugins/projectexplorer/allprojectsfind.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/ansifilterparser.cpp b/src/plugins/projectexplorer/ansifilterparser.cpp index 9d2289f1fc2..e633228bc48 100644 --- a/src/plugins/projectexplorer/ansifilterparser.cpp +++ b/src/plugins/projectexplorer/ansifilterparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/ansifilterparser.h b/src/plugins/projectexplorer/ansifilterparser.h index a68a19b9948..5ed0d744aa0 100644 --- a/src/plugins/projectexplorer/ansifilterparser.h +++ b/src/plugins/projectexplorer/ansifilterparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/applicationlauncher.cpp b/src/plugins/projectexplorer/applicationlauncher.cpp index e04b94731d8..6464d536db8 100644 --- a/src/plugins/projectexplorer/applicationlauncher.cpp +++ b/src/plugins/projectexplorer/applicationlauncher.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h index 3744bab624f..ad737c3ba75 100644 --- a/src/plugins/projectexplorer/applicationlauncher.h +++ b/src/plugins/projectexplorer/applicationlauncher.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/appoutputpane.cpp b/src/plugins/projectexplorer/appoutputpane.cpp index 74917d06d7d..6606fd6127b 100644 --- a/src/plugins/projectexplorer/appoutputpane.cpp +++ b/src/plugins/projectexplorer/appoutputpane.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/appoutputpane.h b/src/plugins/projectexplorer/appoutputpane.h index af9dc3fa0bb..7929ea8c054 100644 --- a/src/plugins/projectexplorer/appoutputpane.h +++ b/src/plugins/projectexplorer/appoutputpane.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/baseprojectwizarddialog.cpp b/src/plugins/projectexplorer/baseprojectwizarddialog.cpp index e7086f5a16a..7060bbc78cb 100644 --- a/src/plugins/projectexplorer/baseprojectwizarddialog.cpp +++ b/src/plugins/projectexplorer/baseprojectwizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/baseprojectwizarddialog.h b/src/plugins/projectexplorer/baseprojectwizarddialog.h index 1a2cfe051cf..4b630b81f94 100644 --- a/src/plugins/projectexplorer/baseprojectwizarddialog.h +++ b/src/plugins/projectexplorer/baseprojectwizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildconfiguration.cpp b/src/plugins/projectexplorer/buildconfiguration.cpp index fb1f5a32c62..15d4242ba84 100644 --- a/src/plugins/projectexplorer/buildconfiguration.cpp +++ b/src/plugins/projectexplorer/buildconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildconfiguration.h b/src/plugins/projectexplorer/buildconfiguration.h index 452a73f4857..a2911fb1207 100644 --- a/src/plugins/projectexplorer/buildconfiguration.h +++ b/src/plugins/projectexplorer/buildconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildconfigurationmodel.cpp b/src/plugins/projectexplorer/buildconfigurationmodel.cpp index 8d56e72e0eb..641af4b9316 100644 --- a/src/plugins/projectexplorer/buildconfigurationmodel.cpp +++ b/src/plugins/projectexplorer/buildconfigurationmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildconfigurationmodel.h b/src/plugins/projectexplorer/buildconfigurationmodel.h index c951f7d1c65..994bd90d2ba 100644 --- a/src/plugins/projectexplorer/buildconfigurationmodel.h +++ b/src/plugins/projectexplorer/buildconfigurationmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildenvironmentwidget.cpp b/src/plugins/projectexplorer/buildenvironmentwidget.cpp index fb4faa01b67..fa7026e738b 100644 --- a/src/plugins/projectexplorer/buildenvironmentwidget.cpp +++ b/src/plugins/projectexplorer/buildenvironmentwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildenvironmentwidget.h b/src/plugins/projectexplorer/buildenvironmentwidget.h index 3d34f483200..8ff7b18f553 100644 --- a/src/plugins/projectexplorer/buildenvironmentwidget.h +++ b/src/plugins/projectexplorer/buildenvironmentwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildinfo.h b/src/plugins/projectexplorer/buildinfo.h index 43fe6bc52b6..79ac02ea5d8 100644 --- a/src/plugins/projectexplorer/buildinfo.h +++ b/src/plugins/projectexplorer/buildinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildmanager.cpp b/src/plugins/projectexplorer/buildmanager.cpp index 14c62c4bb4d..3ff46559f34 100644 --- a/src/plugins/projectexplorer/buildmanager.cpp +++ b/src/plugins/projectexplorer/buildmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildmanager.h b/src/plugins/projectexplorer/buildmanager.h index 0e093b60ef1..3e82ac17be8 100644 --- a/src/plugins/projectexplorer/buildmanager.h +++ b/src/plugins/projectexplorer/buildmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildprogress.cpp b/src/plugins/projectexplorer/buildprogress.cpp index a2845bfed45..504be802792 100644 --- a/src/plugins/projectexplorer/buildprogress.cpp +++ b/src/plugins/projectexplorer/buildprogress.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildprogress.h b/src/plugins/projectexplorer/buildprogress.h index 31bf62c8739..320f1032398 100644 --- a/src/plugins/projectexplorer/buildprogress.h +++ b/src/plugins/projectexplorer/buildprogress.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildsettingspropertiespage.cpp b/src/plugins/projectexplorer/buildsettingspropertiespage.cpp index ced35e0b85e..976f748240f 100644 --- a/src/plugins/projectexplorer/buildsettingspropertiespage.cpp +++ b/src/plugins/projectexplorer/buildsettingspropertiespage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildsettingspropertiespage.h b/src/plugins/projectexplorer/buildsettingspropertiespage.h index 67e84a67a7b..35333f8a4d4 100644 --- a/src/plugins/projectexplorer/buildsettingspropertiespage.h +++ b/src/plugins/projectexplorer/buildsettingspropertiespage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildstep.cpp b/src/plugins/projectexplorer/buildstep.cpp index 22fe07b4e0c..cec7d4cfa0b 100644 --- a/src/plugins/projectexplorer/buildstep.cpp +++ b/src/plugins/projectexplorer/buildstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildstep.h b/src/plugins/projectexplorer/buildstep.h index 5a81920c45d..ca9b536b508 100644 --- a/src/plugins/projectexplorer/buildstep.h +++ b/src/plugins/projectexplorer/buildstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildsteplist.cpp b/src/plugins/projectexplorer/buildsteplist.cpp index 07ada0e4657..cda68083738 100644 --- a/src/plugins/projectexplorer/buildsteplist.cpp +++ b/src/plugins/projectexplorer/buildsteplist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildsteplist.h b/src/plugins/projectexplorer/buildsteplist.h index bf3d697ed40..dbf1268d54f 100644 --- a/src/plugins/projectexplorer/buildsteplist.h +++ b/src/plugins/projectexplorer/buildsteplist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildstepspage.cpp b/src/plugins/projectexplorer/buildstepspage.cpp index bcc2b3d0fd2..e013a54dbd6 100644 --- a/src/plugins/projectexplorer/buildstepspage.cpp +++ b/src/plugins/projectexplorer/buildstepspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildstepspage.h b/src/plugins/projectexplorer/buildstepspage.h index 2162d01bdd2..8f1ea27771b 100644 --- a/src/plugins/projectexplorer/buildstepspage.h +++ b/src/plugins/projectexplorer/buildstepspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/buildtargetinfo.h b/src/plugins/projectexplorer/buildtargetinfo.h index 526a1072b38..fa59ca566e5 100644 --- a/src/plugins/projectexplorer/buildtargetinfo.h +++ b/src/plugins/projectexplorer/buildtargetinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/cesdkhandler.cpp b/src/plugins/projectexplorer/cesdkhandler.cpp index 261506ed768..f901a1023eb 100644 --- a/src/plugins/projectexplorer/cesdkhandler.cpp +++ b/src/plugins/projectexplorer/cesdkhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/cesdkhandler.h b/src/plugins/projectexplorer/cesdkhandler.h index f6056dcfa99..d5e295b7984 100644 --- a/src/plugins/projectexplorer/cesdkhandler.h +++ b/src/plugins/projectexplorer/cesdkhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/clangparser.cpp b/src/plugins/projectexplorer/clangparser.cpp index 7dd515ab981..88747a054e1 100644 --- a/src/plugins/projectexplorer/clangparser.cpp +++ b/src/plugins/projectexplorer/clangparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/clangparser.h b/src/plugins/projectexplorer/clangparser.h index 3734ef8978d..af646e70cae 100644 --- a/src/plugins/projectexplorer/clangparser.h +++ b/src/plugins/projectexplorer/clangparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/codestylesettingspropertiespage.cpp b/src/plugins/projectexplorer/codestylesettingspropertiespage.cpp index 8cb5ebe29c9..fede40f9eaf 100644 --- a/src/plugins/projectexplorer/codestylesettingspropertiespage.cpp +++ b/src/plugins/projectexplorer/codestylesettingspropertiespage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/codestylesettingspropertiespage.h b/src/plugins/projectexplorer/codestylesettingspropertiespage.h index beb239ea872..e2cb64a1fc4 100644 --- a/src/plugins/projectexplorer/codestylesettingspropertiespage.h +++ b/src/plugins/projectexplorer/codestylesettingspropertiespage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/compileoutputwindow.cpp b/src/plugins/projectexplorer/compileoutputwindow.cpp index 0507a6c19ba..539ad34f45b 100644 --- a/src/plugins/projectexplorer/compileoutputwindow.cpp +++ b/src/plugins/projectexplorer/compileoutputwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/compileoutputwindow.h b/src/plugins/projectexplorer/compileoutputwindow.h index 5afd43fd05a..aad745a1e20 100644 --- a/src/plugins/projectexplorer/compileoutputwindow.h +++ b/src/plugins/projectexplorer/compileoutputwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/copytaskhandler.cpp b/src/plugins/projectexplorer/copytaskhandler.cpp index 1b641a7ce17..cca6e956347 100644 --- a/src/plugins/projectexplorer/copytaskhandler.cpp +++ b/src/plugins/projectexplorer/copytaskhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/copytaskhandler.h b/src/plugins/projectexplorer/copytaskhandler.h index 0931ff520f9..bfc63143c97 100644 --- a/src/plugins/projectexplorer/copytaskhandler.h +++ b/src/plugins/projectexplorer/copytaskhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/corelistenercheckingforrunningbuild.cpp b/src/plugins/projectexplorer/corelistenercheckingforrunningbuild.cpp index 114014170c7..8e4b313bdae 100644 --- a/src/plugins/projectexplorer/corelistenercheckingforrunningbuild.cpp +++ b/src/plugins/projectexplorer/corelistenercheckingforrunningbuild.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/corelistenercheckingforrunningbuild.h b/src/plugins/projectexplorer/corelistenercheckingforrunningbuild.h index ed1b331acc6..d12c5400bd9 100644 --- a/src/plugins/projectexplorer/corelistenercheckingforrunningbuild.h +++ b/src/plugins/projectexplorer/corelistenercheckingforrunningbuild.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/currentprojectfilter.cpp b/src/plugins/projectexplorer/currentprojectfilter.cpp index 2ffe109d7aa..0d05f8ff910 100644 --- a/src/plugins/projectexplorer/currentprojectfilter.cpp +++ b/src/plugins/projectexplorer/currentprojectfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/currentprojectfilter.h b/src/plugins/projectexplorer/currentprojectfilter.h index f47581e8257..f932b5aa207 100644 --- a/src/plugins/projectexplorer/currentprojectfilter.h +++ b/src/plugins/projectexplorer/currentprojectfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/currentprojectfind.cpp b/src/plugins/projectexplorer/currentprojectfind.cpp index db875e6ad79..c0b89a8bfba 100644 --- a/src/plugins/projectexplorer/currentprojectfind.cpp +++ b/src/plugins/projectexplorer/currentprojectfind.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/currentprojectfind.h b/src/plugins/projectexplorer/currentprojectfind.h index a3e23f77c7f..458259b881d 100644 --- a/src/plugins/projectexplorer/currentprojectfind.h +++ b/src/plugins/projectexplorer/currentprojectfind.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customparser.cpp b/src/plugins/projectexplorer/customparser.cpp index 4df78c2e5dc..0c824eac9fb 100644 --- a/src/plugins/projectexplorer/customparser.cpp +++ b/src/plugins/projectexplorer/customparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Andre Hartmann. +** Copyright (C) 2014 Andre Hartmann. ** Contact: aha_1980@gmx.de ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customparser.h b/src/plugins/projectexplorer/customparser.h index 933826a023b..2326f2fa3b6 100644 --- a/src/plugins/projectexplorer/customparser.h +++ b/src/plugins/projectexplorer/customparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Andre Hartmann. +** Copyright (C) 2014 Andre Hartmann. ** Contact: aha_1980@gmx.de ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customparserconfigdialog.cpp b/src/plugins/projectexplorer/customparserconfigdialog.cpp index 2a6c0f72024..e5d7b70f0e1 100644 --- a/src/plugins/projectexplorer/customparserconfigdialog.cpp +++ b/src/plugins/projectexplorer/customparserconfigdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Andre Hartmann. +** Copyright (C) 2014 Andre Hartmann. ** Contact: aha_1980@gmx.de ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customparserconfigdialog.h b/src/plugins/projectexplorer/customparserconfigdialog.h index 1f0e43be832..960d4980ac1 100644 --- a/src/plugins/projectexplorer/customparserconfigdialog.h +++ b/src/plugins/projectexplorer/customparserconfigdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Andre Hartmann. +** Copyright (C) 2014 Andre Hartmann. ** Contact: aha_1980@gmx.de ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customtoolchain.cpp b/src/plugins/projectexplorer/customtoolchain.cpp index 98b881d74a0..490350bdc63 100644 --- a/src/plugins/projectexplorer/customtoolchain.cpp +++ b/src/plugins/projectexplorer/customtoolchain.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customtoolchain.h b/src/plugins/projectexplorer/customtoolchain.h index a344f605a9b..b934b8529a1 100644 --- a/src/plugins/projectexplorer/customtoolchain.h +++ b/src/plugins/projectexplorer/customtoolchain.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizard.cpp b/src/plugins/projectexplorer/customwizard/customwizard.cpp index d909765204b..30c51c7066d 100644 --- a/src/plugins/projectexplorer/customwizard/customwizard.cpp +++ b/src/plugins/projectexplorer/customwizard/customwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizard.h b/src/plugins/projectexplorer/customwizard/customwizard.h index 5aca2a6d394..948c22aadfc 100644 --- a/src/plugins/projectexplorer/customwizard/customwizard.h +++ b/src/plugins/projectexplorer/customwizard/customwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizardpage.cpp b/src/plugins/projectexplorer/customwizard/customwizardpage.cpp index dc9e218d71d..8fba42afce5 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardpage.cpp +++ b/src/plugins/projectexplorer/customwizard/customwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizardpage.h b/src/plugins/projectexplorer/customwizard/customwizardpage.h index 21ded031c54..e3538c560df 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardpage.h +++ b/src/plugins/projectexplorer/customwizard/customwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp b/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp index 8cb99a3d93f..976cf733cbc 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp +++ b/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizardparameters.h b/src/plugins/projectexplorer/customwizard/customwizardparameters.h index cd531d2b74c..3d92e6634af 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardparameters.h +++ b/src/plugins/projectexplorer/customwizard/customwizardparameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizardpreprocessor.cpp b/src/plugins/projectexplorer/customwizard/customwizardpreprocessor.cpp index 88847722635..4723f9f5b4d 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardpreprocessor.cpp +++ b/src/plugins/projectexplorer/customwizard/customwizardpreprocessor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizardpreprocessor.h b/src/plugins/projectexplorer/customwizard/customwizardpreprocessor.h index fc6a6829078..1dce85432e6 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardpreprocessor.h +++ b/src/plugins/projectexplorer/customwizard/customwizardpreprocessor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.cpp b/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.cpp index 23355590c18..ffc34798d35 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.cpp +++ b/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.h b/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.h index 3ecb0899275..bc12cd0c1c9 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.h +++ b/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/dependenciespanel.cpp b/src/plugins/projectexplorer/dependenciespanel.cpp index 50a71b706e0..3982d0e3831 100644 --- a/src/plugins/projectexplorer/dependenciespanel.cpp +++ b/src/plugins/projectexplorer/dependenciespanel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/dependenciespanel.h b/src/plugins/projectexplorer/dependenciespanel.h index b7cada22371..7dcea402c45 100644 --- a/src/plugins/projectexplorer/dependenciespanel.h +++ b/src/plugins/projectexplorer/dependenciespanel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/deployablefile.cpp b/src/plugins/projectexplorer/deployablefile.cpp index 84d70ad3a51..b2f78906024 100644 --- a/src/plugins/projectexplorer/deployablefile.cpp +++ b/src/plugins/projectexplorer/deployablefile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/deployablefile.h b/src/plugins/projectexplorer/deployablefile.h index 59ec5e494a6..5dae58b491b 100644 --- a/src/plugins/projectexplorer/deployablefile.h +++ b/src/plugins/projectexplorer/deployablefile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/deployconfiguration.cpp b/src/plugins/projectexplorer/deployconfiguration.cpp index 91c867ebdcf..0756f081330 100644 --- a/src/plugins/projectexplorer/deployconfiguration.cpp +++ b/src/plugins/projectexplorer/deployconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/deployconfiguration.h b/src/plugins/projectexplorer/deployconfiguration.h index 0ff4c5648f0..0811a2c8133 100644 --- a/src/plugins/projectexplorer/deployconfiguration.h +++ b/src/plugins/projectexplorer/deployconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/deployconfigurationmodel.cpp b/src/plugins/projectexplorer/deployconfigurationmodel.cpp index 2f30be1451b..3357ad96490 100644 --- a/src/plugins/projectexplorer/deployconfigurationmodel.cpp +++ b/src/plugins/projectexplorer/deployconfigurationmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/deployconfigurationmodel.h b/src/plugins/projectexplorer/deployconfigurationmodel.h index bfa097bbcd2..1c428940ca8 100644 --- a/src/plugins/projectexplorer/deployconfigurationmodel.h +++ b/src/plugins/projectexplorer/deployconfigurationmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/deploymentdata.h b/src/plugins/projectexplorer/deploymentdata.h index b63c3dfdf3b..d70daafb1bd 100644 --- a/src/plugins/projectexplorer/deploymentdata.h +++ b/src/plugins/projectexplorer/deploymentdata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopdevice.cpp b/src/plugins/projectexplorer/devicesupport/desktopdevice.cpp index 38bd39b6ebe..7684aa81c77 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopdevice.cpp +++ b/src/plugins/projectexplorer/devicesupport/desktopdevice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopdevice.h b/src/plugins/projectexplorer/devicesupport/desktopdevice.h index e83783e1bf4..bcbe2674641 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopdevice.h +++ b/src/plugins/projectexplorer/devicesupport/desktopdevice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopdeviceconfigurationwidget.cpp b/src/plugins/projectexplorer/devicesupport/desktopdeviceconfigurationwidget.cpp index 155f59e78da..a4e3a20aa05 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopdeviceconfigurationwidget.cpp +++ b/src/plugins/projectexplorer/devicesupport/desktopdeviceconfigurationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopdeviceconfigurationwidget.h b/src/plugins/projectexplorer/devicesupport/desktopdeviceconfigurationwidget.h index d0a56701a79..2c54e519d24 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopdeviceconfigurationwidget.h +++ b/src/plugins/projectexplorer/devicesupport/desktopdeviceconfigurationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopdevicefactory.cpp b/src/plugins/projectexplorer/devicesupport/desktopdevicefactory.cpp index ca2817dcb68..5d585b5bde6 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopdevicefactory.cpp +++ b/src/plugins/projectexplorer/devicesupport/desktopdevicefactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopdevicefactory.h b/src/plugins/projectexplorer/devicesupport/desktopdevicefactory.h index 852b2085294..634d7f1e9b0 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopdevicefactory.h +++ b/src/plugins/projectexplorer/devicesupport/desktopdevicefactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopdeviceprocess.cpp b/src/plugins/projectexplorer/devicesupport/desktopdeviceprocess.cpp index eb7f3b4f650..d174399230a 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopdeviceprocess.cpp +++ b/src/plugins/projectexplorer/devicesupport/desktopdeviceprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopdeviceprocess.h b/src/plugins/projectexplorer/devicesupport/desktopdeviceprocess.h index 8d1f68db11c..59c067c59eb 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopdeviceprocess.h +++ b/src/plugins/projectexplorer/devicesupport/desktopdeviceprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.cpp b/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.cpp index fa6c39a271c..a2e6a07b5c1 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.cpp +++ b/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.h b/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.h index cca2018442b..fc8951fee1b 100644 --- a/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.h +++ b/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceapplicationrunner.cpp b/src/plugins/projectexplorer/devicesupport/deviceapplicationrunner.cpp index be3ba91a5f9..04d0fc9b919 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceapplicationrunner.cpp +++ b/src/plugins/projectexplorer/devicesupport/deviceapplicationrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceapplicationrunner.h b/src/plugins/projectexplorer/devicesupport/deviceapplicationrunner.h index 7481ac0271d..25cd362b7e5 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceapplicationrunner.h +++ b/src/plugins/projectexplorer/devicesupport/deviceapplicationrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.cpp b/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.cpp index d50477dd23a..42e3273105e 100644 --- a/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.cpp +++ b/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2011 - 2013 Research In Motion +** Copyright (C) 2011 - 2014 Research In Motion ** ** Contact: Research In Motion (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.h b/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.h index 96f982e6496..51001610dec 100644 --- a/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.h +++ b/src/plugins/projectexplorer/devicesupport/devicecheckbuildstep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2011 - 2013 Research In Motion +** Copyright (C) 2011 - 2014 Research In Motion ** ** Contact: Research In Motion (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp b/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp index 93625d2b932..bef761074c4 100644 --- a/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp +++ b/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.h b/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.h index 1ceb0565e7d..adab6bc96e1 100644 --- a/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.h +++ b/src/plugins/projectexplorer/devicesupport/devicefactoryselectiondialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicemanager.cpp b/src/plugins/projectexplorer/devicesupport/devicemanager.cpp index 81328e8f115..766de95002b 100644 --- a/src/plugins/projectexplorer/devicesupport/devicemanager.cpp +++ b/src/plugins/projectexplorer/devicesupport/devicemanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicemanager.h b/src/plugins/projectexplorer/devicesupport/devicemanager.h index a2a66561469..610925616f4 100644 --- a/src/plugins/projectexplorer/devicesupport/devicemanager.h +++ b/src/plugins/projectexplorer/devicesupport/devicemanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicemanagermodel.cpp b/src/plugins/projectexplorer/devicesupport/devicemanagermodel.cpp index 67c173f13e5..ca58a654824 100644 --- a/src/plugins/projectexplorer/devicesupport/devicemanagermodel.cpp +++ b/src/plugins/projectexplorer/devicesupport/devicemanagermodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicemanagermodel.h b/src/plugins/projectexplorer/devicesupport/devicemanagermodel.h index c162a12f163..20c91df404a 100644 --- a/src/plugins/projectexplorer/devicesupport/devicemanagermodel.h +++ b/src/plugins/projectexplorer/devicesupport/devicemanagermodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceprocess.cpp b/src/plugins/projectexplorer/devicesupport/deviceprocess.cpp index aa2f8c748c8..6a1087c9afe 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceprocess.cpp +++ b/src/plugins/projectexplorer/devicesupport/deviceprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceprocess.h b/src/plugins/projectexplorer/devicesupport/deviceprocess.h index ebaf2b6ef3b..2ca419b1cfd 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceprocess.h +++ b/src/plugins/projectexplorer/devicesupport/deviceprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.cpp b/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.cpp index bda48425b04..c31a8fb7a5c 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.cpp +++ b/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.h b/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.h index 8ab99e9022d..f221d32b939 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.h +++ b/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceprocesslist.cpp b/src/plugins/projectexplorer/devicesupport/deviceprocesslist.cpp index 1eca3c7e1b4..77900322a1d 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceprocesslist.cpp +++ b/src/plugins/projectexplorer/devicesupport/deviceprocesslist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceprocesslist.h b/src/plugins/projectexplorer/devicesupport/deviceprocesslist.h index 915b0676aa1..ef5b08235a3 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceprocesslist.h +++ b/src/plugins/projectexplorer/devicesupport/deviceprocesslist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicesettingspage.cpp b/src/plugins/projectexplorer/devicesupport/devicesettingspage.cpp index 13aa949d8fd..d31973b04f7 100644 --- a/src/plugins/projectexplorer/devicesupport/devicesettingspage.cpp +++ b/src/plugins/projectexplorer/devicesupport/devicesettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicesettingspage.h b/src/plugins/projectexplorer/devicesupport/devicesettingspage.h index 676b8e2b560..27196947975 100644 --- a/src/plugins/projectexplorer/devicesupport/devicesettingspage.h +++ b/src/plugins/projectexplorer/devicesupport/devicesettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicesettingswidget.cpp b/src/plugins/projectexplorer/devicesupport/devicesettingswidget.cpp index b7f62a22a94..b100d0d1b3d 100644 --- a/src/plugins/projectexplorer/devicesupport/devicesettingswidget.cpp +++ b/src/plugins/projectexplorer/devicesupport/devicesettingswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicesettingswidget.h b/src/plugins/projectexplorer/devicesupport/devicesettingswidget.h index c953fb9a959..e69baeed2cd 100644 --- a/src/plugins/projectexplorer/devicesupport/devicesettingswidget.h +++ b/src/plugins/projectexplorer/devicesupport/devicesettingswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicetestdialog.cpp b/src/plugins/projectexplorer/devicesupport/devicetestdialog.cpp index ef09413a2ff..31eb0b1a5ef 100644 --- a/src/plugins/projectexplorer/devicesupport/devicetestdialog.cpp +++ b/src/plugins/projectexplorer/devicesupport/devicetestdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/devicetestdialog.h b/src/plugins/projectexplorer/devicesupport/devicetestdialog.h index e07493e3987..181650c8aea 100644 --- a/src/plugins/projectexplorer/devicesupport/devicetestdialog.h +++ b/src/plugins/projectexplorer/devicesupport/devicetestdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceusedportsgatherer.cpp b/src/plugins/projectexplorer/devicesupport/deviceusedportsgatherer.cpp index 2e89492e5f5..134c61b93bd 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceusedportsgatherer.cpp +++ b/src/plugins/projectexplorer/devicesupport/deviceusedportsgatherer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/deviceusedportsgatherer.h b/src/plugins/projectexplorer/devicesupport/deviceusedportsgatherer.h index 126be31d41d..3879b805682 100644 --- a/src/plugins/projectexplorer/devicesupport/deviceusedportsgatherer.h +++ b/src/plugins/projectexplorer/devicesupport/deviceusedportsgatherer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/idevice.cpp b/src/plugins/projectexplorer/devicesupport/idevice.cpp index 42a67dac324..142974335d5 100644 --- a/src/plugins/projectexplorer/devicesupport/idevice.cpp +++ b/src/plugins/projectexplorer/devicesupport/idevice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/idevice.h b/src/plugins/projectexplorer/devicesupport/idevice.h index 2583ab1c984..ddcc00876d8 100644 --- a/src/plugins/projectexplorer/devicesupport/idevice.h +++ b/src/plugins/projectexplorer/devicesupport/idevice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/idevicefactory.cpp b/src/plugins/projectexplorer/devicesupport/idevicefactory.cpp index d75ec1cde32..1a7328ee661 100644 --- a/src/plugins/projectexplorer/devicesupport/idevicefactory.cpp +++ b/src/plugins/projectexplorer/devicesupport/idevicefactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/idevicefactory.h b/src/plugins/projectexplorer/devicesupport/idevicefactory.h index 5f9da636207..f282b79936d 100644 --- a/src/plugins/projectexplorer/devicesupport/idevicefactory.h +++ b/src/plugins/projectexplorer/devicesupport/idevicefactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/idevicewidget.cpp b/src/plugins/projectexplorer/devicesupport/idevicewidget.cpp index c7b0be4ee43..6d1e4553a9e 100644 --- a/src/plugins/projectexplorer/devicesupport/idevicewidget.cpp +++ b/src/plugins/projectexplorer/devicesupport/idevicewidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/idevicewidget.h b/src/plugins/projectexplorer/devicesupport/idevicewidget.h index 9c728ddd519..cfe0e44a9c4 100644 --- a/src/plugins/projectexplorer/devicesupport/idevicewidget.h +++ b/src/plugins/projectexplorer/devicesupport/idevicewidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/localprocesslist.cpp b/src/plugins/projectexplorer/devicesupport/localprocesslist.cpp index 963895b4a72..bd12873349d 100644 --- a/src/plugins/projectexplorer/devicesupport/localprocesslist.cpp +++ b/src/plugins/projectexplorer/devicesupport/localprocesslist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/localprocesslist.h b/src/plugins/projectexplorer/devicesupport/localprocesslist.h index 8588065ca82..e6c351186f2 100644 --- a/src/plugins/projectexplorer/devicesupport/localprocesslist.h +++ b/src/plugins/projectexplorer/devicesupport/localprocesslist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp index 0346bafb20e..a6585d0a7a6 100644 --- a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp +++ b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.h b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.h index 90f413bbe60..6a18abbb1c5 100644 --- a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.h +++ b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/sshdeviceprocesslist.cpp b/src/plugins/projectexplorer/devicesupport/sshdeviceprocesslist.cpp index 1970c588c71..6d878c15e2f 100644 --- a/src/plugins/projectexplorer/devicesupport/sshdeviceprocesslist.cpp +++ b/src/plugins/projectexplorer/devicesupport/sshdeviceprocesslist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/devicesupport/sshdeviceprocesslist.h b/src/plugins/projectexplorer/devicesupport/sshdeviceprocesslist.h index 62d5548f950..0651b8b15be 100644 --- a/src/plugins/projectexplorer/devicesupport/sshdeviceprocesslist.h +++ b/src/plugins/projectexplorer/devicesupport/sshdeviceprocesslist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/doubletabwidget.cpp b/src/plugins/projectexplorer/doubletabwidget.cpp index 08bd1eb0dc0..6e3a65b4a0c 100644 --- a/src/plugins/projectexplorer/doubletabwidget.cpp +++ b/src/plugins/projectexplorer/doubletabwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/doubletabwidget.h b/src/plugins/projectexplorer/doubletabwidget.h index a7ce2d9da67..99cd8bfb9c8 100644 --- a/src/plugins/projectexplorer/doubletabwidget.h +++ b/src/plugins/projectexplorer/doubletabwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/editorconfiguration.cpp b/src/plugins/projectexplorer/editorconfiguration.cpp index 5ffc9b864a0..10f27bbc388 100644 --- a/src/plugins/projectexplorer/editorconfiguration.cpp +++ b/src/plugins/projectexplorer/editorconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/editorconfiguration.h b/src/plugins/projectexplorer/editorconfiguration.h index d5a50d6c068..8e64837e001 100644 --- a/src/plugins/projectexplorer/editorconfiguration.h +++ b/src/plugins/projectexplorer/editorconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/editorsettingspropertiespage.cpp b/src/plugins/projectexplorer/editorsettingspropertiespage.cpp index 9943faa2bec..e2e4526102d 100644 --- a/src/plugins/projectexplorer/editorsettingspropertiespage.cpp +++ b/src/plugins/projectexplorer/editorsettingspropertiespage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/editorsettingspropertiespage.h b/src/plugins/projectexplorer/editorsettingspropertiespage.h index 7b2f18c5fc3..4e06469c686 100644 --- a/src/plugins/projectexplorer/editorsettingspropertiespage.h +++ b/src/plugins/projectexplorer/editorsettingspropertiespage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/environmentaspect.cpp b/src/plugins/projectexplorer/environmentaspect.cpp index 058967acdbc..e9194d6e468 100644 --- a/src/plugins/projectexplorer/environmentaspect.cpp +++ b/src/plugins/projectexplorer/environmentaspect.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/environmentaspect.h b/src/plugins/projectexplorer/environmentaspect.h index 3200907ef94..58ab8a2505c 100644 --- a/src/plugins/projectexplorer/environmentaspect.h +++ b/src/plugins/projectexplorer/environmentaspect.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/environmentaspectwidget.cpp b/src/plugins/projectexplorer/environmentaspectwidget.cpp index 96d4215b60f..75a854b4f77 100644 --- a/src/plugins/projectexplorer/environmentaspectwidget.cpp +++ b/src/plugins/projectexplorer/environmentaspectwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/environmentaspectwidget.h b/src/plugins/projectexplorer/environmentaspectwidget.h index 465b802640a..51d0d53f9b9 100644 --- a/src/plugins/projectexplorer/environmentaspectwidget.h +++ b/src/plugins/projectexplorer/environmentaspectwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/environmentitemswidget.cpp b/src/plugins/projectexplorer/environmentitemswidget.cpp index 381abe0adcb..e4fa4ba472f 100644 --- a/src/plugins/projectexplorer/environmentitemswidget.cpp +++ b/src/plugins/projectexplorer/environmentitemswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/environmentitemswidget.h b/src/plugins/projectexplorer/environmentitemswidget.h index 2f35391f147..c38e24f21dd 100644 --- a/src/plugins/projectexplorer/environmentitemswidget.h +++ b/src/plugins/projectexplorer/environmentitemswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/environmentwidget.cpp b/src/plugins/projectexplorer/environmentwidget.cpp index 8323cd35494..014b6deb783 100644 --- a/src/plugins/projectexplorer/environmentwidget.cpp +++ b/src/plugins/projectexplorer/environmentwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/environmentwidget.h b/src/plugins/projectexplorer/environmentwidget.h index b698f12bad8..f653bd9e64b 100644 --- a/src/plugins/projectexplorer/environmentwidget.h +++ b/src/plugins/projectexplorer/environmentwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/foldernavigationwidget.cpp b/src/plugins/projectexplorer/foldernavigationwidget.cpp index 4e26ef1101b..4e836e0cd48 100644 --- a/src/plugins/projectexplorer/foldernavigationwidget.cpp +++ b/src/plugins/projectexplorer/foldernavigationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/foldernavigationwidget.h b/src/plugins/projectexplorer/foldernavigationwidget.h index f99a9262e8e..79abc2e5472 100644 --- a/src/plugins/projectexplorer/foldernavigationwidget.h +++ b/src/plugins/projectexplorer/foldernavigationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/gccparser.cpp b/src/plugins/projectexplorer/gccparser.cpp index a4437385c46..2c318b5530e 100644 --- a/src/plugins/projectexplorer/gccparser.cpp +++ b/src/plugins/projectexplorer/gccparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/gccparser.h b/src/plugins/projectexplorer/gccparser.h index 015b53f0531..e46cd91c23c 100644 --- a/src/plugins/projectexplorer/gccparser.h +++ b/src/plugins/projectexplorer/gccparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/gcctoolchain.cpp b/src/plugins/projectexplorer/gcctoolchain.cpp index 45fb926236a..ffef33ef95a 100644 --- a/src/plugins/projectexplorer/gcctoolchain.cpp +++ b/src/plugins/projectexplorer/gcctoolchain.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/gcctoolchain.h b/src/plugins/projectexplorer/gcctoolchain.h index 7b377da76ff..5d5e7f60559 100644 --- a/src/plugins/projectexplorer/gcctoolchain.h +++ b/src/plugins/projectexplorer/gcctoolchain.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/gcctoolchainfactories.h b/src/plugins/projectexplorer/gcctoolchainfactories.h index 5b1bb0773af..0d1302ab2e3 100644 --- a/src/plugins/projectexplorer/gcctoolchainfactories.h +++ b/src/plugins/projectexplorer/gcctoolchainfactories.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/gnumakeparser.cpp b/src/plugins/projectexplorer/gnumakeparser.cpp index 39be3acfb42..9fc970ee35d 100644 --- a/src/plugins/projectexplorer/gnumakeparser.cpp +++ b/src/plugins/projectexplorer/gnumakeparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/gnumakeparser.h b/src/plugins/projectexplorer/gnumakeparser.h index 758f2a68468..7719a8118c0 100644 --- a/src/plugins/projectexplorer/gnumakeparser.h +++ b/src/plugins/projectexplorer/gnumakeparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/headerpath.h b/src/plugins/projectexplorer/headerpath.h index 2f8aaae0423..c62462c6b9a 100644 --- a/src/plugins/projectexplorer/headerpath.h +++ b/src/plugins/projectexplorer/headerpath.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/importwidget.cpp b/src/plugins/projectexplorer/importwidget.cpp index e7e631f6cf1..f39e6d11ea9 100644 --- a/src/plugins/projectexplorer/importwidget.cpp +++ b/src/plugins/projectexplorer/importwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/importwidget.h b/src/plugins/projectexplorer/importwidget.h index 5eb88350daa..e3b044414f7 100644 --- a/src/plugins/projectexplorer/importwidget.h +++ b/src/plugins/projectexplorer/importwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/ioutputparser.cpp b/src/plugins/projectexplorer/ioutputparser.cpp index 2c03191ad54..bebb816be8b 100644 --- a/src/plugins/projectexplorer/ioutputparser.cpp +++ b/src/plugins/projectexplorer/ioutputparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/ioutputparser.h b/src/plugins/projectexplorer/ioutputparser.h index aadde37485c..e24946d20a2 100644 --- a/src/plugins/projectexplorer/ioutputparser.h +++ b/src/plugins/projectexplorer/ioutputparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/ipotentialkit.cpp b/src/plugins/projectexplorer/ipotentialkit.cpp index e912e96fcfc..dcb1d3b73f3 100644 --- a/src/plugins/projectexplorer/ipotentialkit.cpp +++ b/src/plugins/projectexplorer/ipotentialkit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/ipotentialkit.h b/src/plugins/projectexplorer/ipotentialkit.h index 37003598ee2..3d9c4092881 100644 --- a/src/plugins/projectexplorer/ipotentialkit.h +++ b/src/plugins/projectexplorer/ipotentialkit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/iprojectmanager.h b/src/plugins/projectexplorer/iprojectmanager.h index 88be1a45090..369ba7a32eb 100644 --- a/src/plugins/projectexplorer/iprojectmanager.h +++ b/src/plugins/projectexplorer/iprojectmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/iprojectproperties.h b/src/plugins/projectexplorer/iprojectproperties.h index c61c81c5d45..173a9b27e2e 100644 --- a/src/plugins/projectexplorer/iprojectproperties.h +++ b/src/plugins/projectexplorer/iprojectproperties.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/itaskhandler.h b/src/plugins/projectexplorer/itaskhandler.h index e1480fbf523..a23344fd57b 100644 --- a/src/plugins/projectexplorer/itaskhandler.h +++ b/src/plugins/projectexplorer/itaskhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kit.cpp b/src/plugins/projectexplorer/kit.cpp index 7d16bc23a7e..208fdeaac07 100644 --- a/src/plugins/projectexplorer/kit.cpp +++ b/src/plugins/projectexplorer/kit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kit.h b/src/plugins/projectexplorer/kit.h index 0bd64ccf7a2..284babf3e10 100644 --- a/src/plugins/projectexplorer/kit.h +++ b/src/plugins/projectexplorer/kit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitchooser.cpp b/src/plugins/projectexplorer/kitchooser.cpp index 76f0fafed62..fbfae010b7f 100644 --- a/src/plugins/projectexplorer/kitchooser.cpp +++ b/src/plugins/projectexplorer/kitchooser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitchooser.h b/src/plugins/projectexplorer/kitchooser.h index 681a4562867..94a2b6a4d09 100644 --- a/src/plugins/projectexplorer/kitchooser.h +++ b/src/plugins/projectexplorer/kitchooser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitconfigwidget.cpp b/src/plugins/projectexplorer/kitconfigwidget.cpp index 2504cf682c5..fa1834b4f24 100644 --- a/src/plugins/projectexplorer/kitconfigwidget.cpp +++ b/src/plugins/projectexplorer/kitconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitconfigwidget.h b/src/plugins/projectexplorer/kitconfigwidget.h index fbb4b745f8b..2db6d11ad0b 100644 --- a/src/plugins/projectexplorer/kitconfigwidget.h +++ b/src/plugins/projectexplorer/kitconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitinformation.cpp b/src/plugins/projectexplorer/kitinformation.cpp index 87c6caf3201..72b19302e31 100644 --- a/src/plugins/projectexplorer/kitinformation.cpp +++ b/src/plugins/projectexplorer/kitinformation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitinformation.h b/src/plugins/projectexplorer/kitinformation.h index 8de48b27ae3..4bd140e8134 100644 --- a/src/plugins/projectexplorer/kitinformation.h +++ b/src/plugins/projectexplorer/kitinformation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitinformationconfigwidget.cpp b/src/plugins/projectexplorer/kitinformationconfigwidget.cpp index 7c5ac9bcad1..98bcc340c8f 100644 --- a/src/plugins/projectexplorer/kitinformationconfigwidget.cpp +++ b/src/plugins/projectexplorer/kitinformationconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitinformationconfigwidget.h b/src/plugins/projectexplorer/kitinformationconfigwidget.h index 36d710a707d..70e3fddc47c 100644 --- a/src/plugins/projectexplorer/kitinformationconfigwidget.h +++ b/src/plugins/projectexplorer/kitinformationconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitmanager.cpp b/src/plugins/projectexplorer/kitmanager.cpp index e7bb8bc19a4..439a283f611 100644 --- a/src/plugins/projectexplorer/kitmanager.cpp +++ b/src/plugins/projectexplorer/kitmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitmanager.h b/src/plugins/projectexplorer/kitmanager.h index 5c201aa14f3..0438d8c1729 100644 --- a/src/plugins/projectexplorer/kitmanager.h +++ b/src/plugins/projectexplorer/kitmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitmanagerconfigwidget.cpp b/src/plugins/projectexplorer/kitmanagerconfigwidget.cpp index dfb05b59da1..584afb852f0 100644 --- a/src/plugins/projectexplorer/kitmanagerconfigwidget.cpp +++ b/src/plugins/projectexplorer/kitmanagerconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitmanagerconfigwidget.h b/src/plugins/projectexplorer/kitmanagerconfigwidget.h index 13aac9977ca..13e79c8305a 100644 --- a/src/plugins/projectexplorer/kitmanagerconfigwidget.h +++ b/src/plugins/projectexplorer/kitmanagerconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitmodel.cpp b/src/plugins/projectexplorer/kitmodel.cpp index d41149c603f..042406be0bf 100644 --- a/src/plugins/projectexplorer/kitmodel.cpp +++ b/src/plugins/projectexplorer/kitmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitmodel.h b/src/plugins/projectexplorer/kitmodel.h index e76c632cf52..193fe2524a7 100644 --- a/src/plugins/projectexplorer/kitmodel.h +++ b/src/plugins/projectexplorer/kitmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitoptionspage.cpp b/src/plugins/projectexplorer/kitoptionspage.cpp index a39b5b70df4..7f81bdbb233 100644 --- a/src/plugins/projectexplorer/kitoptionspage.cpp +++ b/src/plugins/projectexplorer/kitoptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/kitoptionspage.h b/src/plugins/projectexplorer/kitoptionspage.h index 8022f82b8a5..f08fe36b547 100644 --- a/src/plugins/projectexplorer/kitoptionspage.h +++ b/src/plugins/projectexplorer/kitoptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/ldparser.cpp b/src/plugins/projectexplorer/ldparser.cpp index ff32ad8a164..8ea71e96aa0 100644 --- a/src/plugins/projectexplorer/ldparser.cpp +++ b/src/plugins/projectexplorer/ldparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/ldparser.h b/src/plugins/projectexplorer/ldparser.h index e9413062319..6f9719d503c 100644 --- a/src/plugins/projectexplorer/ldparser.h +++ b/src/plugins/projectexplorer/ldparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/linuxiccparser.cpp b/src/plugins/projectexplorer/linuxiccparser.cpp index a9de97acbfe..713ee98d5eb 100644 --- a/src/plugins/projectexplorer/linuxiccparser.cpp +++ b/src/plugins/projectexplorer/linuxiccparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/linuxiccparser.h b/src/plugins/projectexplorer/linuxiccparser.h index e3e13a6b434..9165410dc35 100644 --- a/src/plugins/projectexplorer/linuxiccparser.h +++ b/src/plugins/projectexplorer/linuxiccparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/localapplicationrunconfiguration.cpp b/src/plugins/projectexplorer/localapplicationrunconfiguration.cpp index ec7a0ec9862..a646f1d7e90 100644 --- a/src/plugins/projectexplorer/localapplicationrunconfiguration.cpp +++ b/src/plugins/projectexplorer/localapplicationrunconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/localapplicationrunconfiguration.h b/src/plugins/projectexplorer/localapplicationrunconfiguration.h index 98d4dfeb70b..6b807260605 100644 --- a/src/plugins/projectexplorer/localapplicationrunconfiguration.h +++ b/src/plugins/projectexplorer/localapplicationrunconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/localapplicationruncontrol.cpp b/src/plugins/projectexplorer/localapplicationruncontrol.cpp index 4a680a551dc..c2678c5b3c8 100644 --- a/src/plugins/projectexplorer/localapplicationruncontrol.cpp +++ b/src/plugins/projectexplorer/localapplicationruncontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/localapplicationruncontrol.h b/src/plugins/projectexplorer/localapplicationruncontrol.h index 983de25766e..c5209a034ce 100644 --- a/src/plugins/projectexplorer/localapplicationruncontrol.h +++ b/src/plugins/projectexplorer/localapplicationruncontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/localenvironmentaspect.cpp b/src/plugins/projectexplorer/localenvironmentaspect.cpp index faef642a17c..7de671ec6f6 100644 --- a/src/plugins/projectexplorer/localenvironmentaspect.cpp +++ b/src/plugins/projectexplorer/localenvironmentaspect.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/localenvironmentaspect.h b/src/plugins/projectexplorer/localenvironmentaspect.h index 3aa3623ec4c..3035be2ee80 100644 --- a/src/plugins/projectexplorer/localenvironmentaspect.h +++ b/src/plugins/projectexplorer/localenvironmentaspect.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/metatypedeclarations.h b/src/plugins/projectexplorer/metatypedeclarations.h index 082682e490f..7ce6686e7ba 100644 --- a/src/plugins/projectexplorer/metatypedeclarations.h +++ b/src/plugins/projectexplorer/metatypedeclarations.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/miniprojecttargetselector.cpp b/src/plugins/projectexplorer/miniprojecttargetselector.cpp index 7a3e31565e1..05af6163d53 100644 --- a/src/plugins/projectexplorer/miniprojecttargetselector.cpp +++ b/src/plugins/projectexplorer/miniprojecttargetselector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/miniprojecttargetselector.h b/src/plugins/projectexplorer/miniprojecttargetselector.h index 062e4ca7fe9..85459d0e07d 100644 --- a/src/plugins/projectexplorer/miniprojecttargetselector.h +++ b/src/plugins/projectexplorer/miniprojecttargetselector.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/msvcparser.cpp b/src/plugins/projectexplorer/msvcparser.cpp index 8244363a6d0..9ff6c36d4d0 100644 --- a/src/plugins/projectexplorer/msvcparser.cpp +++ b/src/plugins/projectexplorer/msvcparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/msvcparser.h b/src/plugins/projectexplorer/msvcparser.h index e67547d53c9..19f9aaf4cc3 100644 --- a/src/plugins/projectexplorer/msvcparser.h +++ b/src/plugins/projectexplorer/msvcparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/msvctoolchain.cpp b/src/plugins/projectexplorer/msvctoolchain.cpp index 41b3d163ab9..2732f94ae68 100644 --- a/src/plugins/projectexplorer/msvctoolchain.cpp +++ b/src/plugins/projectexplorer/msvctoolchain.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/msvctoolchain.h b/src/plugins/projectexplorer/msvctoolchain.h index 29d5387a1fd..f65b2c806d4 100644 --- a/src/plugins/projectexplorer/msvctoolchain.h +++ b/src/plugins/projectexplorer/msvctoolchain.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/namedwidget.cpp b/src/plugins/projectexplorer/namedwidget.cpp index da8b09056f3..30b36b81aa1 100644 --- a/src/plugins/projectexplorer/namedwidget.cpp +++ b/src/plugins/projectexplorer/namedwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/namedwidget.h b/src/plugins/projectexplorer/namedwidget.h index 113def388ce..09422f03a38 100644 --- a/src/plugins/projectexplorer/namedwidget.h +++ b/src/plugins/projectexplorer/namedwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/nodesvisitor.cpp b/src/plugins/projectexplorer/nodesvisitor.cpp index bdc29fb80db..47628dd3cd8 100644 --- a/src/plugins/projectexplorer/nodesvisitor.cpp +++ b/src/plugins/projectexplorer/nodesvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/nodesvisitor.h b/src/plugins/projectexplorer/nodesvisitor.h index d474cc60faa..feab09a41b8 100644 --- a/src/plugins/projectexplorer/nodesvisitor.h +++ b/src/plugins/projectexplorer/nodesvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/osparser.cpp b/src/plugins/projectexplorer/osparser.cpp index 3747b6dd766..0fa0644b89d 100644 --- a/src/plugins/projectexplorer/osparser.cpp +++ b/src/plugins/projectexplorer/osparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/osparser.h b/src/plugins/projectexplorer/osparser.h index ccc4364ca09..aa1261017ba 100644 --- a/src/plugins/projectexplorer/osparser.h +++ b/src/plugins/projectexplorer/osparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/outputparser_test.cpp b/src/plugins/projectexplorer/outputparser_test.cpp index 4e42bee6e6f..c73abb6a3ad 100644 --- a/src/plugins/projectexplorer/outputparser_test.cpp +++ b/src/plugins/projectexplorer/outputparser_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/outputparser_test.h b/src/plugins/projectexplorer/outputparser_test.h index 54e50ab5ada..ad234e24535 100644 --- a/src/plugins/projectexplorer/outputparser_test.h +++ b/src/plugins/projectexplorer/outputparser_test.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/pluginfilefactory.cpp b/src/plugins/projectexplorer/pluginfilefactory.cpp index f3393f19738..a7153c1958b 100644 --- a/src/plugins/projectexplorer/pluginfilefactory.cpp +++ b/src/plugins/projectexplorer/pluginfilefactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/pluginfilefactory.h b/src/plugins/projectexplorer/pluginfilefactory.h index 61dbbfb87e1..4bde7e2abcd 100644 --- a/src/plugins/projectexplorer/pluginfilefactory.h +++ b/src/plugins/projectexplorer/pluginfilefactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/processparameters.cpp b/src/plugins/projectexplorer/processparameters.cpp index 504c5effdaa..e702292c5c1 100644 --- a/src/plugins/projectexplorer/processparameters.cpp +++ b/src/plugins/projectexplorer/processparameters.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/processparameters.h b/src/plugins/projectexplorer/processparameters.h index 0084ce98f6f..19e64e82af8 100644 --- a/src/plugins/projectexplorer/processparameters.h +++ b/src/plugins/projectexplorer/processparameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/processstep.cpp b/src/plugins/projectexplorer/processstep.cpp index 93114501f7b..3f199338142 100644 --- a/src/plugins/projectexplorer/processstep.cpp +++ b/src/plugins/projectexplorer/processstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/processstep.h b/src/plugins/projectexplorer/processstep.h index 6e509577c1f..212b6a11339 100644 --- a/src/plugins/projectexplorer/processstep.h +++ b/src/plugins/projectexplorer/processstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/project.cpp b/src/plugins/projectexplorer/project.cpp index 070e967fbee..2e2247b2868 100644 --- a/src/plugins/projectexplorer/project.cpp +++ b/src/plugins/projectexplorer/project.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/project.h b/src/plugins/projectexplorer/project.h index 962512c7b19..09dd4c9a905 100644 --- a/src/plugins/projectexplorer/project.h +++ b/src/plugins/projectexplorer/project.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectconfiguration.cpp b/src/plugins/projectexplorer/projectconfiguration.cpp index d765f6aa057..51312d9870d 100644 --- a/src/plugins/projectexplorer/projectconfiguration.cpp +++ b/src/plugins/projectexplorer/projectconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectconfiguration.h b/src/plugins/projectexplorer/projectconfiguration.h index 0fcc4dab066..8527b223fe5 100644 --- a/src/plugins/projectexplorer/projectconfiguration.h +++ b/src/plugins/projectexplorer/projectconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 413f49d12b1..d6d7dd36af7 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectexplorer.h b/src/plugins/projectexplorer/projectexplorer.h index 2c24bda6a22..1773b9c4e81 100644 --- a/src/plugins/projectexplorer/projectexplorer.h +++ b/src/plugins/projectexplorer/projectexplorer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectexplorer_export.h b/src/plugins/projectexplorer/projectexplorer_export.h index 08a802b612a..8d42c1bd8c0 100644 --- a/src/plugins/projectexplorer/projectexplorer_export.h +++ b/src/plugins/projectexplorer/projectexplorer_export.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectexplorerconstants.h b/src/plugins/projectexplorer/projectexplorerconstants.h index 45db16556e2..1f4c941552f 100644 --- a/src/plugins/projectexplorer/projectexplorerconstants.h +++ b/src/plugins/projectexplorer/projectexplorerconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectexplorersettings.h b/src/plugins/projectexplorer/projectexplorersettings.h index 90657d7d1ac..266bdb54905 100644 --- a/src/plugins/projectexplorer/projectexplorersettings.h +++ b/src/plugins/projectexplorer/projectexplorersettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectexplorersettingspage.cpp b/src/plugins/projectexplorer/projectexplorersettingspage.cpp index 6ad0591fed8..7afd1534954 100644 --- a/src/plugins/projectexplorer/projectexplorersettingspage.cpp +++ b/src/plugins/projectexplorer/projectexplorersettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectexplorersettingspage.h b/src/plugins/projectexplorer/projectexplorersettingspage.h index 38b99181f4b..5767ba6c734 100644 --- a/src/plugins/projectexplorer/projectexplorersettingspage.h +++ b/src/plugins/projectexplorer/projectexplorersettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectfilewizardextension.cpp b/src/plugins/projectexplorer/projectfilewizardextension.cpp index 24cba5f192a..b9f0388b674 100644 --- a/src/plugins/projectexplorer/projectfilewizardextension.cpp +++ b/src/plugins/projectexplorer/projectfilewizardextension.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectfilewizardextension.h b/src/plugins/projectexplorer/projectfilewizardextension.h index 3b9683a9975..4f7b912e7d4 100644 --- a/src/plugins/projectexplorer/projectfilewizardextension.h +++ b/src/plugins/projectexplorer/projectfilewizardextension.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectimporter.cpp b/src/plugins/projectexplorer/projectimporter.cpp index 6c8378dc06b..2ccdea0d95e 100644 --- a/src/plugins/projectexplorer/projectimporter.cpp +++ b/src/plugins/projectexplorer/projectimporter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectimporter.h b/src/plugins/projectexplorer/projectimporter.h index 1bd5243dc15..5b0866a85da 100644 --- a/src/plugins/projectexplorer/projectimporter.h +++ b/src/plugins/projectexplorer/projectimporter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectmacroexpander.cpp b/src/plugins/projectexplorer/projectmacroexpander.cpp index 13256fcbffc..1446a5d8e72 100644 --- a/src/plugins/projectexplorer/projectmacroexpander.cpp +++ b/src/plugins/projectexplorer/projectmacroexpander.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectmacroexpander.h b/src/plugins/projectexplorer/projectmacroexpander.h index 8786a082773..6f8eda93ead 100644 --- a/src/plugins/projectexplorer/projectmacroexpander.h +++ b/src/plugins/projectexplorer/projectmacroexpander.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectmodels.cpp b/src/plugins/projectexplorer/projectmodels.cpp index c2291129581..88c59883707 100644 --- a/src/plugins/projectexplorer/projectmodels.cpp +++ b/src/plugins/projectexplorer/projectmodels.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectmodels.h b/src/plugins/projectexplorer/projectmodels.h index eca04f6df7c..bcddc211538 100644 --- a/src/plugins/projectexplorer/projectmodels.h +++ b/src/plugins/projectexplorer/projectmodels.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectnodes.cpp b/src/plugins/projectexplorer/projectnodes.cpp index 53cad44764f..d7d50292529 100644 --- a/src/plugins/projectexplorer/projectnodes.cpp +++ b/src/plugins/projectexplorer/projectnodes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectnodes.h b/src/plugins/projectexplorer/projectnodes.h index 424a877d805..ce180cbb107 100644 --- a/src/plugins/projectexplorer/projectnodes.h +++ b/src/plugins/projectexplorer/projectnodes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projecttreewidget.cpp b/src/plugins/projectexplorer/projecttreewidget.cpp index 66e69cf8ff0..0f3d49b69a6 100644 --- a/src/plugins/projectexplorer/projecttreewidget.cpp +++ b/src/plugins/projectexplorer/projecttreewidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projecttreewidget.h b/src/plugins/projectexplorer/projecttreewidget.h index 6f65755f6ad..703660cb81c 100644 --- a/src/plugins/projectexplorer/projecttreewidget.h +++ b/src/plugins/projectexplorer/projecttreewidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectwelcomepage.cpp b/src/plugins/projectexplorer/projectwelcomepage.cpp index fa2b24a9959..45e9fb21819 100644 --- a/src/plugins/projectexplorer/projectwelcomepage.cpp +++ b/src/plugins/projectexplorer/projectwelcomepage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectwelcomepage.h b/src/plugins/projectexplorer/projectwelcomepage.h index 0790015fbe2..0d332f084f3 100644 --- a/src/plugins/projectexplorer/projectwelcomepage.h +++ b/src/plugins/projectexplorer/projectwelcomepage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectwindow.cpp b/src/plugins/projectexplorer/projectwindow.cpp index d4bc1e293e5..288fd1029ad 100644 --- a/src/plugins/projectexplorer/projectwindow.cpp +++ b/src/plugins/projectexplorer/projectwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectwindow.h b/src/plugins/projectexplorer/projectwindow.h index 77d6b130214..a45ea75c00d 100644 --- a/src/plugins/projectexplorer/projectwindow.h +++ b/src/plugins/projectexplorer/projectwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectwizardpage.cpp b/src/plugins/projectexplorer/projectwizardpage.cpp index c8077db03ba..2b0b66774c1 100644 --- a/src/plugins/projectexplorer/projectwizardpage.cpp +++ b/src/plugins/projectexplorer/projectwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/projectwizardpage.h b/src/plugins/projectexplorer/projectwizardpage.h index 657dc4fa47e..7bc4b8709f9 100644 --- a/src/plugins/projectexplorer/projectwizardpage.h +++ b/src/plugins/projectexplorer/projectwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/publishing/ipublishingwizardfactory.cpp b/src/plugins/projectexplorer/publishing/ipublishingwizardfactory.cpp index 87a4fd5beb1..9fac67d3369 100644 --- a/src/plugins/projectexplorer/publishing/ipublishingwizardfactory.cpp +++ b/src/plugins/projectexplorer/publishing/ipublishingwizardfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/removetaskhandler.cpp b/src/plugins/projectexplorer/removetaskhandler.cpp index cf8f81c451a..d2c7d7ba822 100644 --- a/src/plugins/projectexplorer/removetaskhandler.cpp +++ b/src/plugins/projectexplorer/removetaskhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/removetaskhandler.h b/src/plugins/projectexplorer/removetaskhandler.h index c5cd12c5c05..58b5de9a17e 100644 --- a/src/plugins/projectexplorer/removetaskhandler.h +++ b/src/plugins/projectexplorer/removetaskhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/runconfiguration.cpp b/src/plugins/projectexplorer/runconfiguration.cpp index 4bdf6cac037..b12139b4056 100644 --- a/src/plugins/projectexplorer/runconfiguration.cpp +++ b/src/plugins/projectexplorer/runconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/runconfiguration.h b/src/plugins/projectexplorer/runconfiguration.h index 86bd83d6c34..e0206a57412 100644 --- a/src/plugins/projectexplorer/runconfiguration.h +++ b/src/plugins/projectexplorer/runconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/runconfigurationmodel.cpp b/src/plugins/projectexplorer/runconfigurationmodel.cpp index ad95a37c415..36a8f6284b0 100644 --- a/src/plugins/projectexplorer/runconfigurationmodel.cpp +++ b/src/plugins/projectexplorer/runconfigurationmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/runconfigurationmodel.h b/src/plugins/projectexplorer/runconfigurationmodel.h index ba3362f343a..39d50351e30 100644 --- a/src/plugins/projectexplorer/runconfigurationmodel.h +++ b/src/plugins/projectexplorer/runconfigurationmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/runsettingspropertiespage.cpp b/src/plugins/projectexplorer/runsettingspropertiespage.cpp index edf84b03cbf..de4f2af0260 100644 --- a/src/plugins/projectexplorer/runsettingspropertiespage.cpp +++ b/src/plugins/projectexplorer/runsettingspropertiespage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/runsettingspropertiespage.h b/src/plugins/projectexplorer/runsettingspropertiespage.h index 192091986ae..c48d7d001d4 100644 --- a/src/plugins/projectexplorer/runsettingspropertiespage.h +++ b/src/plugins/projectexplorer/runsettingspropertiespage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/session.cpp b/src/plugins/projectexplorer/session.cpp index f7b3b37afc8..c6f6f49e552 100644 --- a/src/plugins/projectexplorer/session.cpp +++ b/src/plugins/projectexplorer/session.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/session.h b/src/plugins/projectexplorer/session.h index d5dd205b2d0..08a770d9cfe 100644 --- a/src/plugins/projectexplorer/session.h +++ b/src/plugins/projectexplorer/session.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/sessiondialog.cpp b/src/plugins/projectexplorer/sessiondialog.cpp index e83b05656bf..b193ab1b774 100644 --- a/src/plugins/projectexplorer/sessiondialog.cpp +++ b/src/plugins/projectexplorer/sessiondialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/sessiondialog.h b/src/plugins/projectexplorer/sessiondialog.h index c3d0d76109c..e8bd6536f3c 100644 --- a/src/plugins/projectexplorer/sessiondialog.h +++ b/src/plugins/projectexplorer/sessiondialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/settingsaccessor.cpp b/src/plugins/projectexplorer/settingsaccessor.cpp index 64f73942e8b..16558d1c296 100644 --- a/src/plugins/projectexplorer/settingsaccessor.cpp +++ b/src/plugins/projectexplorer/settingsaccessor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/settingsaccessor.h b/src/plugins/projectexplorer/settingsaccessor.h index c36c0b8b61a..016b829142a 100644 --- a/src/plugins/projectexplorer/settingsaccessor.h +++ b/src/plugins/projectexplorer/settingsaccessor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/showineditortaskhandler.cpp b/src/plugins/projectexplorer/showineditortaskhandler.cpp index 3090fb47d74..352d13aaf00 100644 --- a/src/plugins/projectexplorer/showineditortaskhandler.cpp +++ b/src/plugins/projectexplorer/showineditortaskhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/showineditortaskhandler.h b/src/plugins/projectexplorer/showineditortaskhandler.h index 37d62c53153..8f455ac45cc 100644 --- a/src/plugins/projectexplorer/showineditortaskhandler.h +++ b/src/plugins/projectexplorer/showineditortaskhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/showoutputtaskhandler.cpp b/src/plugins/projectexplorer/showoutputtaskhandler.cpp index 4b1c127c95e..38ba0982f8a 100644 --- a/src/plugins/projectexplorer/showoutputtaskhandler.cpp +++ b/src/plugins/projectexplorer/showoutputtaskhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/showoutputtaskhandler.h b/src/plugins/projectexplorer/showoutputtaskhandler.h index 2c9998d4719..9f96edd4795 100644 --- a/src/plugins/projectexplorer/showoutputtaskhandler.h +++ b/src/plugins/projectexplorer/showoutputtaskhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/target.cpp b/src/plugins/projectexplorer/target.cpp index b4c46d8e324..e32c68b1692 100644 --- a/src/plugins/projectexplorer/target.cpp +++ b/src/plugins/projectexplorer/target.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/target.h b/src/plugins/projectexplorer/target.h index 7171f2637d4..cba46246d67 100644 --- a/src/plugins/projectexplorer/target.h +++ b/src/plugins/projectexplorer/target.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetselector.cpp b/src/plugins/projectexplorer/targetselector.cpp index d09f83f5629..29d5129bb41 100644 --- a/src/plugins/projectexplorer/targetselector.cpp +++ b/src/plugins/projectexplorer/targetselector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetselector.h b/src/plugins/projectexplorer/targetselector.h index 415e27c03b0..188bf3bef5c 100644 --- a/src/plugins/projectexplorer/targetselector.h +++ b/src/plugins/projectexplorer/targetselector.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetsettingspanel.cpp b/src/plugins/projectexplorer/targetsettingspanel.cpp index 95a99377a0e..f5b2d47feb9 100644 --- a/src/plugins/projectexplorer/targetsettingspanel.cpp +++ b/src/plugins/projectexplorer/targetsettingspanel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetsettingspanel.h b/src/plugins/projectexplorer/targetsettingspanel.h index 28af5eee93e..da784732147 100644 --- a/src/plugins/projectexplorer/targetsettingspanel.h +++ b/src/plugins/projectexplorer/targetsettingspanel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetsettingswidget.cpp b/src/plugins/projectexplorer/targetsettingswidget.cpp index 88c53616a02..3cc0cd4e722 100644 --- a/src/plugins/projectexplorer/targetsettingswidget.cpp +++ b/src/plugins/projectexplorer/targetsettingswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetsettingswidget.h b/src/plugins/projectexplorer/targetsettingswidget.h index 1b678c4a20e..29b553360b1 100644 --- a/src/plugins/projectexplorer/targetsettingswidget.h +++ b/src/plugins/projectexplorer/targetsettingswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetsetuppage.cpp b/src/plugins/projectexplorer/targetsetuppage.cpp index b47da13ed39..2da697af1ed 100644 --- a/src/plugins/projectexplorer/targetsetuppage.cpp +++ b/src/plugins/projectexplorer/targetsetuppage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetsetuppage.h b/src/plugins/projectexplorer/targetsetuppage.h index a65f21235d7..9a58db66f4a 100644 --- a/src/plugins/projectexplorer/targetsetuppage.h +++ b/src/plugins/projectexplorer/targetsetuppage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetsetupwidget.cpp b/src/plugins/projectexplorer/targetsetupwidget.cpp index 239e1f3e4e7..0c87247c4ea 100644 --- a/src/plugins/projectexplorer/targetsetupwidget.cpp +++ b/src/plugins/projectexplorer/targetsetupwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/targetsetupwidget.h b/src/plugins/projectexplorer/targetsetupwidget.h index 0c67e86167e..f4d8b436d47 100644 --- a/src/plugins/projectexplorer/targetsetupwidget.h +++ b/src/plugins/projectexplorer/targetsetupwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/task.cpp b/src/plugins/projectexplorer/task.cpp index 9f6796e1b80..8e1edfad88c 100644 --- a/src/plugins/projectexplorer/task.cpp +++ b/src/plugins/projectexplorer/task.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/task.h b/src/plugins/projectexplorer/task.h index 98782b201d9..78640c9441a 100644 --- a/src/plugins/projectexplorer/task.h +++ b/src/plugins/projectexplorer/task.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/taskhub.cpp b/src/plugins/projectexplorer/taskhub.cpp index 1cc702050bf..685e6ee6f24 100644 --- a/src/plugins/projectexplorer/taskhub.cpp +++ b/src/plugins/projectexplorer/taskhub.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/taskhub.h b/src/plugins/projectexplorer/taskhub.h index 0c4f82e7724..c34686f5544 100644 --- a/src/plugins/projectexplorer/taskhub.h +++ b/src/plugins/projectexplorer/taskhub.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/taskmodel.cpp b/src/plugins/projectexplorer/taskmodel.cpp index ff32130e797..24495c41a8a 100644 --- a/src/plugins/projectexplorer/taskmodel.cpp +++ b/src/plugins/projectexplorer/taskmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/taskmodel.h b/src/plugins/projectexplorer/taskmodel.h index 852c11ca452..7d6c1ae59ea 100644 --- a/src/plugins/projectexplorer/taskmodel.h +++ b/src/plugins/projectexplorer/taskmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/taskwindow.cpp b/src/plugins/projectexplorer/taskwindow.cpp index 6ce327ee0a6..6835663ae25 100644 --- a/src/plugins/projectexplorer/taskwindow.cpp +++ b/src/plugins/projectexplorer/taskwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/taskwindow.h b/src/plugins/projectexplorer/taskwindow.h index 70ff0059d8d..fe1e8a254f4 100644 --- a/src/plugins/projectexplorer/taskwindow.h +++ b/src/plugins/projectexplorer/taskwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/toolchain.cpp b/src/plugins/projectexplorer/toolchain.cpp index 0ca4793033b..4c9f2a75fec 100644 --- a/src/plugins/projectexplorer/toolchain.cpp +++ b/src/plugins/projectexplorer/toolchain.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/toolchain.h b/src/plugins/projectexplorer/toolchain.h index 74f1545317e..fe8a752eefb 100644 --- a/src/plugins/projectexplorer/toolchain.h +++ b/src/plugins/projectexplorer/toolchain.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/toolchainconfigwidget.cpp b/src/plugins/projectexplorer/toolchainconfigwidget.cpp index 9614bd0f06e..358d3f60a7b 100644 --- a/src/plugins/projectexplorer/toolchainconfigwidget.cpp +++ b/src/plugins/projectexplorer/toolchainconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/toolchainconfigwidget.h b/src/plugins/projectexplorer/toolchainconfigwidget.h index 3c0c02fd372..a84a8834a7e 100644 --- a/src/plugins/projectexplorer/toolchainconfigwidget.h +++ b/src/plugins/projectexplorer/toolchainconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/toolchainmanager.cpp b/src/plugins/projectexplorer/toolchainmanager.cpp index 8c0f2dc99c8..461ae042689 100644 --- a/src/plugins/projectexplorer/toolchainmanager.cpp +++ b/src/plugins/projectexplorer/toolchainmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/toolchainmanager.h b/src/plugins/projectexplorer/toolchainmanager.h index e9e1af70dba..22b25a4b642 100644 --- a/src/plugins/projectexplorer/toolchainmanager.h +++ b/src/plugins/projectexplorer/toolchainmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/toolchainoptionspage.cpp b/src/plugins/projectexplorer/toolchainoptionspage.cpp index 44b1a821917..222ea810b25 100644 --- a/src/plugins/projectexplorer/toolchainoptionspage.cpp +++ b/src/plugins/projectexplorer/toolchainoptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/toolchainoptionspage.h b/src/plugins/projectexplorer/toolchainoptionspage.h index 19b365dca4f..3758edaaccd 100644 --- a/src/plugins/projectexplorer/toolchainoptionspage.h +++ b/src/plugins/projectexplorer/toolchainoptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/unconfiguredprojectpanel.cpp b/src/plugins/projectexplorer/unconfiguredprojectpanel.cpp index 8a14c9989f4..be12ed573f8 100644 --- a/src/plugins/projectexplorer/unconfiguredprojectpanel.cpp +++ b/src/plugins/projectexplorer/unconfiguredprojectpanel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/unconfiguredprojectpanel.h b/src/plugins/projectexplorer/unconfiguredprojectpanel.h index 4e13fe43914..7f6967ebfdd 100644 --- a/src/plugins/projectexplorer/unconfiguredprojectpanel.h +++ b/src/plugins/projectexplorer/unconfiguredprojectpanel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/vcsannotatetaskhandler.cpp b/src/plugins/projectexplorer/vcsannotatetaskhandler.cpp index d3419fd4add..37b9481610b 100644 --- a/src/plugins/projectexplorer/vcsannotatetaskhandler.cpp +++ b/src/plugins/projectexplorer/vcsannotatetaskhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/vcsannotatetaskhandler.h b/src/plugins/projectexplorer/vcsannotatetaskhandler.h index acd384f5fec..b27b3f606bb 100644 --- a/src/plugins/projectexplorer/vcsannotatetaskhandler.h +++ b/src/plugins/projectexplorer/vcsannotatetaskhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/wincetoolchain.cpp b/src/plugins/projectexplorer/wincetoolchain.cpp index cac9c1373ef..6ccf071cd84 100644 --- a/src/plugins/projectexplorer/wincetoolchain.cpp +++ b/src/plugins/projectexplorer/wincetoolchain.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/wincetoolchain.h b/src/plugins/projectexplorer/wincetoolchain.h index fddf6fa684a..bcd0d629425 100644 --- a/src/plugins/projectexplorer/wincetoolchain.h +++ b/src/plugins/projectexplorer/wincetoolchain.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/windebuginterface.cpp b/src/plugins/projectexplorer/windebuginterface.cpp index 665fbb98148..115abf63ec8 100644 --- a/src/plugins/projectexplorer/windebuginterface.cpp +++ b/src/plugins/projectexplorer/windebuginterface.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/projectexplorer/windebuginterface.h b/src/plugins/projectexplorer/windebuginterface.h index 8cf02916e2b..f20ab43a7ec 100644 --- a/src/plugins/projectexplorer/windebuginterface.h +++ b/src/plugins/projectexplorer/windebuginterface.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/PythonEditor.pluginspec.in b/src/plugins/pythoneditor/PythonEditor.pluginspec.in index 5dae98ebbf8..fad2ecf5db3 100644 --- a/src/plugins/pythoneditor/PythonEditor.pluginspec.in +++ b/src/plugins/pythoneditor/PythonEditor.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"PythonEditor\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/pythoneditor/pythoneditor.cpp b/src/plugins/pythoneditor/pythoneditor.cpp index 6afb318e7b5..1787f71d012 100644 --- a/src/plugins/pythoneditor/pythoneditor.cpp +++ b/src/plugins/pythoneditor/pythoneditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/pythoneditor.h b/src/plugins/pythoneditor/pythoneditor.h index f56802ea8a1..ed1eff5e8e2 100644 --- a/src/plugins/pythoneditor/pythoneditor.h +++ b/src/plugins/pythoneditor/pythoneditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/pythoneditorconstants.h b/src/plugins/pythoneditor/pythoneditorconstants.h index 4674bfd0f27..6dbc178619a 100644 --- a/src/plugins/pythoneditor/pythoneditorconstants.h +++ b/src/plugins/pythoneditor/pythoneditorconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/pythoneditorfactory.cpp b/src/plugins/pythoneditor/pythoneditorfactory.cpp index 2851d611af9..eeb5f2cec43 100644 --- a/src/plugins/pythoneditor/pythoneditorfactory.cpp +++ b/src/plugins/pythoneditor/pythoneditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/pythoneditorfactory.h b/src/plugins/pythoneditor/pythoneditorfactory.h index 79e4d54e4ec..0dcca8fbc2a 100644 --- a/src/plugins/pythoneditor/pythoneditorfactory.h +++ b/src/plugins/pythoneditor/pythoneditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/pythoneditorplugin.cpp b/src/plugins/pythoneditor/pythoneditorplugin.cpp index 856c0677a7d..5ab39396ad7 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.cpp +++ b/src/plugins/pythoneditor/pythoneditorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/pythoneditorplugin.h b/src/plugins/pythoneditor/pythoneditorplugin.h index f6c730cb69b..4f54ea3874b 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.h +++ b/src/plugins/pythoneditor/pythoneditorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/pythoneditorwidget.cpp b/src/plugins/pythoneditor/pythoneditorwidget.cpp index a8588e3e070..5e2f6b5ccf0 100644 --- a/src/plugins/pythoneditor/pythoneditorwidget.cpp +++ b/src/plugins/pythoneditor/pythoneditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/pythoneditorwidget.h b/src/plugins/pythoneditor/pythoneditorwidget.h index 24258dfa5c1..ebb76626cda 100644 --- a/src/plugins/pythoneditor/pythoneditorwidget.h +++ b/src/plugins/pythoneditor/pythoneditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/lexical/pythonformattoken.h b/src/plugins/pythoneditor/tools/lexical/pythonformattoken.h index 9756476a948..dc96ff43315 100644 --- a/src/plugins/pythoneditor/tools/lexical/pythonformattoken.h +++ b/src/plugins/pythoneditor/tools/lexical/pythonformattoken.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/lexical/pythonscanner.cpp b/src/plugins/pythoneditor/tools/lexical/pythonscanner.cpp index 6506a8d67d4..65bba4b06a1 100644 --- a/src/plugins/pythoneditor/tools/lexical/pythonscanner.cpp +++ b/src/plugins/pythoneditor/tools/lexical/pythonscanner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/lexical/pythonscanner.h b/src/plugins/pythoneditor/tools/lexical/pythonscanner.h index ce01ea0f034..932123317b2 100644 --- a/src/plugins/pythoneditor/tools/lexical/pythonscanner.h +++ b/src/plugins/pythoneditor/tools/lexical/pythonscanner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/lexical/sourcecodestream.h b/src/plugins/pythoneditor/tools/lexical/sourcecodestream.h index 25caed56aee..f88a7cada8f 100644 --- a/src/plugins/pythoneditor/tools/lexical/sourcecodestream.h +++ b/src/plugins/pythoneditor/tools/lexical/sourcecodestream.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/pythonhighlighter.cpp b/src/plugins/pythoneditor/tools/pythonhighlighter.cpp index 2bb2bd9caa5..e69b95a163c 100644 --- a/src/plugins/pythoneditor/tools/pythonhighlighter.cpp +++ b/src/plugins/pythoneditor/tools/pythonhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/pythonhighlighter.h b/src/plugins/pythoneditor/tools/pythonhighlighter.h index d5287fc0b51..70846f38988 100644 --- a/src/plugins/pythoneditor/tools/pythonhighlighter.h +++ b/src/plugins/pythoneditor/tools/pythonhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/pythonhighlighterfactory.cpp b/src/plugins/pythoneditor/tools/pythonhighlighterfactory.cpp index 43b912606c8..8ed05e42797 100644 --- a/src/plugins/pythoneditor/tools/pythonhighlighterfactory.cpp +++ b/src/plugins/pythoneditor/tools/pythonhighlighterfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/pythonhighlighterfactory.h b/src/plugins/pythoneditor/tools/pythonhighlighterfactory.h index fa7dc02825b..5b54b12375b 100644 --- a/src/plugins/pythoneditor/tools/pythonhighlighterfactory.h +++ b/src/plugins/pythoneditor/tools/pythonhighlighterfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/pythonindenter.cpp b/src/plugins/pythoneditor/tools/pythonindenter.cpp index e65dd295fe1..43a914e8d47 100644 --- a/src/plugins/pythoneditor/tools/pythonindenter.cpp +++ b/src/plugins/pythoneditor/tools/pythonindenter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/tools/pythonindenter.h b/src/plugins/pythoneditor/tools/pythonindenter.h index 10bf4d809bc..69f4669df10 100644 --- a/src/plugins/pythoneditor/tools/pythonindenter.h +++ b/src/plugins/pythoneditor/tools/pythonindenter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonclassnamepage.cpp b/src/plugins/pythoneditor/wizard/pythonclassnamepage.cpp index 33024396a04..9b8923ec097 100644 --- a/src/plugins/pythoneditor/wizard/pythonclassnamepage.cpp +++ b/src/plugins/pythoneditor/wizard/pythonclassnamepage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonclassnamepage.h b/src/plugins/pythoneditor/wizard/pythonclassnamepage.h index 55d542f11b3..1c58e2541b5 100644 --- a/src/plugins/pythoneditor/wizard/pythonclassnamepage.h +++ b/src/plugins/pythoneditor/wizard/pythonclassnamepage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp b/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp index c3c3cb29b53..5b303beb8a8 100644 --- a/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp +++ b/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonclasswizard.h b/src/plugins/pythoneditor/wizard/pythonclasswizard.h index 147d005a870..151f0304bec 100644 --- a/src/plugins/pythoneditor/wizard/pythonclasswizard.h +++ b/src/plugins/pythoneditor/wizard/pythonclasswizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp b/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp index 09e11a331de..2d92c8a6352 100644 --- a/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp +++ b/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.h b/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.h index 5743f86be5b..3553e49d43e 100644 --- a/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.h +++ b/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonfilewizard.cpp b/src/plugins/pythoneditor/wizard/pythonfilewizard.cpp index 45cd6a14ca1..105b4abacf1 100644 --- a/src/plugins/pythoneditor/wizard/pythonfilewizard.cpp +++ b/src/plugins/pythoneditor/wizard/pythonfilewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonfilewizard.h b/src/plugins/pythoneditor/wizard/pythonfilewizard.h index ba689c59cf9..9f092f3769e 100644 --- a/src/plugins/pythoneditor/wizard/pythonfilewizard.h +++ b/src/plugins/pythoneditor/wizard/pythonfilewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonsourcegenerator.cpp b/src/plugins/pythoneditor/wizard/pythonsourcegenerator.cpp index 87f2e04c13c..8f40fb7812b 100644 --- a/src/plugins/pythoneditor/wizard/pythonsourcegenerator.cpp +++ b/src/plugins/pythoneditor/wizard/pythonsourcegenerator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/pythoneditor/wizard/pythonsourcegenerator.h b/src/plugins/pythoneditor/wizard/pythonsourcegenerator.h index d638ac8d871..b851c190040 100644 --- a/src/plugins/pythoneditor/wizard/pythonsourcegenerator.h +++ b/src/plugins/pythoneditor/wizard/pythonsourcegenerator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/QbsProjectManager.pluginspec.in b/src/plugins/qbsprojectmanager/QbsProjectManager.pluginspec.in index 8c45537a208..89940307613 100644 --- a/src/plugins/qbsprojectmanager/QbsProjectManager.pluginspec.in +++ b/src/plugins/qbsprojectmanager/QbsProjectManager.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"QbsProjectManager\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\" experimental=\"true\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp b/src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp index ca3ccfa16dc..699ab0d5d91 100644 --- a/src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp +++ b/src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/defaultpropertyprovider.h b/src/plugins/qbsprojectmanager/defaultpropertyprovider.h index 5b1d2961b61..ba6e40547c0 100644 --- a/src/plugins/qbsprojectmanager/defaultpropertyprovider.h +++ b/src/plugins/qbsprojectmanager/defaultpropertyprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/propertyprovider.h b/src/plugins/qbsprojectmanager/propertyprovider.h index fd310c01822..a6c6b70abe4 100644 --- a/src/plugins/qbsprojectmanager/propertyprovider.h +++ b/src/plugins/qbsprojectmanager/propertyprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsbuildconfiguration.cpp b/src/plugins/qbsprojectmanager/qbsbuildconfiguration.cpp index f489f3b1a05..de4c4d150fd 100644 --- a/src/plugins/qbsprojectmanager/qbsbuildconfiguration.cpp +++ b/src/plugins/qbsprojectmanager/qbsbuildconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsbuildconfiguration.h b/src/plugins/qbsprojectmanager/qbsbuildconfiguration.h index 14c1efbbe15..d90f50e8846 100644 --- a/src/plugins/qbsprojectmanager/qbsbuildconfiguration.h +++ b/src/plugins/qbsprojectmanager/qbsbuildconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsbuildconfigurationwidget.cpp b/src/plugins/qbsprojectmanager/qbsbuildconfigurationwidget.cpp index 45e61357185..e5682322ded 100644 --- a/src/plugins/qbsprojectmanager/qbsbuildconfigurationwidget.cpp +++ b/src/plugins/qbsprojectmanager/qbsbuildconfigurationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsbuildconfigurationwidget.h b/src/plugins/qbsprojectmanager/qbsbuildconfigurationwidget.h index b91e7d8e908..a61b5d625a7 100644 --- a/src/plugins/qbsprojectmanager/qbsbuildconfigurationwidget.h +++ b/src/plugins/qbsprojectmanager/qbsbuildconfigurationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsbuildinfo.h b/src/plugins/qbsprojectmanager/qbsbuildinfo.h index 913c24bfb1b..a72e76b264f 100644 --- a/src/plugins/qbsprojectmanager/qbsbuildinfo.h +++ b/src/plugins/qbsprojectmanager/qbsbuildinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsbuildstep.cpp b/src/plugins/qbsprojectmanager/qbsbuildstep.cpp index 66e7802111e..4cdbe41e9f7 100644 --- a/src/plugins/qbsprojectmanager/qbsbuildstep.cpp +++ b/src/plugins/qbsprojectmanager/qbsbuildstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsbuildstep.h b/src/plugins/qbsprojectmanager/qbsbuildstep.h index f1ec50f67ba..5227128afca 100644 --- a/src/plugins/qbsprojectmanager/qbsbuildstep.h +++ b/src/plugins/qbsprojectmanager/qbsbuildstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbscleanstep.cpp b/src/plugins/qbsprojectmanager/qbscleanstep.cpp index 8403a34117c..7e884926f06 100644 --- a/src/plugins/qbsprojectmanager/qbscleanstep.cpp +++ b/src/plugins/qbsprojectmanager/qbscleanstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbscleanstep.h b/src/plugins/qbsprojectmanager/qbscleanstep.h index ff47043f5be..bde7eea091f 100644 --- a/src/plugins/qbsprojectmanager/qbscleanstep.h +++ b/src/plugins/qbsprojectmanager/qbscleanstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsconstants.h b/src/plugins/qbsprojectmanager/qbsconstants.h index 148999ff975..526de096ddd 100644 --- a/src/plugins/qbsprojectmanager/qbsconstants.h +++ b/src/plugins/qbsprojectmanager/qbsconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsdeployconfigurationfactory.cpp b/src/plugins/qbsprojectmanager/qbsdeployconfigurationfactory.cpp index abd0028eb75..7dc096b73a5 100644 --- a/src/plugins/qbsprojectmanager/qbsdeployconfigurationfactory.cpp +++ b/src/plugins/qbsprojectmanager/qbsdeployconfigurationfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsdeployconfigurationfactory.h b/src/plugins/qbsprojectmanager/qbsdeployconfigurationfactory.h index 1262620335e..550bc273d96 100644 --- a/src/plugins/qbsprojectmanager/qbsdeployconfigurationfactory.h +++ b/src/plugins/qbsprojectmanager/qbsdeployconfigurationfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsinstallstep.cpp b/src/plugins/qbsprojectmanager/qbsinstallstep.cpp index 57d30690cce..1e7571e08fb 100644 --- a/src/plugins/qbsprojectmanager/qbsinstallstep.cpp +++ b/src/plugins/qbsprojectmanager/qbsinstallstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsinstallstep.h b/src/plugins/qbsprojectmanager/qbsinstallstep.h index 2857e3c8cc5..04c212969c6 100644 --- a/src/plugins/qbsprojectmanager/qbsinstallstep.h +++ b/src/plugins/qbsprojectmanager/qbsinstallstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbslogsink.cpp b/src/plugins/qbsprojectmanager/qbslogsink.cpp index a206b962b23..e994f9606dd 100644 --- a/src/plugins/qbsprojectmanager/qbslogsink.cpp +++ b/src/plugins/qbsprojectmanager/qbslogsink.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbslogsink.h b/src/plugins/qbsprojectmanager/qbslogsink.h index 0da371119e7..4bc0b3b7fe3 100644 --- a/src/plugins/qbsprojectmanager/qbslogsink.h +++ b/src/plugins/qbsprojectmanager/qbslogsink.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsnodes.cpp b/src/plugins/qbsprojectmanager/qbsnodes.cpp index 432228bb115..e06bb0d8dff 100644 --- a/src/plugins/qbsprojectmanager/qbsnodes.cpp +++ b/src/plugins/qbsprojectmanager/qbsnodes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsnodes.h b/src/plugins/qbsprojectmanager/qbsnodes.h index 368317098d1..daad2c571ed 100644 --- a/src/plugins/qbsprojectmanager/qbsnodes.h +++ b/src/plugins/qbsprojectmanager/qbsnodes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsparser.cpp b/src/plugins/qbsprojectmanager/qbsparser.cpp index d1d2a341c2f..a99e68edbe9 100644 --- a/src/plugins/qbsprojectmanager/qbsparser.cpp +++ b/src/plugins/qbsprojectmanager/qbsparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsparser.h b/src/plugins/qbsprojectmanager/qbsparser.h index 01ba586574b..e921b3017f1 100644 --- a/src/plugins/qbsprojectmanager/qbsparser.h +++ b/src/plugins/qbsprojectmanager/qbsparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsproject.cpp b/src/plugins/qbsprojectmanager/qbsproject.cpp index cfb50e3454c..50e277cb73c 100644 --- a/src/plugins/qbsprojectmanager/qbsproject.cpp +++ b/src/plugins/qbsprojectmanager/qbsproject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsproject.h b/src/plugins/qbsprojectmanager/qbsproject.h index 1a8d9232d84..2030ffe093e 100644 --- a/src/plugins/qbsprojectmanager/qbsproject.h +++ b/src/plugins/qbsprojectmanager/qbsproject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsprojectfile.cpp b/src/plugins/qbsprojectmanager/qbsprojectfile.cpp index 3bd663ffc4a..fa5d1e1b981 100644 --- a/src/plugins/qbsprojectmanager/qbsprojectfile.cpp +++ b/src/plugins/qbsprojectmanager/qbsprojectfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsprojectfile.h b/src/plugins/qbsprojectmanager/qbsprojectfile.h index 6eea0151684..43ab6d5831b 100644 --- a/src/plugins/qbsprojectmanager/qbsprojectfile.h +++ b/src/plugins/qbsprojectmanager/qbsprojectfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsprojectmanager.cpp b/src/plugins/qbsprojectmanager/qbsprojectmanager.cpp index fb20982f458..b26b6cc7cb7 100644 --- a/src/plugins/qbsprojectmanager/qbsprojectmanager.cpp +++ b/src/plugins/qbsprojectmanager/qbsprojectmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsprojectmanager.h b/src/plugins/qbsprojectmanager/qbsprojectmanager.h index ccb42c8cbb0..04af44c2aaa 100644 --- a/src/plugins/qbsprojectmanager/qbsprojectmanager.h +++ b/src/plugins/qbsprojectmanager/qbsprojectmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsprojectmanager_global.h b/src/plugins/qbsprojectmanager/qbsprojectmanager_global.h index e0bf02d3e0c..e293e6c2e8a 100644 --- a/src/plugins/qbsprojectmanager/qbsprojectmanager_global.h +++ b/src/plugins/qbsprojectmanager/qbsprojectmanager_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsprojectmanagerconstants.h b/src/plugins/qbsprojectmanager/qbsprojectmanagerconstants.h index 7633c7fc883..ee07fee2de4 100644 --- a/src/plugins/qbsprojectmanager/qbsprojectmanagerconstants.h +++ b/src/plugins/qbsprojectmanager/qbsprojectmanagerconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.cpp b/src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.cpp index f02597b715e..b518df7acc6 100644 --- a/src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.cpp +++ b/src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.h b/src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.h index 807b29b5d4e..a1964c40d1c 100644 --- a/src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.h +++ b/src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbspropertylineedit.cpp b/src/plugins/qbsprojectmanager/qbspropertylineedit.cpp index 99e24907625..3d06737352e 100644 --- a/src/plugins/qbsprojectmanager/qbspropertylineedit.cpp +++ b/src/plugins/qbsprojectmanager/qbspropertylineedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbspropertylineedit.h b/src/plugins/qbsprojectmanager/qbspropertylineedit.h index 399c4d2845e..841f4359a70 100644 --- a/src/plugins/qbsprojectmanager/qbspropertylineedit.h +++ b/src/plugins/qbsprojectmanager/qbspropertylineedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsrunconfiguration.cpp b/src/plugins/qbsprojectmanager/qbsrunconfiguration.cpp index de1dda1c5f5..4c5e76d6bd6 100644 --- a/src/plugins/qbsprojectmanager/qbsrunconfiguration.cpp +++ b/src/plugins/qbsprojectmanager/qbsrunconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsrunconfiguration.h b/src/plugins/qbsprojectmanager/qbsrunconfiguration.h index dabc7b7b731..c01b1e5d8a7 100644 --- a/src/plugins/qbsprojectmanager/qbsrunconfiguration.h +++ b/src/plugins/qbsprojectmanager/qbsrunconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsstep.cpp b/src/plugins/qbsprojectmanager/qbsstep.cpp index b4aee3534e9..7348398824c 100644 --- a/src/plugins/qbsprojectmanager/qbsstep.cpp +++ b/src/plugins/qbsprojectmanager/qbsstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qbsprojectmanager/qbsstep.h b/src/plugins/qbsprojectmanager/qbsstep.h index 3728f237b12..6ced81e85f1 100644 --- a/src/plugins/qbsprojectmanager/qbsstep.h +++ b/src/plugins/qbsprojectmanager/qbsstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/QmakeProjectManager.pluginspec.in b/src/plugins/qmakeprojectmanager/QmakeProjectManager.pluginspec.in index 2a4f3745dc7..d334d47fc77 100644 --- a/src/plugins/qmakeprojectmanager/QmakeProjectManager.pluginspec.in +++ b/src/plugins/qmakeprojectmanager/QmakeProjectManager.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"QmakeProjectManager\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/qmakeprojectmanager/addlibrarywizard.cpp b/src/plugins/qmakeprojectmanager/addlibrarywizard.cpp index 554081081ef..e4686ee5707 100644 --- a/src/plugins/qmakeprojectmanager/addlibrarywizard.cpp +++ b/src/plugins/qmakeprojectmanager/addlibrarywizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/addlibrarywizard.h b/src/plugins/qmakeprojectmanager/addlibrarywizard.h index be9b99b2cea..741487572c0 100644 --- a/src/plugins/qmakeprojectmanager/addlibrarywizard.h +++ b/src/plugins/qmakeprojectmanager/addlibrarywizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/applicationlauncher.h b/src/plugins/qmakeprojectmanager/applicationlauncher.h index b51ab06b381..812262755bb 100644 --- a/src/plugins/qmakeprojectmanager/applicationlauncher.h +++ b/src/plugins/qmakeprojectmanager/applicationlauncher.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/classdefinition.cpp b/src/plugins/qmakeprojectmanager/customwidgetwizard/classdefinition.cpp index 2e950d0a144..efe8d7c94a7 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/classdefinition.cpp +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/classdefinition.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/classdefinition.h b/src/plugins/qmakeprojectmanager/customwidgetwizard/classdefinition.h index fa8d4676f0a..1a664d89570 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/classdefinition.h +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/classdefinition.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/classlist.cpp b/src/plugins/qmakeprojectmanager/customwidgetwizard/classlist.cpp index 22297ae81cb..e60f14a659f 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/classlist.cpp +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/classlist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/classlist.h b/src/plugins/qmakeprojectmanager/customwidgetwizard/classlist.h index b745dd5f1aa..8d0cf07038e 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/classlist.h +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/classlist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetpluginwizardpage.cpp b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetpluginwizardpage.cpp index 9536f673025..6a957ee5502 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetpluginwizardpage.cpp +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetpluginwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetpluginwizardpage.h b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetpluginwizardpage.h index fcb4792b652..144c96e9054 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetpluginwizardpage.h +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetpluginwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwidgetswizardpage.cpp b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwidgetswizardpage.cpp index 89bd6270739..e029ab5c638 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwidgetswizardpage.cpp +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwidgetswizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwidgetswizardpage.h b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwidgetswizardpage.h index 74b4ed9ca2b..245fb596859 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwidgetswizardpage.h +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwidgetswizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizard.cpp b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizard.cpp index eb94d6a6b97..d047a3c672d 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizard.cpp +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizard.h b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizard.h index 2dd4b5d65b0..06eed0d660f 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizard.h +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizarddialog.cpp b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizarddialog.cpp index 8ee0ab73003..60e1ee69520 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizarddialog.cpp +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizarddialog.h b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizarddialog.h index daf1ab8240f..5408407f4f1 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizarddialog.h +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/customwidgetwizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/filenamingparameters.h b/src/plugins/qmakeprojectmanager/customwidgetwizard/filenamingparameters.h index 996d7eee283..016138b69ea 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/filenamingparameters.h +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/filenamingparameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/plugingenerator.cpp b/src/plugins/qmakeprojectmanager/customwidgetwizard/plugingenerator.cpp index db85709cc68..2071a4509ed 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/plugingenerator.cpp +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/plugingenerator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/plugingenerator.h b/src/plugins/qmakeprojectmanager/customwidgetwizard/plugingenerator.h index 27bd3c996b8..df72ce8a365 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/plugingenerator.h +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/plugingenerator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/customwidgetwizard/pluginoptions.h b/src/plugins/qmakeprojectmanager/customwidgetwizard/pluginoptions.h index 483a49a7086..20b6b49ba25 100644 --- a/src/plugins/qmakeprojectmanager/customwidgetwizard/pluginoptions.h +++ b/src/plugins/qmakeprojectmanager/customwidgetwizard/pluginoptions.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp index e71eec89e0c..b1dffee1b5e 100644 --- a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp +++ b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.h b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.h index 3b17953aac4..c89cef28e56 100644 --- a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.h +++ b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/externaleditors.cpp b/src/plugins/qmakeprojectmanager/externaleditors.cpp index 2db1e4ad7c3..40547ecf170 100644 --- a/src/plugins/qmakeprojectmanager/externaleditors.cpp +++ b/src/plugins/qmakeprojectmanager/externaleditors.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/externaleditors.h b/src/plugins/qmakeprojectmanager/externaleditors.h index fc642a181eb..f0dccaf5785 100644 --- a/src/plugins/qmakeprojectmanager/externaleditors.h +++ b/src/plugins/qmakeprojectmanager/externaleditors.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/findqmakeprofiles.cpp b/src/plugins/qmakeprojectmanager/findqmakeprofiles.cpp index 2dfc208d3be..5c74f9592df 100644 --- a/src/plugins/qmakeprojectmanager/findqmakeprofiles.cpp +++ b/src/plugins/qmakeprojectmanager/findqmakeprofiles.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/findqmakeprofiles.h b/src/plugins/qmakeprojectmanager/findqmakeprofiles.h index ed4e9082961..3c602d18220 100644 --- a/src/plugins/qmakeprojectmanager/findqmakeprofiles.h +++ b/src/plugins/qmakeprojectmanager/findqmakeprofiles.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/librarydetailscontroller.cpp b/src/plugins/qmakeprojectmanager/librarydetailscontroller.cpp index 8a144ef6222..a08539eae5e 100644 --- a/src/plugins/qmakeprojectmanager/librarydetailscontroller.cpp +++ b/src/plugins/qmakeprojectmanager/librarydetailscontroller.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/librarydetailscontroller.h b/src/plugins/qmakeprojectmanager/librarydetailscontroller.h index 504e51c7ca2..07006c16f03 100644 --- a/src/plugins/qmakeprojectmanager/librarydetailscontroller.h +++ b/src/plugins/qmakeprojectmanager/librarydetailscontroller.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/makestep.cpp b/src/plugins/qmakeprojectmanager/makestep.cpp index 73d9e3a7399..2af73740720 100644 --- a/src/plugins/qmakeprojectmanager/makestep.cpp +++ b/src/plugins/qmakeprojectmanager/makestep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/makestep.h b/src/plugins/qmakeprojectmanager/makestep.h index 0a540888095..9dab8d10c3d 100644 --- a/src/plugins/qmakeprojectmanager/makestep.h +++ b/src/plugins/qmakeprojectmanager/makestep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profilecompletionassist.cpp b/src/plugins/qmakeprojectmanager/profilecompletionassist.cpp index f10a6982862..ce684b24724 100644 --- a/src/plugins/qmakeprojectmanager/profilecompletionassist.cpp +++ b/src/plugins/qmakeprojectmanager/profilecompletionassist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profilecompletionassist.h b/src/plugins/qmakeprojectmanager/profilecompletionassist.h index dad0f761763..8e1304e32d4 100644 --- a/src/plugins/qmakeprojectmanager/profilecompletionassist.h +++ b/src/plugins/qmakeprojectmanager/profilecompletionassist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profileeditor.cpp b/src/plugins/qmakeprojectmanager/profileeditor.cpp index 230cff4440a..68cac3bf6ac 100644 --- a/src/plugins/qmakeprojectmanager/profileeditor.cpp +++ b/src/plugins/qmakeprojectmanager/profileeditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profileeditor.h b/src/plugins/qmakeprojectmanager/profileeditor.h index 4976ebd0810..31da55fbff6 100644 --- a/src/plugins/qmakeprojectmanager/profileeditor.h +++ b/src/plugins/qmakeprojectmanager/profileeditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profileeditorfactory.cpp b/src/plugins/qmakeprojectmanager/profileeditorfactory.cpp index 3f75d5809d9..d549513d54d 100644 --- a/src/plugins/qmakeprojectmanager/profileeditorfactory.cpp +++ b/src/plugins/qmakeprojectmanager/profileeditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profileeditorfactory.h b/src/plugins/qmakeprojectmanager/profileeditorfactory.h index 07a2e5e21c1..52bd50ae8ce 100644 --- a/src/plugins/qmakeprojectmanager/profileeditorfactory.h +++ b/src/plugins/qmakeprojectmanager/profileeditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profilehighlighter.cpp b/src/plugins/qmakeprojectmanager/profilehighlighter.cpp index 9552f50ecb9..cbd994876aa 100644 --- a/src/plugins/qmakeprojectmanager/profilehighlighter.cpp +++ b/src/plugins/qmakeprojectmanager/profilehighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profilehighlighter.h b/src/plugins/qmakeprojectmanager/profilehighlighter.h index efe18763046..05cf79ff0f2 100644 --- a/src/plugins/qmakeprojectmanager/profilehighlighter.h +++ b/src/plugins/qmakeprojectmanager/profilehighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profilehighlighterfactory.cpp b/src/plugins/qmakeprojectmanager/profilehighlighterfactory.cpp index 04544b5592c..904745a7f64 100644 --- a/src/plugins/qmakeprojectmanager/profilehighlighterfactory.cpp +++ b/src/plugins/qmakeprojectmanager/profilehighlighterfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profilehighlighterfactory.h b/src/plugins/qmakeprojectmanager/profilehighlighterfactory.h index 3e3ecf6a7d9..bfeafaa6b76 100644 --- a/src/plugins/qmakeprojectmanager/profilehighlighterfactory.h +++ b/src/plugins/qmakeprojectmanager/profilehighlighterfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profilehoverhandler.cpp b/src/plugins/qmakeprojectmanager/profilehoverhandler.cpp index 824929ae97f..d4fdac0bcf9 100644 --- a/src/plugins/qmakeprojectmanager/profilehoverhandler.cpp +++ b/src/plugins/qmakeprojectmanager/profilehoverhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/profilehoverhandler.h b/src/plugins/qmakeprojectmanager/profilehoverhandler.h index e53566a5b67..8cc4f5ac888 100644 --- a/src/plugins/qmakeprojectmanager/profilehoverhandler.h +++ b/src/plugins/qmakeprojectmanager/profilehoverhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.cpp b/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.cpp index d69f090e916..aaa024829d9 100644 --- a/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.cpp +++ b/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.h b/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.h index 28e53975b75..e07795afe90 100644 --- a/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.h +++ b/src/plugins/qmakeprojectmanager/qmakebuildconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakebuildinfo.h b/src/plugins/qmakeprojectmanager/qmakebuildinfo.h index 59e71c56edd..e9bdda279f9 100644 --- a/src/plugins/qmakeprojectmanager/qmakebuildinfo.h +++ b/src/plugins/qmakeprojectmanager/qmakebuildinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakekitconfigwidget.cpp b/src/plugins/qmakeprojectmanager/qmakekitconfigwidget.cpp index fc9dd5142ce..1a9704d025f 100644 --- a/src/plugins/qmakeprojectmanager/qmakekitconfigwidget.cpp +++ b/src/plugins/qmakeprojectmanager/qmakekitconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakekitconfigwidget.h b/src/plugins/qmakeprojectmanager/qmakekitconfigwidget.h index ccf6c479766..921f8cdef58 100644 --- a/src/plugins/qmakeprojectmanager/qmakekitconfigwidget.h +++ b/src/plugins/qmakeprojectmanager/qmakekitconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakekitinformation.cpp b/src/plugins/qmakeprojectmanager/qmakekitinformation.cpp index c942e4974fe..f1a6725ae55 100644 --- a/src/plugins/qmakeprojectmanager/qmakekitinformation.cpp +++ b/src/plugins/qmakeprojectmanager/qmakekitinformation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakekitinformation.h b/src/plugins/qmakeprojectmanager/qmakekitinformation.h index ae69866af93..fb953d3d12e 100644 --- a/src/plugins/qmakeprojectmanager/qmakekitinformation.h +++ b/src/plugins/qmakeprojectmanager/qmakekitinformation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakenodes.cpp b/src/plugins/qmakeprojectmanager/qmakenodes.cpp index 80608630c9f..69a1bea7ddb 100644 --- a/src/plugins/qmakeprojectmanager/qmakenodes.cpp +++ b/src/plugins/qmakeprojectmanager/qmakenodes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakenodes.h b/src/plugins/qmakeprojectmanager/qmakenodes.h index ba536363aef..b34c40b2dcc 100644 --- a/src/plugins/qmakeprojectmanager/qmakenodes.h +++ b/src/plugins/qmakeprojectmanager/qmakenodes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeparser.cpp b/src/plugins/qmakeprojectmanager/qmakeparser.cpp index 100d9a80cbe..f4e8ac63a00 100644 --- a/src/plugins/qmakeprojectmanager/qmakeparser.cpp +++ b/src/plugins/qmakeprojectmanager/qmakeparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeparser.h b/src/plugins/qmakeprojectmanager/qmakeparser.h index 68b73aa15e3..38d1d63f0f7 100644 --- a/src/plugins/qmakeprojectmanager/qmakeparser.h +++ b/src/plugins/qmakeprojectmanager/qmakeparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeproject.cpp b/src/plugins/qmakeprojectmanager/qmakeproject.cpp index 3901ba14e16..5951e7a58da 100644 --- a/src/plugins/qmakeprojectmanager/qmakeproject.cpp +++ b/src/plugins/qmakeprojectmanager/qmakeproject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeproject.h b/src/plugins/qmakeprojectmanager/qmakeproject.h index fbab9a573f7..acb95159e8e 100644 --- a/src/plugins/qmakeprojectmanager/qmakeproject.h +++ b/src/plugins/qmakeprojectmanager/qmakeproject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectconfigwidget.cpp b/src/plugins/qmakeprojectmanager/qmakeprojectconfigwidget.cpp index 82292aea24e..389f78deeec 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectconfigwidget.cpp +++ b/src/plugins/qmakeprojectmanager/qmakeprojectconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectconfigwidget.h b/src/plugins/qmakeprojectmanager/qmakeprojectconfigwidget.h index 2750f43d401..c8ae2102330 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectconfigwidget.h +++ b/src/plugins/qmakeprojectmanager/qmakeprojectconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectimporter.cpp b/src/plugins/qmakeprojectmanager/qmakeprojectimporter.cpp index 2ec868ba11e..37fd4da1ac5 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectimporter.cpp +++ b/src/plugins/qmakeprojectmanager/qmakeprojectimporter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectimporter.h b/src/plugins/qmakeprojectmanager/qmakeprojectimporter.h index 328b7175fe8..05033e880f4 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectimporter.h +++ b/src/plugins/qmakeprojectmanager/qmakeprojectimporter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectmanager.cpp b/src/plugins/qmakeprojectmanager/qmakeprojectmanager.cpp index e1d49e8015f..160924023d1 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectmanager.cpp +++ b/src/plugins/qmakeprojectmanager/qmakeprojectmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectmanager.h b/src/plugins/qmakeprojectmanager/qmakeprojectmanager.h index c086a0b1043..ca7314b6ec7 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectmanager.h +++ b/src/plugins/qmakeprojectmanager/qmakeprojectmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectmanager_global.h b/src/plugins/qmakeprojectmanager/qmakeprojectmanager_global.h index efb1c818270..00eee4eb45c 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectmanager_global.h +++ b/src/plugins/qmakeprojectmanager/qmakeprojectmanager_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectmanagerconstants.h b/src/plugins/qmakeprojectmanager/qmakeprojectmanagerconstants.h index 349ba53977d..45f0a4d49b9 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectmanagerconstants.h +++ b/src/plugins/qmakeprojectmanager/qmakeprojectmanagerconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.cpp b/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.cpp index b5763e5d14b..bd9aef8bd4e 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.cpp +++ b/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.h b/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.h index 974458d33c1..1d9688881ab 100644 --- a/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.h +++ b/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakerunconfigurationfactory.cpp b/src/plugins/qmakeprojectmanager/qmakerunconfigurationfactory.cpp index cf716fce4b3..d644e8a0941 100644 --- a/src/plugins/qmakeprojectmanager/qmakerunconfigurationfactory.cpp +++ b/src/plugins/qmakeprojectmanager/qmakerunconfigurationfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakerunconfigurationfactory.h b/src/plugins/qmakeprojectmanager/qmakerunconfigurationfactory.h index 677ad12e21b..8704e47edbe 100644 --- a/src/plugins/qmakeprojectmanager/qmakerunconfigurationfactory.h +++ b/src/plugins/qmakeprojectmanager/qmakerunconfigurationfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakestep.cpp b/src/plugins/qmakeprojectmanager/qmakestep.cpp index 76d98ecb41f..b6e061f4ced 100644 --- a/src/plugins/qmakeprojectmanager/qmakestep.cpp +++ b/src/plugins/qmakeprojectmanager/qmakestep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qmakestep.h b/src/plugins/qmakeprojectmanager/qmakestep.h index 9eb537e146e..e68305d178f 100644 --- a/src/plugins/qmakeprojectmanager/qmakestep.h +++ b/src/plugins/qmakeprojectmanager/qmakestep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qtmodulesinfo.cpp b/src/plugins/qmakeprojectmanager/qtmodulesinfo.cpp index 4c303d0d44a..a37535b3983 100644 --- a/src/plugins/qmakeprojectmanager/qtmodulesinfo.cpp +++ b/src/plugins/qmakeprojectmanager/qtmodulesinfo.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/qtmodulesinfo.h b/src/plugins/qmakeprojectmanager/qtmodulesinfo.h index ffb41b655f3..74d5351201e 100644 --- a/src/plugins/qmakeprojectmanager/qtmodulesinfo.h +++ b/src/plugins/qmakeprojectmanager/qtmodulesinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/abstractmobileapp.cpp b/src/plugins/qmakeprojectmanager/wizards/abstractmobileapp.cpp index f5be66b641f..688b23b2af5 100644 --- a/src/plugins/qmakeprojectmanager/wizards/abstractmobileapp.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/abstractmobileapp.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/abstractmobileapp.h b/src/plugins/qmakeprojectmanager/wizards/abstractmobileapp.h index 50326eb78ab..86f1a19fb67 100644 --- a/src/plugins/qmakeprojectmanager/wizards/abstractmobileapp.h +++ b/src/plugins/qmakeprojectmanager/wizards/abstractmobileapp.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/abstractmobileappwizard.cpp b/src/plugins/qmakeprojectmanager/wizards/abstractmobileappwizard.cpp index e8e021611fd..bbbd05beba9 100644 --- a/src/plugins/qmakeprojectmanager/wizards/abstractmobileappwizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/abstractmobileappwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/abstractmobileappwizard.h b/src/plugins/qmakeprojectmanager/wizards/abstractmobileappwizard.h index 6968437c653..0991b90bfa5 100644 --- a/src/plugins/qmakeprojectmanager/wizards/abstractmobileappwizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/abstractmobileappwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/consoleappwizard.cpp b/src/plugins/qmakeprojectmanager/wizards/consoleappwizard.cpp index b3dc87af80a..7f1f764441d 100644 --- a/src/plugins/qmakeprojectmanager/wizards/consoleappwizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/consoleappwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/consoleappwizard.h b/src/plugins/qmakeprojectmanager/wizards/consoleappwizard.h index 56301b0932c..5dffb475e39 100644 --- a/src/plugins/qmakeprojectmanager/wizards/consoleappwizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/consoleappwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/consoleappwizarddialog.cpp b/src/plugins/qmakeprojectmanager/wizards/consoleappwizarddialog.cpp index 7b452b3d8b3..125313ef6bc 100644 --- a/src/plugins/qmakeprojectmanager/wizards/consoleappwizarddialog.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/consoleappwizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/consoleappwizarddialog.h b/src/plugins/qmakeprojectmanager/wizards/consoleappwizarddialog.h index 6e26095340e..9e509549f3c 100644 --- a/src/plugins/qmakeprojectmanager/wizards/consoleappwizarddialog.h +++ b/src/plugins/qmakeprojectmanager/wizards/consoleappwizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizard.cpp b/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizard.cpp index 514a9c67fe3..08ff9d0b392 100644 --- a/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizard.h b/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizard.h index ec1684cbe85..65167ef5b05 100644 --- a/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizarddialog.cpp b/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizarddialog.cpp index 35830c7e2d2..8d896e7286d 100644 --- a/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizarddialog.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizarddialog.h b/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizarddialog.h index 02fc69ca9d8..bb74eb71f28 100644 --- a/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizarddialog.h +++ b/src/plugins/qmakeprojectmanager/wizards/emptyprojectwizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/filespage.cpp b/src/plugins/qmakeprojectmanager/wizards/filespage.cpp index ff0127c8638..1c85849b36e 100644 --- a/src/plugins/qmakeprojectmanager/wizards/filespage.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/filespage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/filespage.h b/src/plugins/qmakeprojectmanager/wizards/filespage.h index 6b63d942687..79312ac0490 100644 --- a/src/plugins/qmakeprojectmanager/wizards/filespage.h +++ b/src/plugins/qmakeprojectmanager/wizards/filespage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/guiappwizard.cpp b/src/plugins/qmakeprojectmanager/wizards/guiappwizard.cpp index a4a7af58f98..05300892faf 100644 --- a/src/plugins/qmakeprojectmanager/wizards/guiappwizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/guiappwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/guiappwizard.h b/src/plugins/qmakeprojectmanager/wizards/guiappwizard.h index 812157de4d5..d156940302e 100644 --- a/src/plugins/qmakeprojectmanager/wizards/guiappwizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/guiappwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/guiappwizarddialog.cpp b/src/plugins/qmakeprojectmanager/wizards/guiappwizarddialog.cpp index 8b810dd7c0e..5067dd80901 100644 --- a/src/plugins/qmakeprojectmanager/wizards/guiappwizarddialog.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/guiappwizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/guiappwizarddialog.h b/src/plugins/qmakeprojectmanager/wizards/guiappwizarddialog.h index 7ee7eff14e8..1ec00ccff49 100644 --- a/src/plugins/qmakeprojectmanager/wizards/guiappwizarddialog.h +++ b/src/plugins/qmakeprojectmanager/wizards/guiappwizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/html5app.cpp b/src/plugins/qmakeprojectmanager/wizards/html5app.cpp index 53187641d14..5c7d4e23543 100644 --- a/src/plugins/qmakeprojectmanager/wizards/html5app.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/html5app.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/html5app.h b/src/plugins/qmakeprojectmanager/wizards/html5app.h index e1ca1794519..bb05cce8709 100644 --- a/src/plugins/qmakeprojectmanager/wizards/html5app.h +++ b/src/plugins/qmakeprojectmanager/wizards/html5app.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/html5appwizard.cpp b/src/plugins/qmakeprojectmanager/wizards/html5appwizard.cpp index dbe8dbba651..a058add5102 100644 --- a/src/plugins/qmakeprojectmanager/wizards/html5appwizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/html5appwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/html5appwizard.h b/src/plugins/qmakeprojectmanager/wizards/html5appwizard.h index d82ce8f6a45..afb92cd0722 100644 --- a/src/plugins/qmakeprojectmanager/wizards/html5appwizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/html5appwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/html5appwizardpages.cpp b/src/plugins/qmakeprojectmanager/wizards/html5appwizardpages.cpp index 45c7278efed..b4c41d845b9 100644 --- a/src/plugins/qmakeprojectmanager/wizards/html5appwizardpages.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/html5appwizardpages.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/html5appwizardpages.h b/src/plugins/qmakeprojectmanager/wizards/html5appwizardpages.h index c90ecadb1c1..091f98ea788 100644 --- a/src/plugins/qmakeprojectmanager/wizards/html5appwizardpages.h +++ b/src/plugins/qmakeprojectmanager/wizards/html5appwizardpages.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/libraryparameters.cpp b/src/plugins/qmakeprojectmanager/wizards/libraryparameters.cpp index 17dddc6b620..25cddea4b4e 100644 --- a/src/plugins/qmakeprojectmanager/wizards/libraryparameters.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/libraryparameters.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/libraryparameters.h b/src/plugins/qmakeprojectmanager/wizards/libraryparameters.h index 06ba9b5e762..1a581e328a6 100644 --- a/src/plugins/qmakeprojectmanager/wizards/libraryparameters.h +++ b/src/plugins/qmakeprojectmanager/wizards/libraryparameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/librarywizard.cpp b/src/plugins/qmakeprojectmanager/wizards/librarywizard.cpp index a13ed3fede2..789ab84561a 100644 --- a/src/plugins/qmakeprojectmanager/wizards/librarywizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/librarywizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/librarywizard.h b/src/plugins/qmakeprojectmanager/wizards/librarywizard.h index 5ad87a7e5c6..9747aa3cdb7 100644 --- a/src/plugins/qmakeprojectmanager/wizards/librarywizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/librarywizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/librarywizarddialog.cpp b/src/plugins/qmakeprojectmanager/wizards/librarywizarddialog.cpp index 7dfbc686491..c08b3b17d53 100644 --- a/src/plugins/qmakeprojectmanager/wizards/librarywizarddialog.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/librarywizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/librarywizarddialog.h b/src/plugins/qmakeprojectmanager/wizards/librarywizarddialog.h index d746741a826..2fc073de2f6 100644 --- a/src/plugins/qmakeprojectmanager/wizards/librarywizarddialog.h +++ b/src/plugins/qmakeprojectmanager/wizards/librarywizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/modulespage.cpp b/src/plugins/qmakeprojectmanager/wizards/modulespage.cpp index 2dd62dd88d5..7178d16367a 100644 --- a/src/plugins/qmakeprojectmanager/wizards/modulespage.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/modulespage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/modulespage.h b/src/plugins/qmakeprojectmanager/wizards/modulespage.h index 7bd00d0aa60..97ddf7fe105 100644 --- a/src/plugins/qmakeprojectmanager/wizards/modulespage.h +++ b/src/plugins/qmakeprojectmanager/wizards/modulespage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtprojectparameters.cpp b/src/plugins/qmakeprojectmanager/wizards/qtprojectparameters.cpp index d7e6f10008c..4c23a44ab02 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtprojectparameters.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/qtprojectparameters.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtprojectparameters.h b/src/plugins/qmakeprojectmanager/wizards/qtprojectparameters.h index 2ded15d8130..2345ae1547d 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtprojectparameters.h +++ b/src/plugins/qmakeprojectmanager/wizards/qtprojectparameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtquickapp.cpp b/src/plugins/qmakeprojectmanager/wizards/qtquickapp.cpp index 169afe0cace..0509239e565 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtquickapp.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/qtquickapp.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtquickapp.h b/src/plugins/qmakeprojectmanager/wizards/qtquickapp.h index e421a42dcb4..00234bbd2c9 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtquickapp.h +++ b/src/plugins/qmakeprojectmanager/wizards/qtquickapp.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtquickappwizard.cpp b/src/plugins/qmakeprojectmanager/wizards/qtquickappwizard.cpp index f2481916889..293805f92e8 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtquickappwizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/qtquickappwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtquickappwizard.h b/src/plugins/qmakeprojectmanager/wizards/qtquickappwizard.h index a55c6f746f6..5348dcd5f53 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtquickappwizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/qtquickappwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtquickappwizardpages.cpp b/src/plugins/qmakeprojectmanager/wizards/qtquickappwizardpages.cpp index 899b6722267..490b50b4924 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtquickappwizardpages.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/qtquickappwizardpages.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtquickappwizardpages.h b/src/plugins/qmakeprojectmanager/wizards/qtquickappwizardpages.h index 461b3da0a11..fd6b0ffaa5f 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtquickappwizardpages.h +++ b/src/plugins/qmakeprojectmanager/wizards/qtquickappwizardpages.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtwizard.cpp b/src/plugins/qmakeprojectmanager/wizards/qtwizard.cpp index 3641d8660c2..f8cb6ea09d5 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtwizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/qtwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/qtwizard.h b/src/plugins/qmakeprojectmanager/wizards/qtwizard.h index 2a674216212..bc4c86124ca 100644 --- a/src/plugins/qmakeprojectmanager/wizards/qtwizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/qtwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.cpp b/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.cpp index 53b5f123a77..3631fb02bd2 100644 --- a/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.h b/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.h index 889b5ed8551..204576cd033 100644 --- a/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizarddialog.cpp b/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizarddialog.cpp index bc8e73a093b..37cc3b17462 100644 --- a/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizarddialog.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizarddialog.h b/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizarddialog.h index 7e0388cdbc0..e0c6a586a3a 100644 --- a/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizarddialog.h +++ b/src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/testwizard.cpp b/src/plugins/qmakeprojectmanager/wizards/testwizard.cpp index 49862379cff..65512819bdc 100644 --- a/src/plugins/qmakeprojectmanager/wizards/testwizard.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/testwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/testwizard.h b/src/plugins/qmakeprojectmanager/wizards/testwizard.h index 5dbc77566e1..7471e0e1144 100644 --- a/src/plugins/qmakeprojectmanager/wizards/testwizard.h +++ b/src/plugins/qmakeprojectmanager/wizards/testwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/testwizarddialog.cpp b/src/plugins/qmakeprojectmanager/wizards/testwizarddialog.cpp index 7f4e1e1f4b5..4d1d2710230 100644 --- a/src/plugins/qmakeprojectmanager/wizards/testwizarddialog.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/testwizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/testwizarddialog.h b/src/plugins/qmakeprojectmanager/wizards/testwizarddialog.h index 75192c824b4..6ac6c1c13b9 100644 --- a/src/plugins/qmakeprojectmanager/wizards/testwizarddialog.h +++ b/src/plugins/qmakeprojectmanager/wizards/testwizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/testwizardpage.cpp b/src/plugins/qmakeprojectmanager/wizards/testwizardpage.cpp index b48f405064f..b71db214ae7 100644 --- a/src/plugins/qmakeprojectmanager/wizards/testwizardpage.cpp +++ b/src/plugins/qmakeprojectmanager/wizards/testwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmakeprojectmanager/wizards/testwizardpage.h b/src/plugins/qmakeprojectmanager/wizards/testwizardpage.h index 52e46b36908..aa876262ffc 100644 --- a/src/plugins/qmakeprojectmanager/wizards/testwizardpage.h +++ b/src/plugins/qmakeprojectmanager/wizards/testwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/QmlDesigner.pluginspec.in b/src/plugins/qmldesigner/QmlDesigner.pluginspec.in index 0ff37672d2c..f8fd6670e96 100644 --- a/src/plugins/qmldesigner/QmlDesigner.pluginspec.in +++ b/src/plugins/qmldesigner/QmlDesigner.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"QmlDesigner\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/qmldesigner/components/componentcore/abstractdesigneraction.h b/src/plugins/qmldesigner/components/componentcore/abstractdesigneraction.h index 1f21da33743..aaee498e96d 100644 --- a/src/plugins/qmldesigner/components/componentcore/abstractdesigneraction.h +++ b/src/plugins/qmldesigner/components/componentcore/abstractdesigneraction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/addtabtotabviewdialog.cpp b/src/plugins/qmldesigner/components/componentcore/addtabtotabviewdialog.cpp index 4df2b0e689a..3e195f300b6 100644 --- a/src/plugins/qmldesigner/components/componentcore/addtabtotabviewdialog.cpp +++ b/src/plugins/qmldesigner/components/componentcore/addtabtotabviewdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/addtabtotabviewdialog.h b/src/plugins/qmldesigner/components/componentcore/addtabtotabviewdialog.h index a3e240ce3ef..c70bf265122 100644 --- a/src/plugins/qmldesigner/components/componentcore/addtabtotabviewdialog.h +++ b/src/plugins/qmldesigner/components/componentcore/addtabtotabviewdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/componentcore_constants.h b/src/plugins/qmldesigner/components/componentcore/componentcore_constants.h index 289c1e8c87e..6e898fdc3bd 100644 --- a/src/plugins/qmldesigner/components/componentcore/componentcore_constants.h +++ b/src/plugins/qmldesigner/components/componentcore/componentcore_constants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/crumblebar.cpp b/src/plugins/qmldesigner/components/componentcore/crumblebar.cpp index 891a82c4f7c..26a228901f5 100644 --- a/src/plugins/qmldesigner/components/componentcore/crumblebar.cpp +++ b/src/plugins/qmldesigner/components/componentcore/crumblebar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/crumblebar.h b/src/plugins/qmldesigner/components/componentcore/crumblebar.h index 632edf3f2de..e3db03b4e3e 100644 --- a/src/plugins/qmldesigner/components/componentcore/crumblebar.h +++ b/src/plugins/qmldesigner/components/componentcore/crumblebar.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/defaultdesigneraction.cpp b/src/plugins/qmldesigner/components/componentcore/defaultdesigneraction.cpp index 261c0dc641a..28fa5bcba18 100644 --- a/src/plugins/qmldesigner/components/componentcore/defaultdesigneraction.cpp +++ b/src/plugins/qmldesigner/components/componentcore/defaultdesigneraction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/defaultdesigneraction.h b/src/plugins/qmldesigner/components/componentcore/defaultdesigneraction.h index b0610cb863e..c6291fa3a1d 100644 --- a/src/plugins/qmldesigner/components/componentcore/defaultdesigneraction.h +++ b/src/plugins/qmldesigner/components/componentcore/defaultdesigneraction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/designeractionmanager.cpp b/src/plugins/qmldesigner/components/componentcore/designeractionmanager.cpp index d6e077561a0..52b4c8904d2 100644 --- a/src/plugins/qmldesigner/components/componentcore/designeractionmanager.cpp +++ b/src/plugins/qmldesigner/components/componentcore/designeractionmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/designeractionmanager.h b/src/plugins/qmldesigner/components/componentcore/designeractionmanager.h index 8266cd778a8..b7c4ce6a9db 100644 --- a/src/plugins/qmldesigner/components/componentcore/designeractionmanager.h +++ b/src/plugins/qmldesigner/components/componentcore/designeractionmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/designeractionmanagerview.cpp b/src/plugins/qmldesigner/components/componentcore/designeractionmanagerview.cpp index b946fd3e00f..43a35187664 100644 --- a/src/plugins/qmldesigner/components/componentcore/designeractionmanagerview.cpp +++ b/src/plugins/qmldesigner/components/componentcore/designeractionmanagerview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/designeractionmanagerview.h b/src/plugins/qmldesigner/components/componentcore/designeractionmanagerview.h index dee7021b3cf..0db90389f52 100644 --- a/src/plugins/qmldesigner/components/componentcore/designeractionmanagerview.h +++ b/src/plugins/qmldesigner/components/componentcore/designeractionmanagerview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu.cpp b/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu.cpp index 6a8a717ac4a..68073d63cc9 100644 --- a/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu.cpp +++ b/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu.h b/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu.h index d13ef732bd2..4f805d1470e 100644 --- a/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu.h +++ b/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu_helper.cpp b/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu_helper.cpp index f05fb1db939..a82f2013554 100644 --- a/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu_helper.cpp +++ b/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu_helper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu_helper.h b/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu_helper.h index 4fb8afde25c..f9821ded616 100644 --- a/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu_helper.h +++ b/src/plugins/qmldesigner/components/componentcore/modelnodecontextmenu_helper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.cpp b/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.cpp index 0203f287f61..405f4c6d174 100644 --- a/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.cpp +++ b/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.h b/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.h index a94421a8a8d..b8e4273e2e0 100644 --- a/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.h +++ b/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/selectioncontext.cpp b/src/plugins/qmldesigner/components/componentcore/selectioncontext.cpp index 5c01a69debd..e5727a76b4a 100644 --- a/src/plugins/qmldesigner/components/componentcore/selectioncontext.cpp +++ b/src/plugins/qmldesigner/components/componentcore/selectioncontext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/selectioncontext.h b/src/plugins/qmldesigner/components/componentcore/selectioncontext.h index e5a4705af4b..06c41156fc2 100644 --- a/src/plugins/qmldesigner/components/componentcore/selectioncontext.h +++ b/src/plugins/qmldesigner/components/componentcore/selectioncontext.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.cpp b/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.cpp index 82411e6b989..9960a85dc63 100644 --- a/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.cpp +++ b/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.h b/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.h index d5fa348281e..404a13719af 100644 --- a/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.h +++ b/src/plugins/qmldesigner/components/componentcore/tabviewdesigneraction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/debugview/debugview.cpp b/src/plugins/qmldesigner/components/debugview/debugview.cpp index a13c9c1fe7a..9a32541df93 100644 --- a/src/plugins/qmldesigner/components/debugview/debugview.cpp +++ b/src/plugins/qmldesigner/components/debugview/debugview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/debugview/debugview.h b/src/plugins/qmldesigner/components/debugview/debugview.h index 88915ce68f9..f61be38424d 100644 --- a/src/plugins/qmldesigner/components/debugview/debugview.h +++ b/src/plugins/qmldesigner/components/debugview/debugview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/debugview/debugviewwidget.cpp b/src/plugins/qmldesigner/components/debugview/debugviewwidget.cpp index 9269ad20828..3e80fc2de62 100644 --- a/src/plugins/qmldesigner/components/debugview/debugviewwidget.cpp +++ b/src/plugins/qmldesigner/components/debugview/debugviewwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/debugview/debugviewwidget.h b/src/plugins/qmldesigner/components/debugview/debugviewwidget.h index d1b8756240f..f9433f0cf02 100644 --- a/src/plugins/qmldesigner/components/debugview/debugviewwidget.h +++ b/src/plugins/qmldesigner/components/debugview/debugviewwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/abstractformeditortool.cpp b/src/plugins/qmldesigner/components/formeditor/abstractformeditortool.cpp index 17ad8e469e1..7ca9b77d70f 100644 --- a/src/plugins/qmldesigner/components/formeditor/abstractformeditortool.cpp +++ b/src/plugins/qmldesigner/components/formeditor/abstractformeditortool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/abstractformeditortool.h b/src/plugins/qmldesigner/components/formeditor/abstractformeditortool.h index 5238eb81764..d1945fc9e10 100644 --- a/src/plugins/qmldesigner/components/formeditor/abstractformeditortool.h +++ b/src/plugins/qmldesigner/components/formeditor/abstractformeditortool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp b/src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp index 91ad8bdf67a..ac5c69af4b6 100644 --- a/src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/anchorindicator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/anchorindicator.h b/src/plugins/qmldesigner/components/formeditor/anchorindicator.h index 307fcc3e146..bc50d4df5ea 100644 --- a/src/plugins/qmldesigner/components/formeditor/anchorindicator.h +++ b/src/plugins/qmldesigner/components/formeditor/anchorindicator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/anchorindicatorgraphicsitem.cpp b/src/plugins/qmldesigner/components/formeditor/anchorindicatorgraphicsitem.cpp index 5f61d1a81ec..7e7a21a67bb 100644 --- a/src/plugins/qmldesigner/components/formeditor/anchorindicatorgraphicsitem.cpp +++ b/src/plugins/qmldesigner/components/formeditor/anchorindicatorgraphicsitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/anchorindicatorgraphicsitem.h b/src/plugins/qmldesigner/components/formeditor/anchorindicatorgraphicsitem.h index 75b859a9508..b861c25d9b9 100644 --- a/src/plugins/qmldesigner/components/formeditor/anchorindicatorgraphicsitem.h +++ b/src/plugins/qmldesigner/components/formeditor/anchorindicatorgraphicsitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/bindingindicator.cpp b/src/plugins/qmldesigner/components/formeditor/bindingindicator.cpp index 3753a039590..b9f587670e9 100644 --- a/src/plugins/qmldesigner/components/formeditor/bindingindicator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/bindingindicator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/bindingindicator.h b/src/plugins/qmldesigner/components/formeditor/bindingindicator.h index 86c728030e1..b96b4913647 100644 --- a/src/plugins/qmldesigner/components/formeditor/bindingindicator.h +++ b/src/plugins/qmldesigner/components/formeditor/bindingindicator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/bindingindicatorgraphicsitem.cpp b/src/plugins/qmldesigner/components/formeditor/bindingindicatorgraphicsitem.cpp index 3876b036028..f2e87a50183 100644 --- a/src/plugins/qmldesigner/components/formeditor/bindingindicatorgraphicsitem.cpp +++ b/src/plugins/qmldesigner/components/formeditor/bindingindicatorgraphicsitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/bindingindicatorgraphicsitem.h b/src/plugins/qmldesigner/components/formeditor/bindingindicatorgraphicsitem.h index 6e259b70bd0..57da48f17d6 100644 --- a/src/plugins/qmldesigner/components/formeditor/bindingindicatorgraphicsitem.h +++ b/src/plugins/qmldesigner/components/formeditor/bindingindicatorgraphicsitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/contentnoteditableindicator.cpp b/src/plugins/qmldesigner/components/formeditor/contentnoteditableindicator.cpp index 6763b10f4b9..098cae7a17a 100644 --- a/src/plugins/qmldesigner/components/formeditor/contentnoteditableindicator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/contentnoteditableindicator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/contentnoteditableindicator.h b/src/plugins/qmldesigner/components/formeditor/contentnoteditableindicator.h index 2567bfaab1b..a61340f9f18 100644 --- a/src/plugins/qmldesigner/components/formeditor/contentnoteditableindicator.h +++ b/src/plugins/qmldesigner/components/formeditor/contentnoteditableindicator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/controlelement.cpp b/src/plugins/qmldesigner/components/formeditor/controlelement.cpp index 574d9a07176..b4452a3a074 100644 --- a/src/plugins/qmldesigner/components/formeditor/controlelement.cpp +++ b/src/plugins/qmldesigner/components/formeditor/controlelement.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/controlelement.h b/src/plugins/qmldesigner/components/formeditor/controlelement.h index aef63fa4218..cf19a38487b 100644 --- a/src/plugins/qmldesigner/components/formeditor/controlelement.h +++ b/src/plugins/qmldesigner/components/formeditor/controlelement.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/dragtool.cpp b/src/plugins/qmldesigner/components/formeditor/dragtool.cpp index 257c02b9da2..d2c7e321df1 100644 --- a/src/plugins/qmldesigner/components/formeditor/dragtool.cpp +++ b/src/plugins/qmldesigner/components/formeditor/dragtool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/dragtool.h b/src/plugins/qmldesigner/components/formeditor/dragtool.h index da1084163fc..dbcb0285081 100644 --- a/src/plugins/qmldesigner/components/formeditor/dragtool.h +++ b/src/plugins/qmldesigner/components/formeditor/dragtool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorgraphicsview.cpp b/src/plugins/qmldesigner/components/formeditor/formeditorgraphicsview.cpp index cf7cd7770a1..ec0e09ebd3a 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorgraphicsview.cpp +++ b/src/plugins/qmldesigner/components/formeditor/formeditorgraphicsview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorgraphicsview.h b/src/plugins/qmldesigner/components/formeditor/formeditorgraphicsview.h index 8b53691f0fc..8b74a491bad 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorgraphicsview.h +++ b/src/plugins/qmldesigner/components/formeditor/formeditorgraphicsview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp b/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp index 677d13bd81d..14305590a23 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp +++ b/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditoritem.h b/src/plugins/qmldesigner/components/formeditor/formeditoritem.h index ddc5c76b404..b6558eff7f5 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditoritem.h +++ b/src/plugins/qmldesigner/components/formeditor/formeditoritem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditornodeinstanceview.cpp b/src/plugins/qmldesigner/components/formeditor/formeditornodeinstanceview.cpp index 7b3c455cf57..c80e4f04a64 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditornodeinstanceview.cpp +++ b/src/plugins/qmldesigner/components/formeditor/formeditornodeinstanceview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditornodeinstanceview.h b/src/plugins/qmldesigner/components/formeditor/formeditornodeinstanceview.h index 8e433cd4a3c..3be1875093a 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditornodeinstanceview.h +++ b/src/plugins/qmldesigner/components/formeditor/formeditornodeinstanceview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorscene.cpp b/src/plugins/qmldesigner/components/formeditor/formeditorscene.cpp index d68bf5ce9a8..92583bb29b3 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorscene.cpp +++ b/src/plugins/qmldesigner/components/formeditor/formeditorscene.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorscene.h b/src/plugins/qmldesigner/components/formeditor/formeditorscene.h index 78728724d3b..744c842c864 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorscene.h +++ b/src/plugins/qmldesigner/components/formeditor/formeditorscene.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorsubwindow.cpp b/src/plugins/qmldesigner/components/formeditor/formeditorsubwindow.cpp index ff374950b89..f77ff1f204c 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorsubwindow.cpp +++ b/src/plugins/qmldesigner/components/formeditor/formeditorsubwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorsubwindow.h b/src/plugins/qmldesigner/components/formeditor/formeditorsubwindow.h index 44924fca1cb..a1e44ff8fcb 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorsubwindow.h +++ b/src/plugins/qmldesigner/components/formeditor/formeditorsubwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorview.cpp b/src/plugins/qmldesigner/components/formeditor/formeditorview.cpp index e1c67f76be2..bc986805453 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorview.cpp +++ b/src/plugins/qmldesigner/components/formeditor/formeditorview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorview.h b/src/plugins/qmldesigner/components/formeditor/formeditorview.h index bb5fcc6d876..f1fd43de3a4 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorview.h +++ b/src/plugins/qmldesigner/components/formeditor/formeditorview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorwidget.cpp b/src/plugins/qmldesigner/components/formeditor/formeditorwidget.cpp index 1c81a28b2a5..c9c1a63b9bc 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorwidget.cpp +++ b/src/plugins/qmldesigner/components/formeditor/formeditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorwidget.h b/src/plugins/qmldesigner/components/formeditor/formeditorwidget.h index 53efd906e18..1847e60ea07 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorwidget.h +++ b/src/plugins/qmldesigner/components/formeditor/formeditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/itemutilfunctions.cpp b/src/plugins/qmldesigner/components/formeditor/itemutilfunctions.cpp index 2abbbaea6c0..65d45dac79b 100644 --- a/src/plugins/qmldesigner/components/formeditor/itemutilfunctions.cpp +++ b/src/plugins/qmldesigner/components/formeditor/itemutilfunctions.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/itemutilfunctions.h b/src/plugins/qmldesigner/components/formeditor/itemutilfunctions.h index 312dba5aca7..62611be7a43 100644 --- a/src/plugins/qmldesigner/components/formeditor/itemutilfunctions.h +++ b/src/plugins/qmldesigner/components/formeditor/itemutilfunctions.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/layeritem.cpp b/src/plugins/qmldesigner/components/formeditor/layeritem.cpp index 06b76194f02..2179e02b436 100644 --- a/src/plugins/qmldesigner/components/formeditor/layeritem.cpp +++ b/src/plugins/qmldesigner/components/formeditor/layeritem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/layeritem.h b/src/plugins/qmldesigner/components/formeditor/layeritem.h index b26b93040e8..531fcccf41f 100644 --- a/src/plugins/qmldesigner/components/formeditor/layeritem.h +++ b/src/plugins/qmldesigner/components/formeditor/layeritem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/lineeditaction.cpp b/src/plugins/qmldesigner/components/formeditor/lineeditaction.cpp index bf311cff25d..98bc9f11289 100644 --- a/src/plugins/qmldesigner/components/formeditor/lineeditaction.cpp +++ b/src/plugins/qmldesigner/components/formeditor/lineeditaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/lineeditaction.h b/src/plugins/qmldesigner/components/formeditor/lineeditaction.h index e9a5931388c..3bd43b78a9e 100644 --- a/src/plugins/qmldesigner/components/formeditor/lineeditaction.h +++ b/src/plugins/qmldesigner/components/formeditor/lineeditaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/manipulatorlayeritem.h b/src/plugins/qmldesigner/components/formeditor/manipulatorlayeritem.h index 12ff2128f09..b593ecacbaa 100644 --- a/src/plugins/qmldesigner/components/formeditor/manipulatorlayeritem.h +++ b/src/plugins/qmldesigner/components/formeditor/manipulatorlayeritem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/movemanipulator.cpp b/src/plugins/qmldesigner/components/formeditor/movemanipulator.cpp index 4ac274afc74..0802bb166d2 100644 --- a/src/plugins/qmldesigner/components/formeditor/movemanipulator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/movemanipulator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/movemanipulator.h b/src/plugins/qmldesigner/components/formeditor/movemanipulator.h index 98647bb2def..58a2c68c0b5 100644 --- a/src/plugins/qmldesigner/components/formeditor/movemanipulator.h +++ b/src/plugins/qmldesigner/components/formeditor/movemanipulator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/movetool.cpp b/src/plugins/qmldesigner/components/formeditor/movetool.cpp index ddec0e2dcf3..e92fb8458db 100644 --- a/src/plugins/qmldesigner/components/formeditor/movetool.cpp +++ b/src/plugins/qmldesigner/components/formeditor/movetool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/movetool.h b/src/plugins/qmldesigner/components/formeditor/movetool.h index 0b5a9ac2a4a..6cabac5d13e 100644 --- a/src/plugins/qmldesigner/components/formeditor/movetool.h +++ b/src/plugins/qmldesigner/components/formeditor/movetool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/numberseriesaction.cpp b/src/plugins/qmldesigner/components/formeditor/numberseriesaction.cpp index b941f7f3551..90545dc4034 100644 --- a/src/plugins/qmldesigner/components/formeditor/numberseriesaction.cpp +++ b/src/plugins/qmldesigner/components/formeditor/numberseriesaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/numberseriesaction.h b/src/plugins/qmldesigner/components/formeditor/numberseriesaction.h index 2d91dfc390b..94184ecf63d 100644 --- a/src/plugins/qmldesigner/components/formeditor/numberseriesaction.h +++ b/src/plugins/qmldesigner/components/formeditor/numberseriesaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/onedimensionalcluster.cpp b/src/plugins/qmldesigner/components/formeditor/onedimensionalcluster.cpp index b6d382d91ed..04bc59d6ead 100644 --- a/src/plugins/qmldesigner/components/formeditor/onedimensionalcluster.cpp +++ b/src/plugins/qmldesigner/components/formeditor/onedimensionalcluster.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/onedimensionalcluster.h b/src/plugins/qmldesigner/components/formeditor/onedimensionalcluster.h index 4e1ae2b7096..ad7bc9232a6 100644 --- a/src/plugins/qmldesigner/components/formeditor/onedimensionalcluster.h +++ b/src/plugins/qmldesigner/components/formeditor/onedimensionalcluster.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizecontroller.cpp b/src/plugins/qmldesigner/components/formeditor/resizecontroller.cpp index 022c2aedea9..4310798c2df 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizecontroller.cpp +++ b/src/plugins/qmldesigner/components/formeditor/resizecontroller.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizecontroller.h b/src/plugins/qmldesigner/components/formeditor/resizecontroller.h index e5f47379081..873d68d3ff3 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizecontroller.h +++ b/src/plugins/qmldesigner/components/formeditor/resizecontroller.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizehandleitem.cpp b/src/plugins/qmldesigner/components/formeditor/resizehandleitem.cpp index dc0fd0e18cf..5ed3d2e4c77 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizehandleitem.cpp +++ b/src/plugins/qmldesigner/components/formeditor/resizehandleitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizehandleitem.h b/src/plugins/qmldesigner/components/formeditor/resizehandleitem.h index 1de9b7ea010..2b8cc8786ac 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizehandleitem.h +++ b/src/plugins/qmldesigner/components/formeditor/resizehandleitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizeindicator.cpp b/src/plugins/qmldesigner/components/formeditor/resizeindicator.cpp index a1741c87244..a8e7aeca2da 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizeindicator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/resizeindicator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizeindicator.h b/src/plugins/qmldesigner/components/formeditor/resizeindicator.h index 203ab14e5cc..6632071371e 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizeindicator.h +++ b/src/plugins/qmldesigner/components/formeditor/resizeindicator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizemanipulator.cpp b/src/plugins/qmldesigner/components/formeditor/resizemanipulator.cpp index a872e4b0906..ccb21350682 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizemanipulator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/resizemanipulator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizemanipulator.h b/src/plugins/qmldesigner/components/formeditor/resizemanipulator.h index c3b274853ef..c443bac8ad1 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizemanipulator.h +++ b/src/plugins/qmldesigner/components/formeditor/resizemanipulator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizetool.cpp b/src/plugins/qmldesigner/components/formeditor/resizetool.cpp index 08fa85ff319..d293bc2ebd4 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizetool.cpp +++ b/src/plugins/qmldesigner/components/formeditor/resizetool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/resizetool.h b/src/plugins/qmldesigner/components/formeditor/resizetool.h index 81954b5e675..80d387d0e1e 100644 --- a/src/plugins/qmldesigner/components/formeditor/resizetool.h +++ b/src/plugins/qmldesigner/components/formeditor/resizetool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/rubberbandselectionmanipulator.cpp b/src/plugins/qmldesigner/components/formeditor/rubberbandselectionmanipulator.cpp index 727da8ef845..fa3a9ba60cc 100644 --- a/src/plugins/qmldesigner/components/formeditor/rubberbandselectionmanipulator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/rubberbandselectionmanipulator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/rubberbandselectionmanipulator.h b/src/plugins/qmldesigner/components/formeditor/rubberbandselectionmanipulator.h index 1f1c82ea1e6..5f2a95ab7d7 100644 --- a/src/plugins/qmldesigner/components/formeditor/rubberbandselectionmanipulator.h +++ b/src/plugins/qmldesigner/components/formeditor/rubberbandselectionmanipulator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/scaleitem.cpp b/src/plugins/qmldesigner/components/formeditor/scaleitem.cpp index 4f792af91fc..19f0f75ec0c 100644 --- a/src/plugins/qmldesigner/components/formeditor/scaleitem.cpp +++ b/src/plugins/qmldesigner/components/formeditor/scaleitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/scaleitem.h b/src/plugins/qmldesigner/components/formeditor/scaleitem.h index a6e1214f728..6f20d49f252 100644 --- a/src/plugins/qmldesigner/components/formeditor/scaleitem.h +++ b/src/plugins/qmldesigner/components/formeditor/scaleitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/scalemanipulator.cpp b/src/plugins/qmldesigner/components/formeditor/scalemanipulator.cpp index ac21f8f86e9..85d075f3df6 100644 --- a/src/plugins/qmldesigner/components/formeditor/scalemanipulator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/scalemanipulator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/scalemanipulator.h b/src/plugins/qmldesigner/components/formeditor/scalemanipulator.h index 263f232b709..3240d0b78c2 100644 --- a/src/plugins/qmldesigner/components/formeditor/scalemanipulator.h +++ b/src/plugins/qmldesigner/components/formeditor/scalemanipulator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/selectionindicator.cpp b/src/plugins/qmldesigner/components/formeditor/selectionindicator.cpp index 16364c9dd2f..f11bca4bffd 100644 --- a/src/plugins/qmldesigner/components/formeditor/selectionindicator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/selectionindicator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/selectionindicator.h b/src/plugins/qmldesigner/components/formeditor/selectionindicator.h index a3900eee74e..fa6738a239e 100644 --- a/src/plugins/qmldesigner/components/formeditor/selectionindicator.h +++ b/src/plugins/qmldesigner/components/formeditor/selectionindicator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/selectionrectangle.cpp b/src/plugins/qmldesigner/components/formeditor/selectionrectangle.cpp index c1857a28c1a..bb2e3b3ff74 100644 --- a/src/plugins/qmldesigner/components/formeditor/selectionrectangle.cpp +++ b/src/plugins/qmldesigner/components/formeditor/selectionrectangle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/selectionrectangle.h b/src/plugins/qmldesigner/components/formeditor/selectionrectangle.h index 0e18cf1bef0..b7274bc52b9 100644 --- a/src/plugins/qmldesigner/components/formeditor/selectionrectangle.h +++ b/src/plugins/qmldesigner/components/formeditor/selectionrectangle.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/selectiontool.cpp b/src/plugins/qmldesigner/components/formeditor/selectiontool.cpp index 3ecd9420247..fc7defbb88d 100644 --- a/src/plugins/qmldesigner/components/formeditor/selectiontool.cpp +++ b/src/plugins/qmldesigner/components/formeditor/selectiontool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/selectiontool.h b/src/plugins/qmldesigner/components/formeditor/selectiontool.h index c97141e5409..349bded6b7c 100644 --- a/src/plugins/qmldesigner/components/formeditor/selectiontool.h +++ b/src/plugins/qmldesigner/components/formeditor/selectiontool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/singleselectionmanipulator.cpp b/src/plugins/qmldesigner/components/formeditor/singleselectionmanipulator.cpp index 86e9d3874ac..082f4b979b4 100644 --- a/src/plugins/qmldesigner/components/formeditor/singleselectionmanipulator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/singleselectionmanipulator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/singleselectionmanipulator.h b/src/plugins/qmldesigner/components/formeditor/singleselectionmanipulator.h index 82556dc72b7..f45068a7c68 100644 --- a/src/plugins/qmldesigner/components/formeditor/singleselectionmanipulator.h +++ b/src/plugins/qmldesigner/components/formeditor/singleselectionmanipulator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/snapper.cpp b/src/plugins/qmldesigner/components/formeditor/snapper.cpp index 5b81e2ac8ed..a562dba8ea7 100644 --- a/src/plugins/qmldesigner/components/formeditor/snapper.cpp +++ b/src/plugins/qmldesigner/components/formeditor/snapper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/snapper.h b/src/plugins/qmldesigner/components/formeditor/snapper.h index 975cc78f2dc..f11822df8f4 100644 --- a/src/plugins/qmldesigner/components/formeditor/snapper.h +++ b/src/plugins/qmldesigner/components/formeditor/snapper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/snappinglinecreator.cpp b/src/plugins/qmldesigner/components/formeditor/snappinglinecreator.cpp index 0179af9d369..e2bf58a228b 100644 --- a/src/plugins/qmldesigner/components/formeditor/snappinglinecreator.cpp +++ b/src/plugins/qmldesigner/components/formeditor/snappinglinecreator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/snappinglinecreator.h b/src/plugins/qmldesigner/components/formeditor/snappinglinecreator.h index e3b4e7e2ac4..03c3ef0342e 100644 --- a/src/plugins/qmldesigner/components/formeditor/snappinglinecreator.h +++ b/src/plugins/qmldesigner/components/formeditor/snappinglinecreator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/toolbox.cpp b/src/plugins/qmldesigner/components/formeditor/toolbox.cpp index 0afb3aa7500..9c5f58e6945 100644 --- a/src/plugins/qmldesigner/components/formeditor/toolbox.cpp +++ b/src/plugins/qmldesigner/components/formeditor/toolbox.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/toolbox.h b/src/plugins/qmldesigner/components/formeditor/toolbox.h index b58cd0dd807..e8be00880b5 100644 --- a/src/plugins/qmldesigner/components/formeditor/toolbox.h +++ b/src/plugins/qmldesigner/components/formeditor/toolbox.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/zoomaction.cpp b/src/plugins/qmldesigner/components/formeditor/zoomaction.cpp index 718dedfb0dc..c055804df98 100644 --- a/src/plugins/qmldesigner/components/formeditor/zoomaction.cpp +++ b/src/plugins/qmldesigner/components/formeditor/zoomaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/formeditor/zoomaction.h b/src/plugins/qmldesigner/components/formeditor/zoomaction.h index 59f753b2ff6..3ea28f4512b 100644 --- a/src/plugins/qmldesigner/components/formeditor/zoomaction.h +++ b/src/plugins/qmldesigner/components/formeditor/zoomaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/importmanager/importlabel.cpp b/src/plugins/qmldesigner/components/importmanager/importlabel.cpp index 659bf777050..342ca492811 100644 --- a/src/plugins/qmldesigner/components/importmanager/importlabel.cpp +++ b/src/plugins/qmldesigner/components/importmanager/importlabel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/importmanager/importlabel.h b/src/plugins/qmldesigner/components/importmanager/importlabel.h index a76ffb61455..e0c1aa9012a 100644 --- a/src/plugins/qmldesigner/components/importmanager/importlabel.h +++ b/src/plugins/qmldesigner/components/importmanager/importlabel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/importmanager/importmanagercombobox.cpp b/src/plugins/qmldesigner/components/importmanager/importmanagercombobox.cpp index 31df15b0228..a8a60985f46 100644 --- a/src/plugins/qmldesigner/components/importmanager/importmanagercombobox.cpp +++ b/src/plugins/qmldesigner/components/importmanager/importmanagercombobox.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/importmanager/importmanagercombobox.h b/src/plugins/qmldesigner/components/importmanager/importmanagercombobox.h index 4770bdd359b..fce1589c7b9 100644 --- a/src/plugins/qmldesigner/components/importmanager/importmanagercombobox.h +++ b/src/plugins/qmldesigner/components/importmanager/importmanagercombobox.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/importmanager/importmanagerview.cpp b/src/plugins/qmldesigner/components/importmanager/importmanagerview.cpp index 5d91bfdcc78..d7689c413ee 100644 --- a/src/plugins/qmldesigner/components/importmanager/importmanagerview.cpp +++ b/src/plugins/qmldesigner/components/importmanager/importmanagerview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/importmanager/importmanagerview.h b/src/plugins/qmldesigner/components/importmanager/importmanagerview.h index 3e8bb196b86..2802a4e5f8c 100644 --- a/src/plugins/qmldesigner/components/importmanager/importmanagerview.h +++ b/src/plugins/qmldesigner/components/importmanager/importmanagerview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/importmanager/importswidget.cpp b/src/plugins/qmldesigner/components/importmanager/importswidget.cpp index b6cbbe8f75e..1fcabf5549e 100644 --- a/src/plugins/qmldesigner/components/importmanager/importswidget.cpp +++ b/src/plugins/qmldesigner/components/importmanager/importswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/importmanager/importswidget.h b/src/plugins/qmldesigner/components/importmanager/importswidget.h index 0938cbb13ef..36e24fc467f 100644 --- a/src/plugins/qmldesigner/components/importmanager/importswidget.h +++ b/src/plugins/qmldesigner/components/importmanager/importswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/componentaction.cpp b/src/plugins/qmldesigner/components/integration/componentaction.cpp index 194e3ebb083..69c6718c9c3 100644 --- a/src/plugins/qmldesigner/components/integration/componentaction.cpp +++ b/src/plugins/qmldesigner/components/integration/componentaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/componentaction.h b/src/plugins/qmldesigner/components/integration/componentaction.h index 875ddacc141..d0df2c48de7 100644 --- a/src/plugins/qmldesigner/components/integration/componentaction.h +++ b/src/plugins/qmldesigner/components/integration/componentaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/componentview.cpp b/src/plugins/qmldesigner/components/integration/componentview.cpp index 53f90a407a4..f13559daf37 100644 --- a/src/plugins/qmldesigner/components/integration/componentview.cpp +++ b/src/plugins/qmldesigner/components/integration/componentview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/componentview.h b/src/plugins/qmldesigner/components/integration/componentview.h index 5ec589b2a15..bf1fba2a5c3 100644 --- a/src/plugins/qmldesigner/components/integration/componentview.h +++ b/src/plugins/qmldesigner/components/integration/componentview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/designdocument.cpp b/src/plugins/qmldesigner/components/integration/designdocument.cpp index 0745710faef..1c0b6ecd997 100644 --- a/src/plugins/qmldesigner/components/integration/designdocument.cpp +++ b/src/plugins/qmldesigner/components/integration/designdocument.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/designdocument.h b/src/plugins/qmldesigner/components/integration/designdocument.h index 36261b99f4e..e1972be95b2 100644 --- a/src/plugins/qmldesigner/components/integration/designdocument.h +++ b/src/plugins/qmldesigner/components/integration/designdocument.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/designdocumentview.cpp b/src/plugins/qmldesigner/components/integration/designdocumentview.cpp index 6a11cf9360d..1625d57cf2b 100644 --- a/src/plugins/qmldesigner/components/integration/designdocumentview.cpp +++ b/src/plugins/qmldesigner/components/integration/designdocumentview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/designdocumentview.h b/src/plugins/qmldesigner/components/integration/designdocumentview.h index 6cd5bf43324..96cfb1d7b9c 100644 --- a/src/plugins/qmldesigner/components/integration/designdocumentview.h +++ b/src/plugins/qmldesigner/components/integration/designdocumentview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/stackedutilitypanelcontroller.cpp b/src/plugins/qmldesigner/components/integration/stackedutilitypanelcontroller.cpp index 0fc1f750e10..a6534e37be6 100644 --- a/src/plugins/qmldesigner/components/integration/stackedutilitypanelcontroller.cpp +++ b/src/plugins/qmldesigner/components/integration/stackedutilitypanelcontroller.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/stackedutilitypanelcontroller.h b/src/plugins/qmldesigner/components/integration/stackedutilitypanelcontroller.h index 09028695c3f..b9c6ab9ace4 100644 --- a/src/plugins/qmldesigner/components/integration/stackedutilitypanelcontroller.h +++ b/src/plugins/qmldesigner/components/integration/stackedutilitypanelcontroller.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/utilitypanelcontroller.cpp b/src/plugins/qmldesigner/components/integration/utilitypanelcontroller.cpp index f3953af9b64..d2edac4407c 100644 --- a/src/plugins/qmldesigner/components/integration/utilitypanelcontroller.cpp +++ b/src/plugins/qmldesigner/components/integration/utilitypanelcontroller.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/utilitypanelcontroller.h b/src/plugins/qmldesigner/components/integration/utilitypanelcontroller.h index 74199f83ebd..eeb2ca76f3a 100644 --- a/src/plugins/qmldesigner/components/integration/utilitypanelcontroller.h +++ b/src/plugins/qmldesigner/components/integration/utilitypanelcontroller.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/xuifiledialog.cpp b/src/plugins/qmldesigner/components/integration/xuifiledialog.cpp index f761c9e9ffb..c00b93eb45e 100644 --- a/src/plugins/qmldesigner/components/integration/xuifiledialog.cpp +++ b/src/plugins/qmldesigner/components/integration/xuifiledialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/integration/xuifiledialog.h b/src/plugins/qmldesigner/components/integration/xuifiledialog.h index b3048cebce9..e27a09e15d2 100644 --- a/src/plugins/qmldesigner/components/integration/xuifiledialog.h +++ b/src/plugins/qmldesigner/components/integration/xuifiledialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.cpp b/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.cpp index 934d0370383..aa52d95a7d0 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.cpp +++ b/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.h b/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.h index 6666c99ee26..e2f7e4cecbe 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.h +++ b/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarycomponents.cpp b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarycomponents.cpp index f1d82e66d1f..897415ff7e0 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarycomponents.cpp +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarycomponents.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarycomponents.h b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarycomponents.h index 8eb1d63db62..46c7d55f370 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarycomponents.h +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarycomponents.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibraryimageprovider.cpp b/src/plugins/qmldesigner/components/itemlibrary/itemlibraryimageprovider.cpp index 7210fb3fbf2..a336cfc43d6 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibraryimageprovider.cpp +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibraryimageprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibraryimageprovider.h b/src/plugins/qmldesigner/components/itemlibrary/itemlibraryimageprovider.h index ed8f7e57d60..cbd26d7bde5 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibraryimageprovider.h +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibraryimageprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarymodel.cpp b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarymodel.cpp index 1205aae5aec..d1b507a170d 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarymodel.cpp +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarymodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarymodel.h b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarymodel.h index 8fe62142db9..2a9dabc43eb 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarymodel.h +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarymodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibraryview.cpp b/src/plugins/qmldesigner/components/itemlibrary/itemlibraryview.cpp index 5aef537796e..7e2645aad80 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibraryview.cpp +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibraryview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibraryview.h b/src/plugins/qmldesigner/components/itemlibrary/itemlibraryview.h index 2fc40c4d230..68e8f776c1e 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibraryview.h +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibraryview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.cpp b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.cpp index e715e9800ec..4f73ead353d 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.cpp +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.h b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.h index 8b121472aa9..44ef45139e1 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.h +++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibrarywidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/qml/ItemsView.qml b/src/plugins/qmldesigner/components/itemlibrary/qml/ItemsView.qml index 511ac6774ac..6c0bc297a08 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/qml/ItemsView.qml +++ b/src/plugins/qmldesigner/components/itemlibrary/qml/ItemsView.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/qml/ItemsViewStyle.qml b/src/plugins/qmldesigner/components/itemlibrary/qml/ItemsViewStyle.qml index c112ffa50fb..772bc8c276f 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/qml/ItemsViewStyle.qml +++ b/src/plugins/qmldesigner/components/itemlibrary/qml/ItemsViewStyle.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/qml/SectionView.qml b/src/plugins/qmldesigner/components/itemlibrary/qml/SectionView.qml index bfc324ebe46..748aa26c06c 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/qml/SectionView.qml +++ b/src/plugins/qmldesigner/components/itemlibrary/qml/SectionView.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/qml/Selector.qml b/src/plugins/qmldesigner/components/itemlibrary/qml/Selector.qml index 9e6a30e0484..b2e93f205b6 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/qml/Selector.qml +++ b/src/plugins/qmldesigner/components/itemlibrary/qml/Selector.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/itemlibrary/qml/SingleItemView.qml b/src/plugins/qmldesigner/components/itemlibrary/qml/SingleItemView.qml index 10757c08baa..549cd0d8354 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/qml/SingleItemView.qml +++ b/src/plugins/qmldesigner/components/itemlibrary/qml/SingleItemView.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/logger/logger.cpp b/src/plugins/qmldesigner/components/logger/logger.cpp index 0c26c575bee..4be36d70513 100644 --- a/src/plugins/qmldesigner/components/logger/logger.cpp +++ b/src/plugins/qmldesigner/components/logger/logger.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/logger/logger.h b/src/plugins/qmldesigner/components/logger/logger.h index 21a55507aea..cd01f31eb6b 100644 --- a/src/plugins/qmldesigner/components/logger/logger.h +++ b/src/plugins/qmldesigner/components/logger/logger.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/navigator/navigatortreemodel.cpp b/src/plugins/qmldesigner/components/navigator/navigatortreemodel.cpp index 4973004b84e..9c7b567a069 100644 --- a/src/plugins/qmldesigner/components/navigator/navigatortreemodel.cpp +++ b/src/plugins/qmldesigner/components/navigator/navigatortreemodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/navigator/navigatortreemodel.h b/src/plugins/qmldesigner/components/navigator/navigatortreemodel.h index 8c53cabfaac..259130e3ef8 100644 --- a/src/plugins/qmldesigner/components/navigator/navigatortreemodel.h +++ b/src/plugins/qmldesigner/components/navigator/navigatortreemodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/navigator/navigatortreeview.cpp b/src/plugins/qmldesigner/components/navigator/navigatortreeview.cpp index 58cb96790c6..3b2fcec8388 100644 --- a/src/plugins/qmldesigner/components/navigator/navigatortreeview.cpp +++ b/src/plugins/qmldesigner/components/navigator/navigatortreeview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/navigator/navigatortreeview.h b/src/plugins/qmldesigner/components/navigator/navigatortreeview.h index a2934e86bd3..c5295931aef 100644 --- a/src/plugins/qmldesigner/components/navigator/navigatortreeview.h +++ b/src/plugins/qmldesigner/components/navigator/navigatortreeview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/navigator/navigatorview.cpp b/src/plugins/qmldesigner/components/navigator/navigatorview.cpp index d8677f8a043..615dc86c5aa 100644 --- a/src/plugins/qmldesigner/components/navigator/navigatorview.cpp +++ b/src/plugins/qmldesigner/components/navigator/navigatorview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/navigator/navigatorview.h b/src/plugins/qmldesigner/components/navigator/navigatorview.h index aede53b67fc..35625f95382 100644 --- a/src/plugins/qmldesigner/components/navigator/navigatorview.h +++ b/src/plugins/qmldesigner/components/navigator/navigatorview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/navigator/navigatorwidget.cpp b/src/plugins/qmldesigner/components/navigator/navigatorwidget.cpp index 820886e6b3f..37693aa9800 100644 --- a/src/plugins/qmldesigner/components/navigator/navigatorwidget.cpp +++ b/src/plugins/qmldesigner/components/navigator/navigatorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/navigator/navigatorwidget.h b/src/plugins/qmldesigner/components/navigator/navigatorwidget.h index 30800ec5e31..8219b3b38af 100644 --- a/src/plugins/qmldesigner/components/navigator/navigatorwidget.h +++ b/src/plugins/qmldesigner/components/navigator/navigatorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/pluginmanager/iplugin.cpp b/src/plugins/qmldesigner/components/pluginmanager/iplugin.cpp index 89d1fa116ef..7a4408b1184 100644 --- a/src/plugins/qmldesigner/components/pluginmanager/iplugin.cpp +++ b/src/plugins/qmldesigner/components/pluginmanager/iplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/pluginmanager/iplugin.h b/src/plugins/qmldesigner/components/pluginmanager/iplugin.h index 9c0cc217dcd..2622f0ede11 100644 --- a/src/plugins/qmldesigner/components/pluginmanager/iplugin.h +++ b/src/plugins/qmldesigner/components/pluginmanager/iplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/pluginmanager/pluginmanager.cpp b/src/plugins/qmldesigner/components/pluginmanager/pluginmanager.cpp index 4fb130042e5..91f1a6a948d 100644 --- a/src/plugins/qmldesigner/components/pluginmanager/pluginmanager.cpp +++ b/src/plugins/qmldesigner/components/pluginmanager/pluginmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/pluginmanager/pluginmanager.h b/src/plugins/qmldesigner/components/pluginmanager/pluginmanager.h index 8b0360539c0..ee3999ce70a 100644 --- a/src/plugins/qmldesigner/components/pluginmanager/pluginmanager.h +++ b/src/plugins/qmldesigner/components/pluginmanager/pluginmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/pluginmanager/pluginpath.cpp b/src/plugins/qmldesigner/components/pluginmanager/pluginpath.cpp index 5bcfc90c5d4..25964504082 100644 --- a/src/plugins/qmldesigner/components/pluginmanager/pluginpath.cpp +++ b/src/plugins/qmldesigner/components/pluginmanager/pluginpath.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/pluginmanager/pluginpath.h b/src/plugins/qmldesigner/components/pluginmanager/pluginpath.h index f28b94785e3..9fb8e5235b7 100644 --- a/src/plugins/qmldesigner/components/pluginmanager/pluginpath.h +++ b/src/plugins/qmldesigner/components/pluginmanager/pluginpath.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/designerpropertymap.h b/src/plugins/qmldesigner/components/propertyeditor/designerpropertymap.h index ebdfcf32258..eb93f5d53cb 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/designerpropertymap.h +++ b/src/plugins/qmldesigner/components/propertyeditor/designerpropertymap.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/fileresourcesmodel.cpp b/src/plugins/qmldesigner/components/propertyeditor/fileresourcesmodel.cpp index fb29dd6a9e2..7ebfa5d645d 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/fileresourcesmodel.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/fileresourcesmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/fileresourcesmodel.h b/src/plugins/qmldesigner/components/propertyeditor/fileresourcesmodel.h index a6a3fb069d3..85f92294391 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/fileresourcesmodel.h +++ b/src/plugins/qmldesigner/components/propertyeditor/fileresourcesmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/filewidget.cpp b/src/plugins/qmldesigner/components/propertyeditor/filewidget.cpp index ad53a1c16f9..aa2ca684f0d 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/filewidget.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/filewidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/filewidget.h b/src/plugins/qmldesigner/components/propertyeditor/filewidget.h index 6c48c2fb1a8..57fbeee0f60 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/filewidget.h +++ b/src/plugins/qmldesigner/components/propertyeditor/filewidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/fontwidget.cpp b/src/plugins/qmldesigner/components/propertyeditor/fontwidget.cpp index d7b08da2db7..845527c0491 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/fontwidget.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/fontwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/fontwidget.h b/src/plugins/qmldesigner/components/propertyeditor/fontwidget.h index 7d7fc65c077..186e440685e 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/fontwidget.h +++ b/src/plugins/qmldesigner/components/propertyeditor/fontwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/genericpropertieswidget.cpp b/src/plugins/qmldesigner/components/propertyeditor/genericpropertieswidget.cpp index d9656194167..702b387253d 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/genericpropertieswidget.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/genericpropertieswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/genericpropertieswidget.h b/src/plugins/qmldesigner/components/propertyeditor/genericpropertieswidget.h index 2b7de840e74..43c1bb987a5 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/genericpropertieswidget.h +++ b/src/plugins/qmldesigner/components/propertyeditor/genericpropertieswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/gradientlineqmladaptor.cpp b/src/plugins/qmldesigner/components/propertyeditor/gradientlineqmladaptor.cpp index 33c514b60ec..feafc14c86e 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/gradientlineqmladaptor.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/gradientlineqmladaptor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/gradientlineqmladaptor.h b/src/plugins/qmldesigner/components/propertyeditor/gradientlineqmladaptor.h index 237bfff7296..cf1f82cb7f9 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/gradientlineqmladaptor.h +++ b/src/plugins/qmldesigner/components/propertyeditor/gradientlineqmladaptor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/gradientmodel.cpp b/src/plugins/qmldesigner/components/propertyeditor/gradientmodel.cpp index ed5730f62d9..d21c2fabecd 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/gradientmodel.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/gradientmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/gradientmodel.h b/src/plugins/qmldesigner/components/propertyeditor/gradientmodel.h index 18945150b86..e5275f2210a 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/gradientmodel.h +++ b/src/plugins/qmldesigner/components/propertyeditor/gradientmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/originwidget.cpp b/src/plugins/qmldesigner/components/propertyeditor/originwidget.cpp index 68ffe7e6476..ca6588a23e9 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/originwidget.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/originwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/originwidget.h b/src/plugins/qmldesigner/components/propertyeditor/originwidget.h index 53eeb99e865..de4588ead27 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/originwidget.h +++ b/src/plugins/qmldesigner/components/propertyeditor/originwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp index 45a14cd62e3..fde3f3ef14f 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.h index 6eb7b9bd4b4..0c5e4a5690a 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.h +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorcontextobject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorqmlbackend.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorqmlbackend.cpp index 13746204b30..25cdc1cd696 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorqmlbackend.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorqmlbackend.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorqmlbackend.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorqmlbackend.h index 844915bad9e..533b1e09e2c 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorqmlbackend.h +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorqmlbackend.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.cpp index 11ebf557778..d8a0c3d66a0 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h index 5eb8c1d3cf0..2be8136f9ad 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.cpp index afa42fda079..2ac59cb4247 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h index ee48d23001d..9ae815f44ef 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp index 4148a57e786..5ed4a00f28c 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.h index e2ec57e6672..a1f3371ae0b 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.h +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorwidget.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorwidget.cpp index 919766d3bf8..e5459694538 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorwidget.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorwidget.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorwidget.h index d34e1951fc0..1a56116100f 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorwidget.h +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/qlayoutobject.cpp b/src/plugins/qmldesigner/components/propertyeditor/qlayoutobject.cpp index 1bf67dd4a05..b6bfe9b881c 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/qlayoutobject.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/qlayoutobject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/qlayoutobject.h b/src/plugins/qmldesigner/components/propertyeditor/qlayoutobject.h index 0614607c0b9..46da9bb5e16 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/qlayoutobject.h +++ b/src/plugins/qmldesigner/components/propertyeditor/qlayoutobject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp index ac3bde0cdfa..05e54f90637 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.h b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.h index 59e58acd20d..2efc2d1c6ed 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.h +++ b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/quick2propertyeditorview.cpp b/src/plugins/qmldesigner/components/propertyeditor/quick2propertyeditorview.cpp index 817f6244ccc..7788552f896 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/quick2propertyeditorview.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/quick2propertyeditorview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/quick2propertyeditorview.h b/src/plugins/qmldesigner/components/propertyeditor/quick2propertyeditorview.h index d1e916df585..0f1f679dc9e 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/quick2propertyeditorview.h +++ b/src/plugins/qmldesigner/components/propertyeditor/quick2propertyeditorview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.cpp b/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.cpp index 780323788d9..89fc6d91817 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.h b/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.h index f3a50c171e1..599cef5b49f 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.h +++ b/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/HorizontalScrollBar.qml b/src/plugins/qmldesigner/components/stateseditor/HorizontalScrollBar.qml index 08479b6a70a..578e0e8f80a 100644 --- a/src/plugins/qmldesigner/components/stateseditor/HorizontalScrollBar.qml +++ b/src/plugins/qmldesigner/components/stateseditor/HorizontalScrollBar.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditorimageprovider.cpp b/src/plugins/qmldesigner/components/stateseditor/stateseditorimageprovider.cpp index 9988e7ba744..a5febcab8f6 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditorimageprovider.cpp +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditorimageprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditorimageprovider.h b/src/plugins/qmldesigner/components/stateseditor/stateseditorimageprovider.h index 2af03fbf7a4..ed8b160571c 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditorimageprovider.h +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditorimageprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditormodel.cpp b/src/plugins/qmldesigner/components/stateseditor/stateseditormodel.cpp index 57e5cf0b7f2..9992b0fc9c8 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditormodel.cpp +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditormodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditormodel.h b/src/plugins/qmldesigner/components/stateseditor/stateseditormodel.h index f30c060bca9..27d354c32f1 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditormodel.h +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditormodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp index 1881169afe3..bf01960358c 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.h b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.h index 9dc83d08bd8..70b32e32229 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.h +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditorwidget.cpp b/src/plugins/qmldesigner/components/stateseditor/stateseditorwidget.cpp index e089c620ce1..a05484f6e59 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditorwidget.cpp +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditorwidget.h b/src/plugins/qmldesigner/components/stateseditor/stateseditorwidget.h index f81b39a70d0..530885dee69 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditorwidget.h +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/components/stateseditor/stateslist.qml b/src/plugins/qmldesigner/components/stateseditor/stateslist.qml index 901486f1e46..f35376b0d45 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateslist.qml +++ b/src/plugins/qmldesigner/components/stateseditor/stateslist.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml index f02154a92a9..a64270fcf43 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml index 6384c65e012..6ca4f6e508e 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/ComboBoxSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/ComboBoxSpecifics.qml index c6450556548..cda4af3547c 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/ComboBoxSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/ComboBoxSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml index d15172f3bb3..34300d39156 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml index 7c031333ee6..939f1b66b16 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml index 4967a340210..9a1268a1820 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/componentsplugin/componentsplugin.cpp b/src/plugins/qmldesigner/componentsplugin/componentsplugin.cpp index 51fbc6661aa..c8d91399cdf 100644 --- a/src/plugins/qmldesigner/componentsplugin/componentsplugin.cpp +++ b/src/plugins/qmldesigner/componentsplugin/componentsplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/componentsplugin/componentsplugin.h b/src/plugins/qmldesigner/componentsplugin/componentsplugin.h index db0b274b9b3..dc5e2dac5c6 100644 --- a/src/plugins/qmldesigner/componentsplugin/componentsplugin.h +++ b/src/plugins/qmldesigner/componentsplugin/componentsplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/exception.cpp b/src/plugins/qmldesigner/designercore/exceptions/exception.cpp index 08b1917911c..570cae64946 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/exception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/exception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/invalidargumentexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/invalidargumentexception.cpp index aa5776bf3bf..eb7dfc41d09 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/invalidargumentexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/invalidargumentexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/invalididexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/invalididexception.cpp index 64a1ff27b4a..0dd9328d2db 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/invalididexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/invalididexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/invalidmetainfoexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/invalidmetainfoexception.cpp index 054c288a8d8..899e375ae9a 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/invalidmetainfoexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/invalidmetainfoexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/invalidmodelnodeexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/invalidmodelnodeexception.cpp index 94235d15df8..28d5729fc1a 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/invalidmodelnodeexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/invalidmodelnodeexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/invalidmodelstateexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/invalidmodelstateexception.cpp index b8e93a6c839..7bba74db855 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/invalidmodelstateexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/invalidmodelstateexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/invalidpropertyexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/invalidpropertyexception.cpp index 1523699f734..5f2ae9e287c 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/invalidpropertyexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/invalidpropertyexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/invalidqmlsourceexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/invalidqmlsourceexception.cpp index 027b766cad4..d5fc272efe8 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/invalidqmlsourceexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/invalidqmlsourceexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/invalidreparentingexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/invalidreparentingexception.cpp index ad2acfebdcf..e72f28c83ce 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/invalidreparentingexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/invalidreparentingexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/invalidslideindexexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/invalidslideindexexception.cpp index 3c2d9d723d6..c977269264e 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/invalidslideindexexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/invalidslideindexexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/modificationgroupexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/modificationgroupexception.cpp index 571505573c3..34d5316fc68 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/modificationgroupexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/modificationgroupexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/notimplementedexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/notimplementedexception.cpp index dc6aaed6fdc..a8715aeda1e 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/notimplementedexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/notimplementedexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/removebasestateexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/removebasestateexception.cpp index 745492d042d..d2c45e8aa8f 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/removebasestateexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/removebasestateexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/exceptions/rewritingexception.cpp b/src/plugins/qmldesigner/designercore/exceptions/rewritingexception.cpp index 90d8391eaa0..5a6587b4bef 100644 --- a/src/plugins/qmldesigner/designercore/exceptions/rewritingexception.cpp +++ b/src/plugins/qmldesigner/designercore/exceptions/rewritingexception.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/addarraymembervisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/addarraymembervisitor.cpp index 57506ae559b..d8f5510abee 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/addarraymembervisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/addarraymembervisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/addarraymembervisitor.h b/src/plugins/qmldesigner/designercore/filemanager/addarraymembervisitor.h index 60d04fdec53..098182a0c48 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/addarraymembervisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/addarraymembervisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/addobjectvisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/addobjectvisitor.cpp index 5324838a8b3..bfc04b115e4 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/addobjectvisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/addobjectvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/addobjectvisitor.h b/src/plugins/qmldesigner/designercore/filemanager/addobjectvisitor.h index 8caa8dd31d0..4ddfa41b6b5 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/addobjectvisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/addobjectvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/addpropertyvisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/addpropertyvisitor.cpp index 80beffc43ad..f3921d231c6 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/addpropertyvisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/addpropertyvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/addpropertyvisitor.h b/src/plugins/qmldesigner/designercore/filemanager/addpropertyvisitor.h index 869edf50030..14a48261626 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/addpropertyvisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/addpropertyvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/astobjecttextextractor.cpp b/src/plugins/qmldesigner/designercore/filemanager/astobjecttextextractor.cpp index 97f0a00eba4..c247d90f13d 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/astobjecttextextractor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/astobjecttextextractor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/astobjecttextextractor.h b/src/plugins/qmldesigner/designercore/filemanager/astobjecttextextractor.h index 961d02cae4d..d0ef0e92d9d 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/astobjecttextextractor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/astobjecttextextractor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/changeimportsvisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/changeimportsvisitor.cpp index 1121f3495f5..b5da23fa0e1 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/changeimportsvisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/changeimportsvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/changeimportsvisitor.h b/src/plugins/qmldesigner/designercore/filemanager/changeimportsvisitor.h index 8b29b8abf7f..971055bc180 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/changeimportsvisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/changeimportsvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/changeobjecttypevisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/changeobjecttypevisitor.cpp index 64ed05063e6..5f853ccafab 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/changeobjecttypevisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/changeobjecttypevisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/changeobjecttypevisitor.h b/src/plugins/qmldesigner/designercore/filemanager/changeobjecttypevisitor.h index 2358b7dbb64..ba2e3a88b39 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/changeobjecttypevisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/changeobjecttypevisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/changepropertyvisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/changepropertyvisitor.cpp index 602888566ce..e179ba37393 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/changepropertyvisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/changepropertyvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/changepropertyvisitor.h b/src/plugins/qmldesigner/designercore/filemanager/changepropertyvisitor.h index 1f63709b43a..06bf171f712 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/changepropertyvisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/changepropertyvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/firstdefinitionfinder.cpp b/src/plugins/qmldesigner/designercore/filemanager/firstdefinitionfinder.cpp index 615d049925d..340b27a4b24 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/firstdefinitionfinder.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/firstdefinitionfinder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/firstdefinitionfinder.h b/src/plugins/qmldesigner/designercore/filemanager/firstdefinitionfinder.h index 16e8436b71b..508cede79e8 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/firstdefinitionfinder.h +++ b/src/plugins/qmldesigner/designercore/filemanager/firstdefinitionfinder.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/moveobjectbeforeobjectvisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/moveobjectbeforeobjectvisitor.cpp index d6840b9395a..2d61c380a9e 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/moveobjectbeforeobjectvisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/moveobjectbeforeobjectvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/moveobjectbeforeobjectvisitor.h b/src/plugins/qmldesigner/designercore/filemanager/moveobjectbeforeobjectvisitor.h index b4693a6d1d6..c388a3230f9 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/moveobjectbeforeobjectvisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/moveobjectbeforeobjectvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/moveobjectvisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/moveobjectvisitor.cpp index d77bba04d99..e4b912c1f00 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/moveobjectvisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/moveobjectvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/moveobjectvisitor.h b/src/plugins/qmldesigner/designercore/filemanager/moveobjectvisitor.h index 79122ab4891..32fc12aebcd 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/moveobjectvisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/moveobjectvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/objectlengthcalculator.cpp b/src/plugins/qmldesigner/designercore/filemanager/objectlengthcalculator.cpp index 3290c86d454..6ce6a7aaffd 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/objectlengthcalculator.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/objectlengthcalculator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/objectlengthcalculator.h b/src/plugins/qmldesigner/designercore/filemanager/objectlengthcalculator.h index 12a0a89d8d4..fda5cd5dc99 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/objectlengthcalculator.h +++ b/src/plugins/qmldesigner/designercore/filemanager/objectlengthcalculator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/qmlrefactoring.cpp b/src/plugins/qmldesigner/designercore/filemanager/qmlrefactoring.cpp index 5b1916a9b12..7dc79a2074e 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/qmlrefactoring.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/qmlrefactoring.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/qmlrefactoring.h b/src/plugins/qmldesigner/designercore/filemanager/qmlrefactoring.h index 62b3d70353a..1ceb6dffbb4 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/qmlrefactoring.h +++ b/src/plugins/qmldesigner/designercore/filemanager/qmlrefactoring.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/qmlrewriter.cpp b/src/plugins/qmldesigner/designercore/filemanager/qmlrewriter.cpp index 3d56a6d1245..890aa8c8273 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/qmlrewriter.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/qmlrewriter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/qmlrewriter.h b/src/plugins/qmldesigner/designercore/filemanager/qmlrewriter.h index c3a48c215a8..16492a63f59 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/qmlrewriter.h +++ b/src/plugins/qmldesigner/designercore/filemanager/qmlrewriter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/removepropertyvisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/removepropertyvisitor.cpp index 94af7278d63..f087f2270c0 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/removepropertyvisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/removepropertyvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/removepropertyvisitor.h b/src/plugins/qmldesigner/designercore/filemanager/removepropertyvisitor.h index 3cbc717d3ef..5257ae6b758 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/removepropertyvisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/removepropertyvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/removeuiobjectmembervisitor.cpp b/src/plugins/qmldesigner/designercore/filemanager/removeuiobjectmembervisitor.cpp index b3625894996..be41102a46d 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/removeuiobjectmembervisitor.cpp +++ b/src/plugins/qmldesigner/designercore/filemanager/removeuiobjectmembervisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/filemanager/removeuiobjectmembervisitor.h b/src/plugins/qmldesigner/designercore/filemanager/removeuiobjectmembervisitor.h index fb6e1291044..cba2b8a7cfb 100644 --- a/src/plugins/qmldesigner/designercore/filemanager/removeuiobjectmembervisitor.h +++ b/src/plugins/qmldesigner/designercore/filemanager/removeuiobjectmembervisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/abstractproperty.h b/src/plugins/qmldesigner/designercore/include/abstractproperty.h index dd5696cd863..5ec4a9824bc 100644 --- a/src/plugins/qmldesigner/designercore/include/abstractproperty.h +++ b/src/plugins/qmldesigner/designercore/include/abstractproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/abstractview.h b/src/plugins/qmldesigner/designercore/include/abstractview.h index b3e61fe1a0d..41ad7406aea 100644 --- a/src/plugins/qmldesigner/designercore/include/abstractview.h +++ b/src/plugins/qmldesigner/designercore/include/abstractview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/basetexteditmodifier.h b/src/plugins/qmldesigner/designercore/include/basetexteditmodifier.h index d6525be0ea2..a526f7da752 100644 --- a/src/plugins/qmldesigner/designercore/include/basetexteditmodifier.h +++ b/src/plugins/qmldesigner/designercore/include/basetexteditmodifier.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/bindingproperty.h b/src/plugins/qmldesigner/designercore/include/bindingproperty.h index 63d7013ce89..f3d70263ea6 100644 --- a/src/plugins/qmldesigner/designercore/include/bindingproperty.h +++ b/src/plugins/qmldesigner/designercore/include/bindingproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/bytearraymodifier.h b/src/plugins/qmldesigner/designercore/include/bytearraymodifier.h index c7639af69ba..1811e5d4a67 100644 --- a/src/plugins/qmldesigner/designercore/include/bytearraymodifier.h +++ b/src/plugins/qmldesigner/designercore/include/bytearraymodifier.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/componenttextmodifier.h b/src/plugins/qmldesigner/designercore/include/componenttextmodifier.h index 9cd6802f7c4..a17236f76fa 100644 --- a/src/plugins/qmldesigner/designercore/include/componenttextmodifier.h +++ b/src/plugins/qmldesigner/designercore/include/componenttextmodifier.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/customnotifications.h b/src/plugins/qmldesigner/designercore/include/customnotifications.h index 9f5930a06a8..cc172a1c137 100644 --- a/src/plugins/qmldesigner/designercore/include/customnotifications.h +++ b/src/plugins/qmldesigner/designercore/include/customnotifications.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/exception.h b/src/plugins/qmldesigner/designercore/include/exception.h index 8f0eae075f3..cf739dd9fbf 100644 --- a/src/plugins/qmldesigner/designercore/include/exception.h +++ b/src/plugins/qmldesigner/designercore/include/exception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/forwardview.h b/src/plugins/qmldesigner/designercore/include/forwardview.h index 7ebd6ca67d7..9d406c35959 100644 --- a/src/plugins/qmldesigner/designercore/include/forwardview.h +++ b/src/plugins/qmldesigner/designercore/include/forwardview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/import.h b/src/plugins/qmldesigner/designercore/include/import.h index b226f770958..559bd468b8a 100644 --- a/src/plugins/qmldesigner/designercore/include/import.h +++ b/src/plugins/qmldesigner/designercore/include/import.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/invalidargumentexception.h b/src/plugins/qmldesigner/designercore/include/invalidargumentexception.h index 592a84ce284..3958edb9090 100644 --- a/src/plugins/qmldesigner/designercore/include/invalidargumentexception.h +++ b/src/plugins/qmldesigner/designercore/include/invalidargumentexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/invalididexception.h b/src/plugins/qmldesigner/designercore/include/invalididexception.h index 97493443ed0..f5d6389d14d 100644 --- a/src/plugins/qmldesigner/designercore/include/invalididexception.h +++ b/src/plugins/qmldesigner/designercore/include/invalididexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/invalidmetainfoexception.h b/src/plugins/qmldesigner/designercore/include/invalidmetainfoexception.h index 036606dc74c..d2ba9d66c1e 100644 --- a/src/plugins/qmldesigner/designercore/include/invalidmetainfoexception.h +++ b/src/plugins/qmldesigner/designercore/include/invalidmetainfoexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/invalidmodelnodeexception.h b/src/plugins/qmldesigner/designercore/include/invalidmodelnodeexception.h index 07ff7b3666b..40ffcc755ee 100644 --- a/src/plugins/qmldesigner/designercore/include/invalidmodelnodeexception.h +++ b/src/plugins/qmldesigner/designercore/include/invalidmodelnodeexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/invalidmodelstateexception.h b/src/plugins/qmldesigner/designercore/include/invalidmodelstateexception.h index 638971e61e8..c11eb1fb686 100644 --- a/src/plugins/qmldesigner/designercore/include/invalidmodelstateexception.h +++ b/src/plugins/qmldesigner/designercore/include/invalidmodelstateexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/invalidpropertyexception.h b/src/plugins/qmldesigner/designercore/include/invalidpropertyexception.h index 35c076a3d18..74bd4e804f3 100644 --- a/src/plugins/qmldesigner/designercore/include/invalidpropertyexception.h +++ b/src/plugins/qmldesigner/designercore/include/invalidpropertyexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/invalidqmlsourceexception.h b/src/plugins/qmldesigner/designercore/include/invalidqmlsourceexception.h index 72fd0b96745..b450c5218bf 100644 --- a/src/plugins/qmldesigner/designercore/include/invalidqmlsourceexception.h +++ b/src/plugins/qmldesigner/designercore/include/invalidqmlsourceexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/invalidreparentingexception.h b/src/plugins/qmldesigner/designercore/include/invalidreparentingexception.h index 715d644e4f0..b8f5981d712 100644 --- a/src/plugins/qmldesigner/designercore/include/invalidreparentingexception.h +++ b/src/plugins/qmldesigner/designercore/include/invalidreparentingexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/invalidslideindexexception.h b/src/plugins/qmldesigner/designercore/include/invalidslideindexexception.h index 9e5dadd806b..2ab3ccc1e15 100644 --- a/src/plugins/qmldesigner/designercore/include/invalidslideindexexception.h +++ b/src/plugins/qmldesigner/designercore/include/invalidslideindexexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/itemlibraryinfo.h b/src/plugins/qmldesigner/designercore/include/itemlibraryinfo.h index 6218a04c429..5916267a249 100644 --- a/src/plugins/qmldesigner/designercore/include/itemlibraryinfo.h +++ b/src/plugins/qmldesigner/designercore/include/itemlibraryinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/iwidgetplugin.h b/src/plugins/qmldesigner/designercore/include/iwidgetplugin.h index f911924f7b3..2480e23bcdd 100644 --- a/src/plugins/qmldesigner/designercore/include/iwidgetplugin.h +++ b/src/plugins/qmldesigner/designercore/include/iwidgetplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/mathutils.h b/src/plugins/qmldesigner/designercore/include/mathutils.h index 73a69dea0c6..71e566394e6 100644 --- a/src/plugins/qmldesigner/designercore/include/mathutils.h +++ b/src/plugins/qmldesigner/designercore/include/mathutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/metainfo.h b/src/plugins/qmldesigner/designercore/include/metainfo.h index b2eb27cb2fa..e372c660ba5 100644 --- a/src/plugins/qmldesigner/designercore/include/metainfo.h +++ b/src/plugins/qmldesigner/designercore/include/metainfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/metainforeader.h b/src/plugins/qmldesigner/designercore/include/metainforeader.h index bc1efc88f00..187cdebed81 100644 --- a/src/plugins/qmldesigner/designercore/include/metainforeader.h +++ b/src/plugins/qmldesigner/designercore/include/metainforeader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/model.h b/src/plugins/qmldesigner/designercore/include/model.h index 3d6e903d93b..76efc8584b6 100644 --- a/src/plugins/qmldesigner/designercore/include/model.h +++ b/src/plugins/qmldesigner/designercore/include/model.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/modelmerger.h b/src/plugins/qmldesigner/designercore/include/modelmerger.h index 903f8c4beab..09102bd99a1 100644 --- a/src/plugins/qmldesigner/designercore/include/modelmerger.h +++ b/src/plugins/qmldesigner/designercore/include/modelmerger.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/modelnode.h b/src/plugins/qmldesigner/designercore/include/modelnode.h index 922d785b5b7..a0bb40411fd 100644 --- a/src/plugins/qmldesigner/designercore/include/modelnode.h +++ b/src/plugins/qmldesigner/designercore/include/modelnode.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/modelnodepositionstorage.h b/src/plugins/qmldesigner/designercore/include/modelnodepositionstorage.h index d1d62706290..3b71bdd9843 100644 --- a/src/plugins/qmldesigner/designercore/include/modelnodepositionstorage.h +++ b/src/plugins/qmldesigner/designercore/include/modelnodepositionstorage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/modificationgroupexception.h b/src/plugins/qmldesigner/designercore/include/modificationgroupexception.h index 3f0da1b2368..25c5e9e4042 100644 --- a/src/plugins/qmldesigner/designercore/include/modificationgroupexception.h +++ b/src/plugins/qmldesigner/designercore/include/modificationgroupexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/modificationgrouptoken.h b/src/plugins/qmldesigner/designercore/include/modificationgrouptoken.h index 35762e5f5ac..8ca020a5449 100644 --- a/src/plugins/qmldesigner/designercore/include/modificationgrouptoken.h +++ b/src/plugins/qmldesigner/designercore/include/modificationgrouptoken.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/nodeabstractproperty.h b/src/plugins/qmldesigner/designercore/include/nodeabstractproperty.h index 4ceb22a8420..1f1d8382554 100644 --- a/src/plugins/qmldesigner/designercore/include/nodeabstractproperty.h +++ b/src/plugins/qmldesigner/designercore/include/nodeabstractproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/nodeanchors.h b/src/plugins/qmldesigner/designercore/include/nodeanchors.h index cf35df885b5..3d2b6b72708 100644 --- a/src/plugins/qmldesigner/designercore/include/nodeanchors.h +++ b/src/plugins/qmldesigner/designercore/include/nodeanchors.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/nodeinstance.h b/src/plugins/qmldesigner/designercore/include/nodeinstance.h index d0a53513c6f..6ba98515c82 100644 --- a/src/plugins/qmldesigner/designercore/include/nodeinstance.h +++ b/src/plugins/qmldesigner/designercore/include/nodeinstance.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/nodeinstanceview.h b/src/plugins/qmldesigner/designercore/include/nodeinstanceview.h index ca7dbd2b388..cd64fecc0ba 100644 --- a/src/plugins/qmldesigner/designercore/include/nodeinstanceview.h +++ b/src/plugins/qmldesigner/designercore/include/nodeinstanceview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/nodelistproperty.h b/src/plugins/qmldesigner/designercore/include/nodelistproperty.h index 4158db7d102..c88c1c19e6f 100644 --- a/src/plugins/qmldesigner/designercore/include/nodelistproperty.h +++ b/src/plugins/qmldesigner/designercore/include/nodelistproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/nodemetainfo.h b/src/plugins/qmldesigner/designercore/include/nodemetainfo.h index 4bac4ce8314..4f4a20e38f6 100644 --- a/src/plugins/qmldesigner/designercore/include/nodemetainfo.h +++ b/src/plugins/qmldesigner/designercore/include/nodemetainfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/nodeproperty.h b/src/plugins/qmldesigner/designercore/include/nodeproperty.h index 7b12b8abc7d..9c9f5b150ee 100644 --- a/src/plugins/qmldesigner/designercore/include/nodeproperty.h +++ b/src/plugins/qmldesigner/designercore/include/nodeproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/notimplementedexception.h b/src/plugins/qmldesigner/designercore/include/notimplementedexception.h index aeb16c0acfd..4df7fbe3fd0 100644 --- a/src/plugins/qmldesigner/designercore/include/notimplementedexception.h +++ b/src/plugins/qmldesigner/designercore/include/notimplementedexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/objectpropertybinding.h b/src/plugins/qmldesigner/designercore/include/objectpropertybinding.h index 464e3d7c3fd..2e4702a1a9a 100644 --- a/src/plugins/qmldesigner/designercore/include/objectpropertybinding.h +++ b/src/plugins/qmldesigner/designercore/include/objectpropertybinding.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/plaintexteditmodifier.h b/src/plugins/qmldesigner/designercore/include/plaintexteditmodifier.h index 08e76384e80..6c117af1e8a 100644 --- a/src/plugins/qmldesigner/designercore/include/plaintexteditmodifier.h +++ b/src/plugins/qmldesigner/designercore/include/plaintexteditmodifier.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/propertybinding.h b/src/plugins/qmldesigner/designercore/include/propertybinding.h index 55835aa9201..02a84da48f7 100644 --- a/src/plugins/qmldesigner/designercore/include/propertybinding.h +++ b/src/plugins/qmldesigner/designercore/include/propertybinding.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/propertycontainer.h b/src/plugins/qmldesigner/designercore/include/propertycontainer.h index 84276ac4cf7..1695e5afa4a 100644 --- a/src/plugins/qmldesigner/designercore/include/propertycontainer.h +++ b/src/plugins/qmldesigner/designercore/include/propertycontainer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/propertynode.h b/src/plugins/qmldesigner/designercore/include/propertynode.h index 9b08929b427..50f01106d2e 100644 --- a/src/plugins/qmldesigner/designercore/include/propertynode.h +++ b/src/plugins/qmldesigner/designercore/include/propertynode.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/propertyparser.h b/src/plugins/qmldesigner/designercore/include/propertyparser.h index b47dcb7afac..58940ae12e8 100644 --- a/src/plugins/qmldesigner/designercore/include/propertyparser.h +++ b/src/plugins/qmldesigner/designercore/include/propertyparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/qmlanchors.h b/src/plugins/qmldesigner/designercore/include/qmlanchors.h index 5e9af6e51b5..bc5bc7c240e 100644 --- a/src/plugins/qmldesigner/designercore/include/qmlanchors.h +++ b/src/plugins/qmldesigner/designercore/include/qmlanchors.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/qmlchangeset.h b/src/plugins/qmldesigner/designercore/include/qmlchangeset.h index 417a75d805a..6b3282bf9e2 100644 --- a/src/plugins/qmldesigner/designercore/include/qmlchangeset.h +++ b/src/plugins/qmldesigner/designercore/include/qmlchangeset.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/qmldesignercorelib_global.h b/src/plugins/qmldesigner/designercore/include/qmldesignercorelib_global.h index ff1a57e074b..724f7e53914 100644 --- a/src/plugins/qmldesigner/designercore/include/qmldesignercorelib_global.h +++ b/src/plugins/qmldesigner/designercore/include/qmldesignercorelib_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/qmlitemnode.h b/src/plugins/qmldesigner/designercore/include/qmlitemnode.h index 65ed735e998..e6486bdce12 100644 --- a/src/plugins/qmldesigner/designercore/include/qmlitemnode.h +++ b/src/plugins/qmldesigner/designercore/include/qmlitemnode.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/qmlmodelnodefacade.h b/src/plugins/qmldesigner/designercore/include/qmlmodelnodefacade.h index a15d8d11c0e..043e2832835 100644 --- a/src/plugins/qmldesigner/designercore/include/qmlmodelnodefacade.h +++ b/src/plugins/qmldesigner/designercore/include/qmlmodelnodefacade.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/qmlobjectnode.h b/src/plugins/qmldesigner/designercore/include/qmlobjectnode.h index af472e3a7c4..add85f0f102 100644 --- a/src/plugins/qmldesigner/designercore/include/qmlobjectnode.h +++ b/src/plugins/qmldesigner/designercore/include/qmlobjectnode.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/qmlstate.h b/src/plugins/qmldesigner/designercore/include/qmlstate.h index 197e9cb6350..645cc9fe5d6 100644 --- a/src/plugins/qmldesigner/designercore/include/qmlstate.h +++ b/src/plugins/qmldesigner/designercore/include/qmlstate.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/removebasestateexception.h b/src/plugins/qmldesigner/designercore/include/removebasestateexception.h index 51875067ca3..37093735b3c 100644 --- a/src/plugins/qmldesigner/designercore/include/removebasestateexception.h +++ b/src/plugins/qmldesigner/designercore/include/removebasestateexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/replaceallobjectdefinitionsvisitor.h b/src/plugins/qmldesigner/designercore/include/replaceallobjectdefinitionsvisitor.h index d2f5887a5b1..34668f0a9fb 100644 --- a/src/plugins/qmldesigner/designercore/include/replaceallobjectdefinitionsvisitor.h +++ b/src/plugins/qmldesigner/designercore/include/replaceallobjectdefinitionsvisitor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/rewriterview.h b/src/plugins/qmldesigner/designercore/include/rewriterview.h index 33f5c2fe8b4..97217929070 100644 --- a/src/plugins/qmldesigner/designercore/include/rewriterview.h +++ b/src/plugins/qmldesigner/designercore/include/rewriterview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/rewritingexception.h b/src/plugins/qmldesigner/designercore/include/rewritingexception.h index 48abe9b96c6..69749de14ce 100644 --- a/src/plugins/qmldesigner/designercore/include/rewritingexception.h +++ b/src/plugins/qmldesigner/designercore/include/rewritingexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/signalhandlerproperty.h b/src/plugins/qmldesigner/designercore/include/signalhandlerproperty.h index 4f81d45df6e..3d7ee0d6347 100644 --- a/src/plugins/qmldesigner/designercore/include/signalhandlerproperty.h +++ b/src/plugins/qmldesigner/designercore/include/signalhandlerproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/stylemanager.h b/src/plugins/qmldesigner/designercore/include/stylemanager.h index 774a25ff30c..dccdac377b3 100644 --- a/src/plugins/qmldesigner/designercore/include/stylemanager.h +++ b/src/plugins/qmldesigner/designercore/include/stylemanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/subcomponentmanager.h b/src/plugins/qmldesigner/designercore/include/subcomponentmanager.h index 42832ddb90d..5fcdc427656 100644 --- a/src/plugins/qmldesigner/designercore/include/subcomponentmanager.h +++ b/src/plugins/qmldesigner/designercore/include/subcomponentmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/textmodifier.h b/src/plugins/qmldesigner/designercore/include/textmodifier.h index a996a11aa0e..62248e5eb42 100644 --- a/src/plugins/qmldesigner/designercore/include/textmodifier.h +++ b/src/plugins/qmldesigner/designercore/include/textmodifier.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/variantproperty.h b/src/plugins/qmldesigner/designercore/include/variantproperty.h index 79a19515f5d..eb548419fb2 100644 --- a/src/plugins/qmldesigner/designercore/include/variantproperty.h +++ b/src/plugins/qmldesigner/designercore/include/variantproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/viewmanager.h b/src/plugins/qmldesigner/designercore/include/viewmanager.h index 42371266f8d..6046fe92d27 100644 --- a/src/plugins/qmldesigner/designercore/include/viewmanager.h +++ b/src/plugins/qmldesigner/designercore/include/viewmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/include/widgetplugin_helper.h b/src/plugins/qmldesigner/designercore/include/widgetplugin_helper.h index 7f1e30cc3af..e47fc194383 100644 --- a/src/plugins/qmldesigner/designercore/include/widgetplugin_helper.h +++ b/src/plugins/qmldesigner/designercore/include/widgetplugin_helper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/instances/nodeinstance.cpp b/src/plugins/qmldesigner/designercore/instances/nodeinstance.cpp index 9ee8f86be40..bd76d682d5b 100644 --- a/src/plugins/qmldesigner/designercore/instances/nodeinstance.cpp +++ b/src/plugins/qmldesigner/designercore/instances/nodeinstance.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.cpp b/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.cpp index fa4ca766868..a52cf475a8f 100644 --- a/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.cpp +++ b/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.h b/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.h index 2b724f37c7a..4c0593e5195 100644 --- a/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.h +++ b/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/instances/nodeinstanceview.cpp b/src/plugins/qmldesigner/designercore/instances/nodeinstanceview.cpp index 48b3a4f8e14..319c854fc9b 100644 --- a/src/plugins/qmldesigner/designercore/instances/nodeinstanceview.cpp +++ b/src/plugins/qmldesigner/designercore/instances/nodeinstanceview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/metainfo/itemlibraryinfo.cpp b/src/plugins/qmldesigner/designercore/metainfo/itemlibraryinfo.cpp index 54531984890..5ee176d41b1 100644 --- a/src/plugins/qmldesigner/designercore/metainfo/itemlibraryinfo.cpp +++ b/src/plugins/qmldesigner/designercore/metainfo/itemlibraryinfo.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/metainfo/metainfo.cpp b/src/plugins/qmldesigner/designercore/metainfo/metainfo.cpp index b5c04086a48..932ad314f2d 100644 --- a/src/plugins/qmldesigner/designercore/metainfo/metainfo.cpp +++ b/src/plugins/qmldesigner/designercore/metainfo/metainfo.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/metainfo/metainforeader.cpp b/src/plugins/qmldesigner/designercore/metainfo/metainforeader.cpp index 7bb5224cdea..8b4680bc74d 100644 --- a/src/plugins/qmldesigner/designercore/metainfo/metainforeader.cpp +++ b/src/plugins/qmldesigner/designercore/metainfo/metainforeader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/metainfo/nodemetainfo.cpp b/src/plugins/qmldesigner/designercore/metainfo/nodemetainfo.cpp index 87da7bcde12..b8b61ceb2bd 100644 --- a/src/plugins/qmldesigner/designercore/metainfo/nodemetainfo.cpp +++ b/src/plugins/qmldesigner/designercore/metainfo/nodemetainfo.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/metainfo/subcomponentmanager.cpp b/src/plugins/qmldesigner/designercore/metainfo/subcomponentmanager.cpp index bf845dcc81f..ece9ad259a5 100644 --- a/src/plugins/qmldesigner/designercore/metainfo/subcomponentmanager.cpp +++ b/src/plugins/qmldesigner/designercore/metainfo/subcomponentmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/abstractproperty.cpp b/src/plugins/qmldesigner/designercore/model/abstractproperty.cpp index 267d01d716b..022054b71c8 100644 --- a/src/plugins/qmldesigner/designercore/model/abstractproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/abstractproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/abstractview.cpp b/src/plugins/qmldesigner/designercore/model/abstractview.cpp index 77373431c8d..76b699f4aa7 100644 --- a/src/plugins/qmldesigner/designercore/model/abstractview.cpp +++ b/src/plugins/qmldesigner/designercore/model/abstractview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/basetexteditmodifier.cpp b/src/plugins/qmldesigner/designercore/model/basetexteditmodifier.cpp index 75266deb1cc..f67cda93b73 100644 --- a/src/plugins/qmldesigner/designercore/model/basetexteditmodifier.cpp +++ b/src/plugins/qmldesigner/designercore/model/basetexteditmodifier.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/bindingproperty.cpp b/src/plugins/qmldesigner/designercore/model/bindingproperty.cpp index ce511950a5e..af8c420f803 100644 --- a/src/plugins/qmldesigner/designercore/model/bindingproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/bindingproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/bytearraymodifier.cpp b/src/plugins/qmldesigner/designercore/model/bytearraymodifier.cpp index 96dc1661332..cc55185a014 100644 --- a/src/plugins/qmldesigner/designercore/model/bytearraymodifier.cpp +++ b/src/plugins/qmldesigner/designercore/model/bytearraymodifier.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/componenttextmodifier.cpp b/src/plugins/qmldesigner/designercore/model/componenttextmodifier.cpp index 99d8ad19836..562f9821381 100644 --- a/src/plugins/qmldesigner/designercore/model/componenttextmodifier.cpp +++ b/src/plugins/qmldesigner/designercore/model/componenttextmodifier.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/copyhelper.cpp b/src/plugins/qmldesigner/designercore/model/copyhelper.cpp index 376102df472..b4104c3ce19 100644 --- a/src/plugins/qmldesigner/designercore/model/copyhelper.cpp +++ b/src/plugins/qmldesigner/designercore/model/copyhelper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/copyhelper.h b/src/plugins/qmldesigner/designercore/model/copyhelper.h index 7dadd6ee9c3..877c8d10112 100644 --- a/src/plugins/qmldesigner/designercore/model/copyhelper.h +++ b/src/plugins/qmldesigner/designercore/model/copyhelper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/import.cpp b/src/plugins/qmldesigner/designercore/model/import.cpp index b2a46ea264c..0dd477049b1 100644 --- a/src/plugins/qmldesigner/designercore/model/import.cpp +++ b/src/plugins/qmldesigner/designercore/model/import.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalbindingproperty.cpp b/src/plugins/qmldesigner/designercore/model/internalbindingproperty.cpp index c599a78ff89..334df8f2009 100644 --- a/src/plugins/qmldesigner/designercore/model/internalbindingproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/internalbindingproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalbindingproperty.h b/src/plugins/qmldesigner/designercore/model/internalbindingproperty.h index 247fc691bfe..647ef516402 100644 --- a/src/plugins/qmldesigner/designercore/model/internalbindingproperty.h +++ b/src/plugins/qmldesigner/designercore/model/internalbindingproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalnode.cpp b/src/plugins/qmldesigner/designercore/model/internalnode.cpp index 1271a69fb43..8d0d1755e65 100644 --- a/src/plugins/qmldesigner/designercore/model/internalnode.cpp +++ b/src/plugins/qmldesigner/designercore/model/internalnode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalnode_p.h b/src/plugins/qmldesigner/designercore/model/internalnode_p.h index a3242bbe983..b24757ff31a 100644 --- a/src/plugins/qmldesigner/designercore/model/internalnode_p.h +++ b/src/plugins/qmldesigner/designercore/model/internalnode_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalnodeabstractproperty.cpp b/src/plugins/qmldesigner/designercore/model/internalnodeabstractproperty.cpp index 68a437583c8..c9ea1fa7f7e 100644 --- a/src/plugins/qmldesigner/designercore/model/internalnodeabstractproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/internalnodeabstractproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalnodeabstractproperty.h b/src/plugins/qmldesigner/designercore/model/internalnodeabstractproperty.h index eee3b8806a2..4b4672bf040 100644 --- a/src/plugins/qmldesigner/designercore/model/internalnodeabstractproperty.h +++ b/src/plugins/qmldesigner/designercore/model/internalnodeabstractproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalnodelistproperty.cpp b/src/plugins/qmldesigner/designercore/model/internalnodelistproperty.cpp index 6911e085805..fa63a0d3319 100644 --- a/src/plugins/qmldesigner/designercore/model/internalnodelistproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/internalnodelistproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalnodelistproperty.h b/src/plugins/qmldesigner/designercore/model/internalnodelistproperty.h index 025d131746c..f16babd2cd4 100644 --- a/src/plugins/qmldesigner/designercore/model/internalnodelistproperty.h +++ b/src/plugins/qmldesigner/designercore/model/internalnodelistproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalnodeproperty.cpp b/src/plugins/qmldesigner/designercore/model/internalnodeproperty.cpp index 0f80eee5503..f9603eaab66 100644 --- a/src/plugins/qmldesigner/designercore/model/internalnodeproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/internalnodeproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalnodeproperty.h b/src/plugins/qmldesigner/designercore/model/internalnodeproperty.h index dbd195ff27a..2a0512ebda0 100644 --- a/src/plugins/qmldesigner/designercore/model/internalnodeproperty.h +++ b/src/plugins/qmldesigner/designercore/model/internalnodeproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalproperty.cpp b/src/plugins/qmldesigner/designercore/model/internalproperty.cpp index 7241e4c90eb..835fe7d3eb2 100644 --- a/src/plugins/qmldesigner/designercore/model/internalproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/internalproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalproperty.h b/src/plugins/qmldesigner/designercore/model/internalproperty.h index f6276470914..cb8b3e47cc8 100644 --- a/src/plugins/qmldesigner/designercore/model/internalproperty.h +++ b/src/plugins/qmldesigner/designercore/model/internalproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalsignalhandlerproperty.cpp b/src/plugins/qmldesigner/designercore/model/internalsignalhandlerproperty.cpp index a9e523e660a..15c43b3cad1 100644 --- a/src/plugins/qmldesigner/designercore/model/internalsignalhandlerproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/internalsignalhandlerproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalsignalhandlerproperty.h b/src/plugins/qmldesigner/designercore/model/internalsignalhandlerproperty.h index 335ceb8199d..a81521e50e6 100644 --- a/src/plugins/qmldesigner/designercore/model/internalsignalhandlerproperty.h +++ b/src/plugins/qmldesigner/designercore/model/internalsignalhandlerproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalvariantproperty.cpp b/src/plugins/qmldesigner/designercore/model/internalvariantproperty.cpp index 085b0daa9e3..cf2f1caf8a1 100644 --- a/src/plugins/qmldesigner/designercore/model/internalvariantproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/internalvariantproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/internalvariantproperty.h b/src/plugins/qmldesigner/designercore/model/internalvariantproperty.h index 8aad7caf80d..36db11d35b3 100644 --- a/src/plugins/qmldesigner/designercore/model/internalvariantproperty.h +++ b/src/plugins/qmldesigner/designercore/model/internalvariantproperty.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/model.cpp b/src/plugins/qmldesigner/designercore/model/model.cpp index b2c2019bb79..9c40d313fe2 100644 --- a/src/plugins/qmldesigner/designercore/model/model.cpp +++ b/src/plugins/qmldesigner/designercore/model/model.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/model_p.h b/src/plugins/qmldesigner/designercore/model/model_p.h index 8b2653ed9ca..bc11dae0c65 100644 --- a/src/plugins/qmldesigner/designercore/model/model_p.h +++ b/src/plugins/qmldesigner/designercore/model/model_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/modelmerger.cpp b/src/plugins/qmldesigner/designercore/model/modelmerger.cpp index 1a73394c211..0613b3d0698 100644 --- a/src/plugins/qmldesigner/designercore/model/modelmerger.cpp +++ b/src/plugins/qmldesigner/designercore/model/modelmerger.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/modelnode.cpp b/src/plugins/qmldesigner/designercore/model/modelnode.cpp index 7abcc8a4b95..d41b6003508 100644 --- a/src/plugins/qmldesigner/designercore/model/modelnode.cpp +++ b/src/plugins/qmldesigner/designercore/model/modelnode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/modelnodepositionrecalculator.cpp b/src/plugins/qmldesigner/designercore/model/modelnodepositionrecalculator.cpp index 2a3591d1cf1..22a77ece113 100644 --- a/src/plugins/qmldesigner/designercore/model/modelnodepositionrecalculator.cpp +++ b/src/plugins/qmldesigner/designercore/model/modelnodepositionrecalculator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/modelnodepositionrecalculator.h b/src/plugins/qmldesigner/designercore/model/modelnodepositionrecalculator.h index b9d0c8f7416..f571cb49ac1 100644 --- a/src/plugins/qmldesigner/designercore/model/modelnodepositionrecalculator.h +++ b/src/plugins/qmldesigner/designercore/model/modelnodepositionrecalculator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/modelnodepositionstorage.cpp b/src/plugins/qmldesigner/designercore/model/modelnodepositionstorage.cpp index 9d4f718ba2f..e0a8eacd16e 100644 --- a/src/plugins/qmldesigner/designercore/model/modelnodepositionstorage.cpp +++ b/src/plugins/qmldesigner/designercore/model/modelnodepositionstorage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/modeltotextmerger.cpp b/src/plugins/qmldesigner/designercore/model/modeltotextmerger.cpp index 67cf034d62e..556de710524 100644 --- a/src/plugins/qmldesigner/designercore/model/modeltotextmerger.cpp +++ b/src/plugins/qmldesigner/designercore/model/modeltotextmerger.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/modeltotextmerger.h b/src/plugins/qmldesigner/designercore/model/modeltotextmerger.h index a8190eb5cd2..098e9d02c77 100644 --- a/src/plugins/qmldesigner/designercore/model/modeltotextmerger.h +++ b/src/plugins/qmldesigner/designercore/model/modeltotextmerger.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/modificationgrouptoken.cpp b/src/plugins/qmldesigner/designercore/model/modificationgrouptoken.cpp index 0a2b4dad326..c7adae79dcb 100644 --- a/src/plugins/qmldesigner/designercore/model/modificationgrouptoken.cpp +++ b/src/plugins/qmldesigner/designercore/model/modificationgrouptoken.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/nodeabstractproperty.cpp b/src/plugins/qmldesigner/designercore/model/nodeabstractproperty.cpp index 4dc5fc6e7c4..8af1e20a113 100644 --- a/src/plugins/qmldesigner/designercore/model/nodeabstractproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/nodeabstractproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/nodeanchors.cpp b/src/plugins/qmldesigner/designercore/model/nodeanchors.cpp index 3d958ffc5db..97e2ca7a546 100644 --- a/src/plugins/qmldesigner/designercore/model/nodeanchors.cpp +++ b/src/plugins/qmldesigner/designercore/model/nodeanchors.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/nodelistproperty.cpp b/src/plugins/qmldesigner/designercore/model/nodelistproperty.cpp index 61fd8ad7c3e..39179d6b341 100644 --- a/src/plugins/qmldesigner/designercore/model/nodelistproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/nodelistproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/nodeproperty.cpp b/src/plugins/qmldesigner/designercore/model/nodeproperty.cpp index 54a6427853a..308556e2139 100644 --- a/src/plugins/qmldesigner/designercore/model/nodeproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/nodeproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/objectpropertybinding.cpp b/src/plugins/qmldesigner/designercore/model/objectpropertybinding.cpp index 2435a2fd7b2..0311e8e64f5 100644 --- a/src/plugins/qmldesigner/designercore/model/objectpropertybinding.cpp +++ b/src/plugins/qmldesigner/designercore/model/objectpropertybinding.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/painteventfilter.cpp b/src/plugins/qmldesigner/designercore/model/painteventfilter.cpp index bf88ee9c8a4..592fbf8b151 100644 --- a/src/plugins/qmldesigner/designercore/model/painteventfilter.cpp +++ b/src/plugins/qmldesigner/designercore/model/painteventfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/painteventfilter_p.h b/src/plugins/qmldesigner/designercore/model/painteventfilter_p.h index 581fdac03c4..e4dfe053927 100644 --- a/src/plugins/qmldesigner/designercore/model/painteventfilter_p.h +++ b/src/plugins/qmldesigner/designercore/model/painteventfilter_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/parsedqml.cpp b/src/plugins/qmldesigner/designercore/model/parsedqml.cpp index 54c212e4038..b2af4dfa461 100644 --- a/src/plugins/qmldesigner/designercore/model/parsedqml.cpp +++ b/src/plugins/qmldesigner/designercore/model/parsedqml.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/parsedqml.h b/src/plugins/qmldesigner/designercore/model/parsedqml.h index 1bcc676916e..31bb4ae997e 100644 --- a/src/plugins/qmldesigner/designercore/model/parsedqml.h +++ b/src/plugins/qmldesigner/designercore/model/parsedqml.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/paster.cpp b/src/plugins/qmldesigner/designercore/model/paster.cpp index 1cf9f496173..40f66a9882c 100644 --- a/src/plugins/qmldesigner/designercore/model/paster.cpp +++ b/src/plugins/qmldesigner/designercore/model/paster.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/paster.h b/src/plugins/qmldesigner/designercore/model/paster.h index e7cb94c05f4..1d5fff0eeda 100644 --- a/src/plugins/qmldesigner/designercore/model/paster.h +++ b/src/plugins/qmldesigner/designercore/model/paster.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/plaintexteditmodifier.cpp b/src/plugins/qmldesigner/designercore/model/plaintexteditmodifier.cpp index 1ef587ddf01..2bee3d92cbb 100644 --- a/src/plugins/qmldesigner/designercore/model/plaintexteditmodifier.cpp +++ b/src/plugins/qmldesigner/designercore/model/plaintexteditmodifier.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/propertybinding.cpp b/src/plugins/qmldesigner/designercore/model/propertybinding.cpp index 1b050d06bac..29d75234f8a 100644 --- a/src/plugins/qmldesigner/designercore/model/propertybinding.cpp +++ b/src/plugins/qmldesigner/designercore/model/propertybinding.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/propertycontainer.cpp b/src/plugins/qmldesigner/designercore/model/propertycontainer.cpp index 3208216fd6b..c5ad534bf6b 100644 --- a/src/plugins/qmldesigner/designercore/model/propertycontainer.cpp +++ b/src/plugins/qmldesigner/designercore/model/propertycontainer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/propertynode.cpp b/src/plugins/qmldesigner/designercore/model/propertynode.cpp index 4dd8fc5fc9a..fa1270c2db1 100644 --- a/src/plugins/qmldesigner/designercore/model/propertynode.cpp +++ b/src/plugins/qmldesigner/designercore/model/propertynode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/propertyparser.cpp b/src/plugins/qmldesigner/designercore/model/propertyparser.cpp index b7cbaa6f23f..8dda0a418f4 100644 --- a/src/plugins/qmldesigner/designercore/model/propertyparser.cpp +++ b/src/plugins/qmldesigner/designercore/model/propertyparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/qmlanchors.cpp b/src/plugins/qmldesigner/designercore/model/qmlanchors.cpp index 9284c907f70..cbd295f87b1 100644 --- a/src/plugins/qmldesigner/designercore/model/qmlanchors.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmlanchors.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/qmlchangeset.cpp b/src/plugins/qmldesigner/designercore/model/qmlchangeset.cpp index 2602e96bbbe..14f00a5168f 100644 --- a/src/plugins/qmldesigner/designercore/model/qmlchangeset.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmlchangeset.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/qmlitemnode.cpp b/src/plugins/qmldesigner/designercore/model/qmlitemnode.cpp index 32ae0d81594..b557cafecae 100644 --- a/src/plugins/qmldesigner/designercore/model/qmlitemnode.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmlitemnode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/qmlmodelnodefacade.cpp b/src/plugins/qmldesigner/designercore/model/qmlmodelnodefacade.cpp index 26d6d07fc93..68952ad69cb 100644 --- a/src/plugins/qmldesigner/designercore/model/qmlmodelnodefacade.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmlmodelnodefacade.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/qmlobjectnode.cpp b/src/plugins/qmldesigner/designercore/model/qmlobjectnode.cpp index 83379fad59f..ca57a694e1a 100644 --- a/src/plugins/qmldesigner/designercore/model/qmlobjectnode.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmlobjectnode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/qmlstate.cpp b/src/plugins/qmldesigner/designercore/model/qmlstate.cpp index b2bd156ef9a..dae61dc0991 100644 --- a/src/plugins/qmldesigner/designercore/model/qmlstate.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmlstate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/qmltextgenerator.cpp b/src/plugins/qmldesigner/designercore/model/qmltextgenerator.cpp index 4fa4a8b82ba..4be3d741035 100644 --- a/src/plugins/qmldesigner/designercore/model/qmltextgenerator.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmltextgenerator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/qmltextgenerator.h b/src/plugins/qmldesigner/designercore/model/qmltextgenerator.h index 05da2937d2b..47f96619bde 100644 --- a/src/plugins/qmldesigner/designercore/model/qmltextgenerator.h +++ b/src/plugins/qmldesigner/designercore/model/qmltextgenerator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/rewriteaction.cpp b/src/plugins/qmldesigner/designercore/model/rewriteaction.cpp index a8a7ba3a0c7..eac02f55f0f 100644 --- a/src/plugins/qmldesigner/designercore/model/rewriteaction.cpp +++ b/src/plugins/qmldesigner/designercore/model/rewriteaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/rewriteaction.h b/src/plugins/qmldesigner/designercore/model/rewriteaction.h index d16228f0170..d5c60de01ed 100644 --- a/src/plugins/qmldesigner/designercore/model/rewriteaction.h +++ b/src/plugins/qmldesigner/designercore/model/rewriteaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.cpp b/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.cpp index 0223d5d86a8..2fa0dcb8185 100644 --- a/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.cpp +++ b/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.h b/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.h index 719d9de5f90..f7986f92560 100644 --- a/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.h +++ b/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/rewriterview.cpp b/src/plugins/qmldesigner/designercore/model/rewriterview.cpp index 28289f605fc..6f3e4efca27 100644 --- a/src/plugins/qmldesigner/designercore/model/rewriterview.cpp +++ b/src/plugins/qmldesigner/designercore/model/rewriterview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/signalhandlerproperty.cpp b/src/plugins/qmldesigner/designercore/model/signalhandlerproperty.cpp index 528df5ad74c..aab2461cb20 100644 --- a/src/plugins/qmldesigner/designercore/model/signalhandlerproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/signalhandlerproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/textmodifier.cpp b/src/plugins/qmldesigner/designercore/model/textmodifier.cpp index cae3188d43a..fdb14cf575b 100644 --- a/src/plugins/qmldesigner/designercore/model/textmodifier.cpp +++ b/src/plugins/qmldesigner/designercore/model/textmodifier.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp b/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp index 7b0b170d23d..3cedee0bdd9 100644 --- a/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp +++ b/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/texttomodelmerger.h b/src/plugins/qmldesigner/designercore/model/texttomodelmerger.h index d82bf851fed..833cdc7cfbc 100644 --- a/src/plugins/qmldesigner/designercore/model/texttomodelmerger.h +++ b/src/plugins/qmldesigner/designercore/model/texttomodelmerger.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/model/variantproperty.cpp b/src/plugins/qmldesigner/designercore/model/variantproperty.cpp index 40423adf953..bbbeb2bc5b7 100644 --- a/src/plugins/qmldesigner/designercore/model/variantproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/variantproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginmanager.cpp b/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginmanager.cpp index bb9eede119f..250248f1eaf 100644 --- a/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginmanager.cpp +++ b/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginmanager.h b/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginmanager.h index 69e48331eeb..b7d2bb488f2 100644 --- a/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginmanager.h +++ b/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginpath.cpp b/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginpath.cpp index 3ac93f85d7b..aaf0487c50a 100644 --- a/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginpath.cpp +++ b/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginpath.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginpath.h b/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginpath.h index 0857f1d1da5..2c0caefe2ef 100644 --- a/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginpath.h +++ b/src/plugins/qmldesigner/designercore/pluginmanager/widgetpluginpath.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/preview/stylemanager.cpp b/src/plugins/qmldesigner/designercore/preview/stylemanager.cpp index be81bbae27d..703e0ac8f28 100644 --- a/src/plugins/qmldesigner/designercore/preview/stylemanager.cpp +++ b/src/plugins/qmldesigner/designercore/preview/stylemanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/rewritertransaction.cpp b/src/plugins/qmldesigner/designercore/rewritertransaction.cpp index 91d8e0e223b..8b00e96b170 100644 --- a/src/plugins/qmldesigner/designercore/rewritertransaction.cpp +++ b/src/plugins/qmldesigner/designercore/rewritertransaction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designercore/rewritertransaction.h b/src/plugins/qmldesigner/designercore/rewritertransaction.h index 3ab9410873d..ac58e5fb3a1 100644 --- a/src/plugins/qmldesigner/designercore/rewritertransaction.h +++ b/src/plugins/qmldesigner/designercore/rewritertransaction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designersettings.cpp b/src/plugins/qmldesigner/designersettings.cpp index 874587a64c9..8efe36daa91 100644 --- a/src/plugins/qmldesigner/designersettings.cpp +++ b/src/plugins/qmldesigner/designersettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designersettings.h b/src/plugins/qmldesigner/designersettings.h index a42d47155a7..d9b338d516d 100644 --- a/src/plugins/qmldesigner/designersettings.h +++ b/src/plugins/qmldesigner/designersettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designmodecontext.cpp b/src/plugins/qmldesigner/designmodecontext.cpp index 4ba35811122..9b8d7716677 100644 --- a/src/plugins/qmldesigner/designmodecontext.cpp +++ b/src/plugins/qmldesigner/designmodecontext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designmodecontext.h b/src/plugins/qmldesigner/designmodecontext.h index f22bcfbb4a0..3fe94da3339 100644 --- a/src/plugins/qmldesigner/designmodecontext.h +++ b/src/plugins/qmldesigner/designmodecontext.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designmodewidget.cpp b/src/plugins/qmldesigner/designmodewidget.cpp index 9a163ff6490..f95205bfeca 100644 --- a/src/plugins/qmldesigner/designmodewidget.cpp +++ b/src/plugins/qmldesigner/designmodewidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/designmodewidget.h b/src/plugins/qmldesigner/designmodewidget.h index 73e29f202d9..9b1d7f73cf1 100644 --- a/src/plugins/qmldesigner/designmodewidget.h +++ b/src/plugins/qmldesigner/designmodewidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/desktopplugin/desktopplugin.cpp b/src/plugins/qmldesigner/desktopplugin/desktopplugin.cpp index 81df89cc56c..46ce7246478 100644 --- a/src/plugins/qmldesigner/desktopplugin/desktopplugin.cpp +++ b/src/plugins/qmldesigner/desktopplugin/desktopplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/desktopplugin/desktopplugin.h b/src/plugins/qmldesigner/desktopplugin/desktopplugin.h index c4058ecce9d..d2a384fbdbe 100644 --- a/src/plugins/qmldesigner/desktopplugin/desktopplugin.h +++ b/src/plugins/qmldesigner/desktopplugin/desktopplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/documentmanager.cpp b/src/plugins/qmldesigner/documentmanager.cpp index faad001b4df..057fb3ee92e 100644 --- a/src/plugins/qmldesigner/documentmanager.cpp +++ b/src/plugins/qmldesigner/documentmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/documentmanager.h b/src/plugins/qmldesigner/documentmanager.h index 5c45d055230..388d764cb50 100644 --- a/src/plugins/qmldesigner/documentmanager.h +++ b/src/plugins/qmldesigner/documentmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qmldesignerconstants.h b/src/plugins/qmldesigner/qmldesignerconstants.h index 8e5bdf4e0d0..427fdba5ad0 100644 --- a/src/plugins/qmldesigner/qmldesignerconstants.h +++ b/src/plugins/qmldesigner/qmldesignerconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qmldesignerplugin.cpp b/src/plugins/qmldesigner/qmldesignerplugin.cpp index 9422dc90692..5108cab37f1 100644 --- a/src/plugins/qmldesigner/qmldesignerplugin.cpp +++ b/src/plugins/qmldesigner/qmldesignerplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qmldesignerplugin.h b/src/plugins/qmldesigner/qmldesignerplugin.h index 36a72d971d8..e44fd1009dc 100644 --- a/src/plugins/qmldesigner/qmldesignerplugin.h +++ b/src/plugins/qmldesigner/qmldesignerplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/qtquickplugin.cpp b/src/plugins/qmldesigner/qtquickplugin/qtquickplugin.cpp index c6fde7ec784..3fdfabc3e82 100644 --- a/src/plugins/qmldesigner/qtquickplugin/qtquickplugin.cpp +++ b/src/plugins/qmldesigner/qtquickplugin/qtquickplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/qtquickplugin.h b/src/plugins/qmldesigner/qtquickplugin/qtquickplugin.h index ee0a23383d4..ecdedfdf7cb 100644 --- a/src/plugins/qmldesigner/qtquickplugin/qtquickplugin.h +++ b/src/plugins/qmldesigner/qtquickplugin/qtquickplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/gridview.qml b/src/plugins/qmldesigner/qtquickplugin/source/gridview.qml index d8a56551c9b..3c2bddef9fb 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/gridview.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/gridview.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/gridviewv2.qml b/src/plugins/qmldesigner/qtquickplugin/source/gridviewv2.qml index 4d9793e9825..79b07f220f5 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/gridviewv2.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/gridviewv2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/listview.qml b/src/plugins/qmldesigner/qtquickplugin/source/listview.qml index 54d1014a883..6c70227a7d7 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/listview.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/listview.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/listviewv2.qml b/src/plugins/qmldesigner/qtquickplugin/source/listviewv2.qml index b46467c2c23..b3e8c93d2d3 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/listviewv2.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/listviewv2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/pathview.qml b/src/plugins/qmldesigner/qtquickplugin/source/pathview.qml index c2121464a55..57387305ec9 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/pathview.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/pathview.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/pathviewv2.qml b/src/plugins/qmldesigner/qtquickplugin/source/pathviewv2.qml index 208e34e79e9..185a697257b 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/pathviewv2.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/pathviewv2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/text.qml b/src/plugins/qmldesigner/qtquickplugin/source/text.qml index df90d71dcb8..cd68a6ffb68 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/text.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/text.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/textedit.qml b/src/plugins/qmldesigner/qtquickplugin/source/textedit.qml index 4c0fc93a910..46bb90ebbfa 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/textedit.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/textedit.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/texteditv2.qml b/src/plugins/qmldesigner/qtquickplugin/source/texteditv2.qml index 75393070452..4340bfff5aa 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/texteditv2.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/texteditv2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/textinput.qml b/src/plugins/qmldesigner/qtquickplugin/source/textinput.qml index 37831ef5329..9ccad776885 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/textinput.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/textinput.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/textinputv2.qml b/src/plugins/qmldesigner/qtquickplugin/source/textinputv2.qml index 7ae0ea8869c..2be2191900e 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/textinputv2.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/textinputv2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/qtquickplugin/source/textv2.qml b/src/plugins/qmldesigner/qtquickplugin/source/textv2.qml index ab2ffa9c07a..4628c1ea49d 100644 --- a/src/plugins/qmldesigner/qtquickplugin/source/textv2.qml +++ b/src/plugins/qmldesigner/qtquickplugin/source/textv2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/settingspage.cpp b/src/plugins/qmldesigner/settingspage.cpp index 3cf0e6cc0ec..af513e158e8 100644 --- a/src/plugins/qmldesigner/settingspage.cpp +++ b/src/plugins/qmldesigner/settingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/settingspage.h b/src/plugins/qmldesigner/settingspage.h index 78a143a0689..22aedc9f4f1 100644 --- a/src/plugins/qmldesigner/settingspage.h +++ b/src/plugins/qmldesigner/settingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/styledoutputpaneplaceholder.cpp b/src/plugins/qmldesigner/styledoutputpaneplaceholder.cpp index 540f122049b..ea1fe8cb86f 100644 --- a/src/plugins/qmldesigner/styledoutputpaneplaceholder.cpp +++ b/src/plugins/qmldesigner/styledoutputpaneplaceholder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmldesigner/styledoutputpaneplaceholder.h b/src/plugins/qmldesigner/styledoutputpaneplaceholder.h index 1aa773074a8..874f1b85a35 100644 --- a/src/plugins/qmldesigner/styledoutputpaneplaceholder.h +++ b/src/plugins/qmldesigner/styledoutputpaneplaceholder.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/QmlJSEditor.pluginspec.in b/src/plugins/qmljseditor/QmlJSEditor.pluginspec.in index 2138608d821..f0c2b2531e0 100644 --- a/src/plugins/qmljseditor/QmlJSEditor.pluginspec.in +++ b/src/plugins/qmljseditor/QmlJSEditor.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"QmlJSEditor\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/qmljseditor/jsfilewizard.cpp b/src/plugins/qmljseditor/jsfilewizard.cpp index aeff9bece86..cf7c7dfc955 100644 --- a/src/plugins/qmljseditor/jsfilewizard.cpp +++ b/src/plugins/qmljseditor/jsfilewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/jsfilewizard.h b/src/plugins/qmljseditor/jsfilewizard.h index 4d4cc7a140b..ae9f6878d19 100644 --- a/src/plugins/qmljseditor/jsfilewizard.h +++ b/src/plugins/qmljseditor/jsfilewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmlexpressionundercursor.cpp b/src/plugins/qmljseditor/qmlexpressionundercursor.cpp index 5f2fe8f94c1..39f2b09f14b 100644 --- a/src/plugins/qmljseditor/qmlexpressionundercursor.cpp +++ b/src/plugins/qmljseditor/qmlexpressionundercursor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmlexpressionundercursor.h b/src/plugins/qmljseditor/qmlexpressionundercursor.h index 71fea5b2e68..fb8adceed28 100644 --- a/src/plugins/qmljseditor/qmlexpressionundercursor.h +++ b/src/plugins/qmljseditor/qmlexpressionundercursor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmlfilewizard.cpp b/src/plugins/qmljseditor/qmlfilewizard.cpp index e35c30048bc..2a6800527d5 100644 --- a/src/plugins/qmljseditor/qmlfilewizard.cpp +++ b/src/plugins/qmljseditor/qmlfilewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmlfilewizard.h b/src/plugins/qmljseditor/qmlfilewizard.h index a476db3f979..fa225f380aa 100644 --- a/src/plugins/qmljseditor/qmlfilewizard.h +++ b/src/plugins/qmljseditor/qmlfilewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsautocompleter.cpp b/src/plugins/qmljseditor/qmljsautocompleter.cpp index c0de28b5808..7f3d38ca6c9 100644 --- a/src/plugins/qmljseditor/qmljsautocompleter.cpp +++ b/src/plugins/qmljseditor/qmljsautocompleter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsautocompleter.h b/src/plugins/qmljseditor/qmljsautocompleter.h index 22f72c26d87..204bb120fa3 100644 --- a/src/plugins/qmljseditor/qmljsautocompleter.h +++ b/src/plugins/qmljseditor/qmljsautocompleter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljscompletionassist.cpp b/src/plugins/qmljseditor/qmljscompletionassist.cpp index 16661622d3b..60faa737492 100644 --- a/src/plugins/qmljseditor/qmljscompletionassist.cpp +++ b/src/plugins/qmljseditor/qmljscompletionassist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljscompletionassist.h b/src/plugins/qmljseditor/qmljscompletionassist.h index a8437211e3e..14b37dbdf54 100644 --- a/src/plugins/qmljseditor/qmljscompletionassist.h +++ b/src/plugins/qmljseditor/qmljscompletionassist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljscomponentfromobjectdef.cpp b/src/plugins/qmljseditor/qmljscomponentfromobjectdef.cpp index fb471240714..4d607068ad6 100644 --- a/src/plugins/qmljseditor/qmljscomponentfromobjectdef.cpp +++ b/src/plugins/qmljseditor/qmljscomponentfromobjectdef.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljscomponentfromobjectdef.h b/src/plugins/qmljseditor/qmljscomponentfromobjectdef.h index 6d791a14a34..e589063494b 100644 --- a/src/plugins/qmljseditor/qmljscomponentfromobjectdef.h +++ b/src/plugins/qmljseditor/qmljscomponentfromobjectdef.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljscomponentnamedialog.cpp b/src/plugins/qmljseditor/qmljscomponentnamedialog.cpp index ebd55d1712c..b65e7c99eae 100644 --- a/src/plugins/qmljseditor/qmljscomponentnamedialog.cpp +++ b/src/plugins/qmljseditor/qmljscomponentnamedialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljscomponentnamedialog.h b/src/plugins/qmljseditor/qmljscomponentnamedialog.h index 28e5eebcf82..9e6bf89013f 100644 --- a/src/plugins/qmljseditor/qmljscomponentnamedialog.h +++ b/src/plugins/qmljseditor/qmljscomponentnamedialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditor.cpp b/src/plugins/qmljseditor/qmljseditor.cpp index dc0b419a0a1..8878d6d54cb 100644 --- a/src/plugins/qmljseditor/qmljseditor.cpp +++ b/src/plugins/qmljseditor/qmljseditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditor.h b/src/plugins/qmljseditor/qmljseditor.h index 5ce152d3d31..21b5f00dafa 100644 --- a/src/plugins/qmljseditor/qmljseditor.h +++ b/src/plugins/qmljseditor/qmljseditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditor_global.h b/src/plugins/qmljseditor/qmljseditor_global.h index 45e16d5862a..89863dbf3c7 100644 --- a/src/plugins/qmljseditor/qmljseditor_global.h +++ b/src/plugins/qmljseditor/qmljseditor_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditorconstants.h b/src/plugins/qmljseditor/qmljseditorconstants.h index f3fcea7490c..f29e42974a6 100644 --- a/src/plugins/qmljseditor/qmljseditorconstants.h +++ b/src/plugins/qmljseditor/qmljseditorconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditoreditable.cpp b/src/plugins/qmljseditor/qmljseditoreditable.cpp index f30b3426f5e..37d24311e62 100644 --- a/src/plugins/qmljseditor/qmljseditoreditable.cpp +++ b/src/plugins/qmljseditor/qmljseditoreditable.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditoreditable.h b/src/plugins/qmljseditor/qmljseditoreditable.h index 874e2cf4cf6..98d05470f9a 100644 --- a/src/plugins/qmljseditor/qmljseditoreditable.h +++ b/src/plugins/qmljseditor/qmljseditoreditable.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditorfactory.cpp b/src/plugins/qmljseditor/qmljseditorfactory.cpp index 4a2efa60538..006fe79d5cd 100644 --- a/src/plugins/qmljseditor/qmljseditorfactory.cpp +++ b/src/plugins/qmljseditor/qmljseditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditorfactory.h b/src/plugins/qmljseditor/qmljseditorfactory.h index 79d4b3cada4..8370f68a53c 100644 --- a/src/plugins/qmljseditor/qmljseditorfactory.h +++ b/src/plugins/qmljseditor/qmljseditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditorplugin.cpp b/src/plugins/qmljseditor/qmljseditorplugin.cpp index 0bc0ffdba0d..d63d612cb9e 100644 --- a/src/plugins/qmljseditor/qmljseditorplugin.cpp +++ b/src/plugins/qmljseditor/qmljseditorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljseditorplugin.h b/src/plugins/qmljseditor/qmljseditorplugin.h index 45f22401238..2ee6e6ed768 100644 --- a/src/plugins/qmljseditor/qmljseditorplugin.h +++ b/src/plugins/qmljseditor/qmljseditorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsfindreferences.cpp b/src/plugins/qmljseditor/qmljsfindreferences.cpp index 48a16d0de09..7dc4179aa2c 100644 --- a/src/plugins/qmljseditor/qmljsfindreferences.cpp +++ b/src/plugins/qmljseditor/qmljsfindreferences.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsfindreferences.h b/src/plugins/qmljseditor/qmljsfindreferences.h index 587ea58ab7f..f4d3dc6c55c 100644 --- a/src/plugins/qmljseditor/qmljsfindreferences.h +++ b/src/plugins/qmljseditor/qmljsfindreferences.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljshighlighter.cpp b/src/plugins/qmljseditor/qmljshighlighter.cpp index fae399cc431..423da9d2067 100644 --- a/src/plugins/qmljseditor/qmljshighlighter.cpp +++ b/src/plugins/qmljseditor/qmljshighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljshighlighter.h b/src/plugins/qmljseditor/qmljshighlighter.h index b81f1687218..29412eedeac 100644 --- a/src/plugins/qmljseditor/qmljshighlighter.h +++ b/src/plugins/qmljseditor/qmljshighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljshighlighterfactory.cpp b/src/plugins/qmljseditor/qmljshighlighterfactory.cpp index 576d419f309..0de134616a2 100644 --- a/src/plugins/qmljseditor/qmljshighlighterfactory.cpp +++ b/src/plugins/qmljseditor/qmljshighlighterfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljshighlighterfactory.h b/src/plugins/qmljseditor/qmljshighlighterfactory.h index ab768f8a0d5..842e5dcef9b 100644 --- a/src/plugins/qmljseditor/qmljshighlighterfactory.h +++ b/src/plugins/qmljseditor/qmljshighlighterfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljshoverhandler.cpp b/src/plugins/qmljseditor/qmljshoverhandler.cpp index b32537362ee..fe731ab8a34 100644 --- a/src/plugins/qmljseditor/qmljshoverhandler.cpp +++ b/src/plugins/qmljseditor/qmljshoverhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljshoverhandler.h b/src/plugins/qmljseditor/qmljshoverhandler.h index c6128803fdf..25b1450b9fa 100644 --- a/src/plugins/qmljseditor/qmljshoverhandler.h +++ b/src/plugins/qmljseditor/qmljshoverhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsoutline.cpp b/src/plugins/qmljseditor/qmljsoutline.cpp index d9d49853a29..442d6220830 100644 --- a/src/plugins/qmljseditor/qmljsoutline.cpp +++ b/src/plugins/qmljseditor/qmljsoutline.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsoutline.h b/src/plugins/qmljseditor/qmljsoutline.h index 226d4111d71..a512fd455f8 100644 --- a/src/plugins/qmljseditor/qmljsoutline.h +++ b/src/plugins/qmljseditor/qmljsoutline.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsoutlinetreeview.cpp b/src/plugins/qmljseditor/qmljsoutlinetreeview.cpp index af6649978ca..808726bffee 100644 --- a/src/plugins/qmljseditor/qmljsoutlinetreeview.cpp +++ b/src/plugins/qmljseditor/qmljsoutlinetreeview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsoutlinetreeview.h b/src/plugins/qmljseditor/qmljsoutlinetreeview.h index be7b96e6df7..3e7ef4873b6 100644 --- a/src/plugins/qmljseditor/qmljsoutlinetreeview.h +++ b/src/plugins/qmljseditor/qmljsoutlinetreeview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljspreviewrunner.cpp b/src/plugins/qmljseditor/qmljspreviewrunner.cpp index 0da0b0a14ac..a6932185b07 100644 --- a/src/plugins/qmljseditor/qmljspreviewrunner.cpp +++ b/src/plugins/qmljseditor/qmljspreviewrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljspreviewrunner.h b/src/plugins/qmljseditor/qmljspreviewrunner.h index 84c32e4f6a5..93d37abf3af 100644 --- a/src/plugins/qmljseditor/qmljspreviewrunner.h +++ b/src/plugins/qmljseditor/qmljspreviewrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsquickfix.cpp b/src/plugins/qmljseditor/qmljsquickfix.cpp index c05a090d6e7..875399dddac 100644 --- a/src/plugins/qmljseditor/qmljsquickfix.cpp +++ b/src/plugins/qmljseditor/qmljsquickfix.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsquickfix.h b/src/plugins/qmljseditor/qmljsquickfix.h index 3a22b3f8cce..52baa991fdf 100644 --- a/src/plugins/qmljseditor/qmljsquickfix.h +++ b/src/plugins/qmljseditor/qmljsquickfix.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsquickfixassist.cpp b/src/plugins/qmljseditor/qmljsquickfixassist.cpp index 29a1a861856..af91ea8ce43 100644 --- a/src/plugins/qmljseditor/qmljsquickfixassist.cpp +++ b/src/plugins/qmljseditor/qmljsquickfixassist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsquickfixassist.h b/src/plugins/qmljseditor/qmljsquickfixassist.h index af2e51d1977..03c4a84caf9 100644 --- a/src/plugins/qmljseditor/qmljsquickfixassist.h +++ b/src/plugins/qmljseditor/qmljsquickfixassist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsquickfixes.cpp b/src/plugins/qmljseditor/qmljsquickfixes.cpp index 94734e496d0..b0e39a60838 100644 --- a/src/plugins/qmljseditor/qmljsquickfixes.cpp +++ b/src/plugins/qmljseditor/qmljsquickfixes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsreuse.cpp b/src/plugins/qmljseditor/qmljsreuse.cpp index 97bffbe1e01..3f5d7fe1d99 100644 --- a/src/plugins/qmljseditor/qmljsreuse.cpp +++ b/src/plugins/qmljseditor/qmljsreuse.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljsreuse.h b/src/plugins/qmljseditor/qmljsreuse.h index a34159156bf..079fca1ea4c 100644 --- a/src/plugins/qmljseditor/qmljsreuse.h +++ b/src/plugins/qmljseditor/qmljsreuse.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljssemantichighlighter.cpp b/src/plugins/qmljseditor/qmljssemantichighlighter.cpp index ffafb7a8fe0..89a9e8d4a5d 100644 --- a/src/plugins/qmljseditor/qmljssemantichighlighter.cpp +++ b/src/plugins/qmljseditor/qmljssemantichighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljssemantichighlighter.h b/src/plugins/qmljseditor/qmljssemantichighlighter.h index f9195b959e1..e9cdfa20501 100644 --- a/src/plugins/qmljseditor/qmljssemantichighlighter.h +++ b/src/plugins/qmljseditor/qmljssemantichighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljssemanticinfoupdater.cpp b/src/plugins/qmljseditor/qmljssemanticinfoupdater.cpp index 30b3422cc53..64b44e49786 100644 --- a/src/plugins/qmljseditor/qmljssemanticinfoupdater.cpp +++ b/src/plugins/qmljseditor/qmljssemanticinfoupdater.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljssemanticinfoupdater.h b/src/plugins/qmljseditor/qmljssemanticinfoupdater.h index 440897b2394..51b0ea85a79 100644 --- a/src/plugins/qmljseditor/qmljssemanticinfoupdater.h +++ b/src/plugins/qmljseditor/qmljssemanticinfoupdater.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljssnippetprovider.cpp b/src/plugins/qmljseditor/qmljssnippetprovider.cpp index 026fef61999..31cbedbd19c 100644 --- a/src/plugins/qmljseditor/qmljssnippetprovider.cpp +++ b/src/plugins/qmljseditor/qmljssnippetprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljssnippetprovider.h b/src/plugins/qmljseditor/qmljssnippetprovider.h index 3612cdac6ca..0e3f00faa14 100644 --- a/src/plugins/qmljseditor/qmljssnippetprovider.h +++ b/src/plugins/qmljseditor/qmljssnippetprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljswrapinloader.cpp b/src/plugins/qmljseditor/qmljswrapinloader.cpp index 8605db7f22f..214f015218d 100644 --- a/src/plugins/qmljseditor/qmljswrapinloader.cpp +++ b/src/plugins/qmljseditor/qmljswrapinloader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmljswrapinloader.h b/src/plugins/qmljseditor/qmljswrapinloader.h index c9781e998a0..0ae6c048ffb 100644 --- a/src/plugins/qmljseditor/qmljswrapinloader.h +++ b/src/plugins/qmljseditor/qmljswrapinloader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmloutlinemodel.cpp b/src/plugins/qmljseditor/qmloutlinemodel.cpp index e559c20962f..95c6e9efdb6 100644 --- a/src/plugins/qmljseditor/qmloutlinemodel.cpp +++ b/src/plugins/qmljseditor/qmloutlinemodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmloutlinemodel.h b/src/plugins/qmljseditor/qmloutlinemodel.h index c3971ecda84..663dc71865f 100644 --- a/src/plugins/qmljseditor/qmloutlinemodel.h +++ b/src/plugins/qmljseditor/qmloutlinemodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmltaskmanager.cpp b/src/plugins/qmljseditor/qmltaskmanager.cpp index 40d19319aa9..496720e15a9 100644 --- a/src/plugins/qmljseditor/qmltaskmanager.cpp +++ b/src/plugins/qmljseditor/qmltaskmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/qmltaskmanager.h b/src/plugins/qmljseditor/qmltaskmanager.h index f7aaf0ab742..f55d13b7b6f 100644 --- a/src/plugins/qmljseditor/qmltaskmanager.h +++ b/src/plugins/qmljseditor/qmltaskmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/quicktoolbar.cpp b/src/plugins/qmljseditor/quicktoolbar.cpp index f084a3020d4..09549897e92 100644 --- a/src/plugins/qmljseditor/quicktoolbar.cpp +++ b/src/plugins/qmljseditor/quicktoolbar.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/quicktoolbar.h b/src/plugins/qmljseditor/quicktoolbar.h index b90ab789549..78e0e0e0bc2 100644 --- a/src/plugins/qmljseditor/quicktoolbar.h +++ b/src/plugins/qmljseditor/quicktoolbar.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/quicktoolbarsettingspage.cpp b/src/plugins/qmljseditor/quicktoolbarsettingspage.cpp index 59d0b858ea0..aca9d03dff7 100644 --- a/src/plugins/qmljseditor/quicktoolbarsettingspage.cpp +++ b/src/plugins/qmljseditor/quicktoolbarsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljseditor/quicktoolbarsettingspage.h b/src/plugins/qmljseditor/quicktoolbarsettingspage.h index db5ca870e9f..f9964629f42 100644 --- a/src/plugins/qmljseditor/quicktoolbarsettingspage.h +++ b/src/plugins/qmljseditor/quicktoolbarsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/QmlJSTools.pluginspec.in b/src/plugins/qmljstools/QmlJSTools.pluginspec.in index 9e74e4fc1f0..d158493627d 100644 --- a/src/plugins/qmljstools/QmlJSTools.pluginspec.in +++ b/src/plugins/qmljstools/QmlJSTools.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"QmlJSTools\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/qmljstools/qmlconsoleedit.cpp b/src/plugins/qmljstools/qmlconsoleedit.cpp index 8c1e8c041d0..8b47f27be60 100644 --- a/src/plugins/qmljstools/qmlconsoleedit.cpp +++ b/src/plugins/qmljstools/qmlconsoleedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsoleedit.h b/src/plugins/qmljstools/qmlconsoleedit.h index 0b0d8f2326e..ce999375ed1 100644 --- a/src/plugins/qmljstools/qmlconsoleedit.h +++ b/src/plugins/qmljstools/qmlconsoleedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsoleitemdelegate.cpp b/src/plugins/qmljstools/qmlconsoleitemdelegate.cpp index def7176d3b3..095b3d0ae91 100644 --- a/src/plugins/qmljstools/qmlconsoleitemdelegate.cpp +++ b/src/plugins/qmljstools/qmlconsoleitemdelegate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsoleitemdelegate.h b/src/plugins/qmljstools/qmlconsoleitemdelegate.h index a51de51eae3..ba9c1b0738a 100644 --- a/src/plugins/qmljstools/qmlconsoleitemdelegate.h +++ b/src/plugins/qmljstools/qmlconsoleitemdelegate.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsoleitemmodel.cpp b/src/plugins/qmljstools/qmlconsoleitemmodel.cpp index fa7a900e35b..7812fa25b36 100644 --- a/src/plugins/qmljstools/qmlconsoleitemmodel.cpp +++ b/src/plugins/qmljstools/qmlconsoleitemmodel.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsoleitemmodel.h b/src/plugins/qmljstools/qmlconsoleitemmodel.h index 87740971d7e..abccdb3adbc 100644 --- a/src/plugins/qmljstools/qmlconsoleitemmodel.h +++ b/src/plugins/qmljstools/qmlconsoleitemmodel.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsolemanager.cpp b/src/plugins/qmljstools/qmlconsolemanager.cpp index ab2ca18c5ec..a8276c83d34 100644 --- a/src/plugins/qmljstools/qmlconsolemanager.cpp +++ b/src/plugins/qmljstools/qmlconsolemanager.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsolemanager.h b/src/plugins/qmljstools/qmlconsolemanager.h index e7ea7a5a93f..cd751953271 100644 --- a/src/plugins/qmljstools/qmlconsolemanager.h +++ b/src/plugins/qmljstools/qmlconsolemanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsolemodel.h b/src/plugins/qmljstools/qmlconsolemodel.h index 6b3be267aee..d0d160c45d1 100644 --- a/src/plugins/qmljstools/qmlconsolemodel.h +++ b/src/plugins/qmljstools/qmlconsolemodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsolepane.cpp b/src/plugins/qmljstools/qmlconsolepane.cpp index 851a4849e8f..c55ecdfd31c 100644 --- a/src/plugins/qmljstools/qmlconsolepane.cpp +++ b/src/plugins/qmljstools/qmlconsolepane.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsolepane.h b/src/plugins/qmljstools/qmlconsolepane.h index 42c49493501..938369839df 100644 --- a/src/plugins/qmljstools/qmlconsolepane.h +++ b/src/plugins/qmljstools/qmlconsolepane.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsoleproxymodel.cpp b/src/plugins/qmljstools/qmlconsoleproxymodel.cpp index 01cacf2ed95..641bd90abdf 100644 --- a/src/plugins/qmljstools/qmlconsoleproxymodel.cpp +++ b/src/plugins/qmljstools/qmlconsoleproxymodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsoleproxymodel.h b/src/plugins/qmljstools/qmlconsoleproxymodel.h index e0d320ea944..bbd365302ae 100644 --- a/src/plugins/qmljstools/qmlconsoleproxymodel.h +++ b/src/plugins/qmljstools/qmlconsoleproxymodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsoleview.cpp b/src/plugins/qmljstools/qmlconsoleview.cpp index d02dd2d686c..7bfdd8c36b9 100644 --- a/src/plugins/qmljstools/qmlconsoleview.cpp +++ b/src/plugins/qmljstools/qmlconsoleview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmlconsoleview.h b/src/plugins/qmljstools/qmlconsoleview.h index 22085704011..41db4f0c018 100644 --- a/src/plugins/qmljstools/qmlconsoleview.h +++ b/src/plugins/qmljstools/qmlconsoleview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsbundleprovider.cpp b/src/plugins/qmljstools/qmljsbundleprovider.cpp index a938e9d18cb..1c065c2c81e 100644 --- a/src/plugins/qmljstools/qmljsbundleprovider.cpp +++ b/src/plugins/qmljstools/qmljsbundleprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsbundleprovider.h b/src/plugins/qmljstools/qmljsbundleprovider.h index 29536acffbe..457974f9110 100644 --- a/src/plugins/qmljstools/qmljsbundleprovider.h +++ b/src/plugins/qmljstools/qmljsbundleprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljscodestylepreferencesfactory.cpp b/src/plugins/qmljstools/qmljscodestylepreferencesfactory.cpp index 4375508ab36..a8e7eaf2f26 100644 --- a/src/plugins/qmljstools/qmljscodestylepreferencesfactory.cpp +++ b/src/plugins/qmljstools/qmljscodestylepreferencesfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljscodestylepreferencesfactory.h b/src/plugins/qmljstools/qmljscodestylepreferencesfactory.h index 35e9a6b4fff..55d80da2d4b 100644 --- a/src/plugins/qmljstools/qmljscodestylepreferencesfactory.h +++ b/src/plugins/qmljstools/qmljscodestylepreferencesfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljscodestylesettingspage.cpp b/src/plugins/qmljstools/qmljscodestylesettingspage.cpp index b0dcc8a60d6..82d86647175 100644 --- a/src/plugins/qmljstools/qmljscodestylesettingspage.cpp +++ b/src/plugins/qmljstools/qmljscodestylesettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljscodestylesettingspage.h b/src/plugins/qmljstools/qmljscodestylesettingspage.h index 7f95bd654a0..ddb05033d19 100644 --- a/src/plugins/qmljstools/qmljscodestylesettingspage.h +++ b/src/plugins/qmljstools/qmljscodestylesettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsfindexportedcpptypes.cpp b/src/plugins/qmljstools/qmljsfindexportedcpptypes.cpp index 13c88da73fd..4b9f819fd70 100644 --- a/src/plugins/qmljstools/qmljsfindexportedcpptypes.cpp +++ b/src/plugins/qmljstools/qmljsfindexportedcpptypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsfindexportedcpptypes.h b/src/plugins/qmljstools/qmljsfindexportedcpptypes.h index 21fdeb0028e..90884d66d25 100644 --- a/src/plugins/qmljstools/qmljsfindexportedcpptypes.h +++ b/src/plugins/qmljstools/qmljsfindexportedcpptypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsfunctionfilter.cpp b/src/plugins/qmljstools/qmljsfunctionfilter.cpp index 26cafebe707..9da8cc3c683 100644 --- a/src/plugins/qmljstools/qmljsfunctionfilter.cpp +++ b/src/plugins/qmljstools/qmljsfunctionfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsfunctionfilter.h b/src/plugins/qmljstools/qmljsfunctionfilter.h index 5632847ebcd..ee7d468c1d8 100644 --- a/src/plugins/qmljstools/qmljsfunctionfilter.h +++ b/src/plugins/qmljstools/qmljsfunctionfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsindenter.cpp b/src/plugins/qmljstools/qmljsindenter.cpp index fb28e46c09d..0cb70065d2e 100644 --- a/src/plugins/qmljstools/qmljsindenter.cpp +++ b/src/plugins/qmljstools/qmljsindenter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsindenter.h b/src/plugins/qmljstools/qmljsindenter.h index 317ae6f2ba5..6c02b3f211f 100644 --- a/src/plugins/qmljstools/qmljsindenter.h +++ b/src/plugins/qmljstools/qmljsindenter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsinterpreter.cpp b/src/plugins/qmljstools/qmljsinterpreter.cpp index 720892385db..c8da59a64dc 100644 --- a/src/plugins/qmljstools/qmljsinterpreter.cpp +++ b/src/plugins/qmljstools/qmljsinterpreter.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsinterpreter.h b/src/plugins/qmljstools/qmljsinterpreter.h index f7dc45dde1b..737d09dec88 100644 --- a/src/plugins/qmljstools/qmljsinterpreter.h +++ b/src/plugins/qmljstools/qmljsinterpreter.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljslocatordata.cpp b/src/plugins/qmljstools/qmljslocatordata.cpp index 72e73b3767c..ccce3e50c3f 100644 --- a/src/plugins/qmljstools/qmljslocatordata.cpp +++ b/src/plugins/qmljstools/qmljslocatordata.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljslocatordata.h b/src/plugins/qmljstools/qmljslocatordata.h index feb407e8d7a..7fa9507ead7 100644 --- a/src/plugins/qmljstools/qmljslocatordata.h +++ b/src/plugins/qmljstools/qmljslocatordata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsmodelmanager.cpp b/src/plugins/qmljstools/qmljsmodelmanager.cpp index 2c7469d1f4f..6c4a3a34a35 100644 --- a/src/plugins/qmljstools/qmljsmodelmanager.cpp +++ b/src/plugins/qmljstools/qmljsmodelmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsmodelmanager.h b/src/plugins/qmljstools/qmljsmodelmanager.h index 13c291e77fc..af72249e653 100644 --- a/src/plugins/qmljstools/qmljsmodelmanager.h +++ b/src/plugins/qmljstools/qmljsmodelmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsplugindumper.cpp b/src/plugins/qmljstools/qmljsplugindumper.cpp index d0fb8a7b465..01c2d8518ef 100644 --- a/src/plugins/qmljstools/qmljsplugindumper.cpp +++ b/src/plugins/qmljstools/qmljsplugindumper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsplugindumper.h b/src/plugins/qmljstools/qmljsplugindumper.h index 54a8bd03b4a..65c1da9481f 100644 --- a/src/plugins/qmljstools/qmljsplugindumper.h +++ b/src/plugins/qmljstools/qmljsplugindumper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsqtstylecodeformatter.cpp b/src/plugins/qmljstools/qmljsqtstylecodeformatter.cpp index d7de5d72228..267ba39e2c0 100644 --- a/src/plugins/qmljstools/qmljsqtstylecodeformatter.cpp +++ b/src/plugins/qmljstools/qmljsqtstylecodeformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsqtstylecodeformatter.h b/src/plugins/qmljstools/qmljsqtstylecodeformatter.h index 0b17f5d195d..5b98b88cb74 100644 --- a/src/plugins/qmljstools/qmljsqtstylecodeformatter.h +++ b/src/plugins/qmljstools/qmljsqtstylecodeformatter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsrefactoringchanges.cpp b/src/plugins/qmljstools/qmljsrefactoringchanges.cpp index 06381b313b8..4937beed592 100644 --- a/src/plugins/qmljstools/qmljsrefactoringchanges.cpp +++ b/src/plugins/qmljstools/qmljsrefactoringchanges.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljsrefactoringchanges.h b/src/plugins/qmljstools/qmljsrefactoringchanges.h index 2fd7f73d4d0..906c57f75ae 100644 --- a/src/plugins/qmljstools/qmljsrefactoringchanges.h +++ b/src/plugins/qmljstools/qmljsrefactoringchanges.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljssemanticinfo.cpp b/src/plugins/qmljstools/qmljssemanticinfo.cpp index cc65dadb6f4..856c810b1f6 100644 --- a/src/plugins/qmljstools/qmljssemanticinfo.cpp +++ b/src/plugins/qmljstools/qmljssemanticinfo.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljssemanticinfo.h b/src/plugins/qmljstools/qmljssemanticinfo.h index 45001761f0c..24a0f966791 100644 --- a/src/plugins/qmljstools/qmljssemanticinfo.h +++ b/src/plugins/qmljstools/qmljssemanticinfo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljstools_global.h b/src/plugins/qmljstools/qmljstools_global.h index a72b92df55e..982913eb3fc 100644 --- a/src/plugins/qmljstools/qmljstools_global.h +++ b/src/plugins/qmljstools/qmljstools_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljstools_test.cpp b/src/plugins/qmljstools/qmljstools_test.cpp index 9302bde6fb3..476589aba6e 100644 --- a/src/plugins/qmljstools/qmljstools_test.cpp +++ b/src/plugins/qmljstools/qmljstools_test.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljstoolsconstants.h b/src/plugins/qmljstools/qmljstoolsconstants.h index 2a0d7644f1f..0803cf49883 100644 --- a/src/plugins/qmljstools/qmljstoolsconstants.h +++ b/src/plugins/qmljstools/qmljstoolsconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljstoolsplugin.cpp b/src/plugins/qmljstools/qmljstoolsplugin.cpp index fa8eff614a3..4e02e5b36cb 100644 --- a/src/plugins/qmljstools/qmljstoolsplugin.cpp +++ b/src/plugins/qmljstools/qmljstoolsplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljstoolsplugin.h b/src/plugins/qmljstools/qmljstoolsplugin.h index 6aa5ea1c70c..d8323ac9f13 100644 --- a/src/plugins/qmljstools/qmljstoolsplugin.h +++ b/src/plugins/qmljstools/qmljstoolsplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljstoolssettings.cpp b/src/plugins/qmljstools/qmljstoolssettings.cpp index caab131726a..19f774cebb2 100644 --- a/src/plugins/qmljstools/qmljstoolssettings.cpp +++ b/src/plugins/qmljstools/qmljstoolssettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmljstools/qmljstoolssettings.h b/src/plugins/qmljstools/qmljstoolssettings.h index 364688ab135..2db67ec2779 100644 --- a/src/plugins/qmljstools/qmljstoolssettings.h +++ b/src/plugins/qmljstools/qmljstoolssettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/QmlProfiler.pluginspec.in b/src/plugins/qmlprofiler/QmlProfiler.pluginspec.in index e51bd8f1dec..c1d07a175e0 100644 --- a/src/plugins/qmlprofiler/QmlProfiler.pluginspec.in +++ b/src/plugins/qmlprofiler/QmlProfiler.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"QmlProfiler\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/qmlprofiler/abstractqmlprofilerrunner.h b/src/plugins/qmlprofiler/abstractqmlprofilerrunner.h index 6c2f1e7931c..1eb8b69224d 100644 --- a/src/plugins/qmlprofiler/abstractqmlprofilerrunner.h +++ b/src/plugins/qmlprofiler/abstractqmlprofilerrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/abstracttimelinemodel.cpp b/src/plugins/qmlprofiler/abstracttimelinemodel.cpp index 6df98dbbd6d..99d555efef9 100644 --- a/src/plugins/qmlprofiler/abstracttimelinemodel.cpp +++ b/src/plugins/qmlprofiler/abstracttimelinemodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/abstracttimelinemodel.h b/src/plugins/qmlprofiler/abstracttimelinemodel.h index 0efcd606316..a139669b121 100644 --- a/src/plugins/qmlprofiler/abstracttimelinemodel.h +++ b/src/plugins/qmlprofiler/abstracttimelinemodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/canvas/qdeclarativecanvas.cpp b/src/plugins/qmlprofiler/canvas/qdeclarativecanvas.cpp index 4611d7096b3..bb68bdeb4f1 100644 --- a/src/plugins/qmlprofiler/canvas/qdeclarativecanvas.cpp +++ b/src/plugins/qmlprofiler/canvas/qdeclarativecanvas.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/canvas/qdeclarativecanvas_p.h b/src/plugins/qmlprofiler/canvas/qdeclarativecanvas_p.h index 3f4fd8b0dd5..bf1af2431dd 100644 --- a/src/plugins/qmlprofiler/canvas/qdeclarativecanvas_p.h +++ b/src/plugins/qmlprofiler/canvas/qdeclarativecanvas_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer.cpp b/src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer.cpp index 8069fbbcb70..33d94d8e542 100644 --- a/src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer.cpp +++ b/src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer_p.h b/src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer_p.h index b25a98eb44f..852431d7184 100644 --- a/src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer_p.h +++ b/src/plugins/qmlprofiler/canvas/qdeclarativecanvastimer_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/canvas/qdeclarativecontext2d.cpp b/src/plugins/qmlprofiler/canvas/qdeclarativecontext2d.cpp index f006657bfc7..b56037f7ac3 100644 --- a/src/plugins/qmlprofiler/canvas/qdeclarativecontext2d.cpp +++ b/src/plugins/qmlprofiler/canvas/qdeclarativecontext2d.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/canvas/qdeclarativecontext2d_p.h b/src/plugins/qmlprofiler/canvas/qdeclarativecontext2d_p.h index cd84e1fa2b3..c4add692cb3 100644 --- a/src/plugins/qmlprofiler/canvas/qdeclarativecontext2d_p.h +++ b/src/plugins/qmlprofiler/canvas/qdeclarativecontext2d_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/canvas/qmlprofilercanvas.cpp b/src/plugins/qmlprofiler/canvas/qmlprofilercanvas.cpp index 35038078965..bfaa1185bca 100644 --- a/src/plugins/qmlprofiler/canvas/qmlprofilercanvas.cpp +++ b/src/plugins/qmlprofiler/canvas/qmlprofilercanvas.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/canvas/qmlprofilercanvas.h b/src/plugins/qmlprofiler/canvas/qmlprofilercanvas.h index 4a360d012cd..ac7f863220f 100644 --- a/src/plugins/qmlprofiler/canvas/qmlprofilercanvas.h +++ b/src/plugins/qmlprofiler/canvas/qmlprofilercanvas.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp b/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp index 7455e4b640c..f3363a3f3c8 100644 --- a/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp +++ b/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/localqmlprofilerrunner.h b/src/plugins/qmlprofiler/localqmlprofilerrunner.h index 540f4722412..b0ca5af670c 100644 --- a/src/plugins/qmlprofiler/localqmlprofilerrunner.h +++ b/src/plugins/qmlprofiler/localqmlprofilerrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/CategoryLabel.qml b/src/plugins/qmlprofiler/qml/CategoryLabel.qml index f8cc12d8598..948a129534c 100644 --- a/src/plugins/qmlprofiler/qml/CategoryLabel.qml +++ b/src/plugins/qmlprofiler/qml/CategoryLabel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/Detail.qml b/src/plugins/qmlprofiler/qml/Detail.qml index 361b7bc6c7c..1f6f22b8c00 100644 --- a/src/plugins/qmlprofiler/qml/Detail.qml +++ b/src/plugins/qmlprofiler/qml/Detail.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/MainView.qml b/src/plugins/qmlprofiler/qml/MainView.qml index c7e12a3de7b..f34b003fd82 100644 --- a/src/plugins/qmlprofiler/qml/MainView.qml +++ b/src/plugins/qmlprofiler/qml/MainView.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/Overview.js b/src/plugins/qmlprofiler/qml/Overview.js index 4ef2187b431..c6bb0300e74 100644 --- a/src/plugins/qmlprofiler/qml/Overview.js +++ b/src/plugins/qmlprofiler/qml/Overview.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/Overview.qml b/src/plugins/qmlprofiler/qml/Overview.qml index 2168ea79ad8..9670fbb47f6 100644 --- a/src/plugins/qmlprofiler/qml/Overview.qml +++ b/src/plugins/qmlprofiler/qml/Overview.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/RangeDetails.qml b/src/plugins/qmlprofiler/qml/RangeDetails.qml index 89802c3b2e7..b7de8746d76 100644 --- a/src/plugins/qmlprofiler/qml/RangeDetails.qml +++ b/src/plugins/qmlprofiler/qml/RangeDetails.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/RangeMover.qml b/src/plugins/qmlprofiler/qml/RangeMover.qml index 157fffcc44e..e34dbfb8469 100644 --- a/src/plugins/qmlprofiler/qml/RangeMover.qml +++ b/src/plugins/qmlprofiler/qml/RangeMover.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/SelectionRange.qml b/src/plugins/qmlprofiler/qml/SelectionRange.qml index 381aa27c745..feafbbe9974 100644 --- a/src/plugins/qmlprofiler/qml/SelectionRange.qml +++ b/src/plugins/qmlprofiler/qml/SelectionRange.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/SelectionRangeDetails.qml b/src/plugins/qmlprofiler/qml/SelectionRangeDetails.qml index 4dfaee36511..eeef84550d9 100644 --- a/src/plugins/qmlprofiler/qml/SelectionRangeDetails.qml +++ b/src/plugins/qmlprofiler/qml/SelectionRangeDetails.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/TimeDisplay.qml b/src/plugins/qmlprofiler/qml/TimeDisplay.qml index c7340cfa398..9c026651631 100644 --- a/src/plugins/qmlprofiler/qml/TimeDisplay.qml +++ b/src/plugins/qmlprofiler/qml/TimeDisplay.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qml/TimeMarks.qml b/src/plugins/qmlprofiler/qml/TimeMarks.qml index 433d35578ff..9f87e0319a8 100644 --- a/src/plugins/qmlprofiler/qml/TimeMarks.qml +++ b/src/plugins/qmlprofiler/qml/TimeMarks.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofiler_global.h b/src/plugins/qmlprofiler/qmlprofiler_global.h index 0bddac54a3f..cbefa2dd507 100644 --- a/src/plugins/qmlprofiler/qmlprofiler_global.h +++ b/src/plugins/qmlprofiler/qmlprofiler_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerattachdialog.cpp b/src/plugins/qmlprofiler/qmlprofilerattachdialog.cpp index 53eb3f68a06..9727d12d404 100644 --- a/src/plugins/qmlprofiler/qmlprofilerattachdialog.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerattachdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerattachdialog.h b/src/plugins/qmlprofiler/qmlprofilerattachdialog.h index 739ba8bd1f2..ebb07950418 100644 --- a/src/plugins/qmlprofiler/qmlprofilerattachdialog.h +++ b/src/plugins/qmlprofiler/qmlprofilerattachdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp b/src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp index 8e245e9f225..45eeaf91164 100644 --- a/src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerclientmanager.h b/src/plugins/qmlprofiler/qmlprofilerclientmanager.h index c1e2f22214b..a1c6791ce15 100644 --- a/src/plugins/qmlprofiler/qmlprofilerclientmanager.h +++ b/src/plugins/qmlprofiler/qmlprofilerclientmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerconstants.h b/src/plugins/qmlprofiler/qmlprofilerconstants.h index 4e22f43859f..80ba4e26e4d 100644 --- a/src/plugins/qmlprofiler/qmlprofilerconstants.h +++ b/src/plugins/qmlprofiler/qmlprofilerconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.cpp b/src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.cpp index 0b078f9c86b..7036ab0f8fc 100644 --- a/src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.h b/src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.h index 21e94a1bf3b..46cd348edd8 100644 --- a/src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.h +++ b/src/plugins/qmlprofiler/qmlprofilerdetailsrewriter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerengine.cpp b/src/plugins/qmlprofiler/qmlprofilerengine.cpp index 0c7085e424f..7876245763b 100644 --- a/src/plugins/qmlprofiler/qmlprofilerengine.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerengine.h b/src/plugins/qmlprofiler/qmlprofilerengine.h index cf0b476f9f9..4bba0870284 100644 --- a/src/plugins/qmlprofiler/qmlprofilerengine.h +++ b/src/plugins/qmlprofiler/qmlprofilerengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.cpp b/src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.cpp index f7f3e3053fe..a8b7ceb6337 100644 --- a/src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.cpp +++ b/src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.h b/src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.h index b10dd7e49a7..d4305f6b7c2 100644 --- a/src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.h +++ b/src/plugins/qmlprofiler/qmlprofilereventsmodelproxy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilereventview.cpp b/src/plugins/qmlprofiler/qmlprofilereventview.cpp index 6790478a52a..c74397abc0d 100644 --- a/src/plugins/qmlprofiler/qmlprofilereventview.cpp +++ b/src/plugins/qmlprofiler/qmlprofilereventview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilereventview.h b/src/plugins/qmlprofiler/qmlprofilereventview.h index 747cc613d32..3ef413cec63 100644 --- a/src/plugins/qmlprofiler/qmlprofilereventview.h +++ b/src/plugins/qmlprofiler/qmlprofilereventview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp b/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp index 82af434a312..ab0e9aef8aa 100644 --- a/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp +++ b/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilermodelmanager.h b/src/plugins/qmlprofiler/qmlprofilermodelmanager.h index f814ec432c3..2954de46903 100644 --- a/src/plugins/qmlprofiler/qmlprofilermodelmanager.h +++ b/src/plugins/qmlprofiler/qmlprofilermodelmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerpainteventsmodelproxy.cpp b/src/plugins/qmlprofiler/qmlprofilerpainteventsmodelproxy.cpp index 9cc160b1a57..630d25b38c2 100644 --- a/src/plugins/qmlprofiler/qmlprofilerpainteventsmodelproxy.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerpainteventsmodelproxy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerpainteventsmodelproxy.h b/src/plugins/qmlprofiler/qmlprofilerpainteventsmodelproxy.h index 4be60850ef8..d77921e61fa 100644 --- a/src/plugins/qmlprofiler/qmlprofilerpainteventsmodelproxy.h +++ b/src/plugins/qmlprofiler/qmlprofilerpainteventsmodelproxy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerplugin.cpp b/src/plugins/qmlprofiler/qmlprofilerplugin.cpp index 342035c19a5..0a636919cfd 100644 --- a/src/plugins/qmlprofiler/qmlprofilerplugin.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerplugin.h b/src/plugins/qmlprofiler/qmlprofilerplugin.h index aafdea86b97..d4eb078ecfd 100644 --- a/src/plugins/qmlprofiler/qmlprofilerplugin.h +++ b/src/plugins/qmlprofiler/qmlprofilerplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp b/src/plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp index a09fe9b23d9..7cf5829f46d 100644 --- a/src/plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerprocessedmodel.h b/src/plugins/qmlprofiler/qmlprofilerprocessedmodel.h index 4c293711f23..bbbb4a7889f 100644 --- a/src/plugins/qmlprofiler/qmlprofilerprocessedmodel.h +++ b/src/plugins/qmlprofiler/qmlprofilerprocessedmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.cpp b/src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.cpp index 0d4fa894a46..1ca536972cd 100644 --- a/src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Kläralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +** Copyright (C) 2014 Kläralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.h b/src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.h index 3973411d93a..348ba624523 100644 --- a/src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.h +++ b/src/plugins/qmlprofiler/qmlprofilerruncontrolfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Kläralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +** Copyright (C) 2014 Kläralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp b/src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp index 6c1cdd2c0d8..d509af267ad 100644 --- a/src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp +++ b/src/plugins/qmlprofiler/qmlprofilersimplemodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilersimplemodel.h b/src/plugins/qmlprofiler/qmlprofilersimplemodel.h index 4551cec283b..88421107f7d 100644 --- a/src/plugins/qmlprofiler/qmlprofilersimplemodel.h +++ b/src/plugins/qmlprofiler/qmlprofilersimplemodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp b/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp index 953ed9852fa..a272a7ac701 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerstatemanager.h b/src/plugins/qmlprofiler/qmlprofilerstatemanager.h index be93fd4d329..ee46c765ac9 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatemanager.h +++ b/src/plugins/qmlprofiler/qmlprofilerstatemanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerstatewidget.cpp b/src/plugins/qmlprofiler/qmlprofilerstatewidget.cpp index 193f4f7569e..bd2becee4cc 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatewidget.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerstatewidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerstatewidget.h b/src/plugins/qmlprofiler/qmlprofilerstatewidget.h index bf32aa2b470..c71092b6c57 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatewidget.h +++ b/src/plugins/qmlprofiler/qmlprofilerstatewidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.cpp b/src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.cpp index e6a280aadd2..ae9cc446840 100644 --- a/src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.h b/src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.h index 3ffcf707ff5..973376ce320 100644 --- a/src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.h +++ b/src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertool.cpp b/src/plugins/qmlprofiler/qmlprofilertool.cpp index 5fbb3307b5d..98b11a42446 100644 --- a/src/plugins/qmlprofiler/qmlprofilertool.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertool.h b/src/plugins/qmlprofiler/qmlprofilertool.h index 9cd45407d82..e18a0d8904c 100644 --- a/src/plugins/qmlprofiler/qmlprofilertool.h +++ b/src/plugins/qmlprofiler/qmlprofilertool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertracefile.cpp b/src/plugins/qmlprofiler/qmlprofilertracefile.cpp index 55e9f867780..0aca1d08fd9 100644 --- a/src/plugins/qmlprofiler/qmlprofilertracefile.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertracefile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertracefile.h b/src/plugins/qmlprofiler/qmlprofilertracefile.h index f4e1b71d10a..0b5c0c8eb38 100644 --- a/src/plugins/qmlprofiler/qmlprofilertracefile.h +++ b/src/plugins/qmlprofiler/qmlprofilertracefile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertraceview.cpp b/src/plugins/qmlprofiler/qmlprofilertraceview.cpp index 395be216965..54a6084ca00 100644 --- a/src/plugins/qmlprofiler/qmlprofilertraceview.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertraceview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertraceview.h b/src/plugins/qmlprofiler/qmlprofilertraceview.h index d027a4dabf4..3cdd38577e9 100644 --- a/src/plugins/qmlprofiler/qmlprofilertraceview.h +++ b/src/plugins/qmlprofiler/qmlprofilertraceview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertreeview.cpp b/src/plugins/qmlprofiler/qmlprofilertreeview.cpp index 8c7c4a8e92c..bacc8ceb2a3 100644 --- a/src/plugins/qmlprofiler/qmlprofilertreeview.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertreeview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilertreeview.h b/src/plugins/qmlprofiler/qmlprofilertreeview.h index 73b2b5d769e..6b80b1ee61a 100644 --- a/src/plugins/qmlprofiler/qmlprofilertreeview.h +++ b/src/plugins/qmlprofiler/qmlprofilertreeview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp b/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp index 5374b1c3c7c..aadd11fce99 100644 --- a/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qmlprofilerviewmanager.h b/src/plugins/qmlprofiler/qmlprofilerviewmanager.h index 122e5bb644f..74410b8880f 100644 --- a/src/plugins/qmlprofiler/qmlprofilerviewmanager.h +++ b/src/plugins/qmlprofiler/qmlprofilerviewmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qv8profilerdatamodel.cpp b/src/plugins/qmlprofiler/qv8profilerdatamodel.cpp index fd45bc0e476..68e05039dbd 100644 --- a/src/plugins/qmlprofiler/qv8profilerdatamodel.cpp +++ b/src/plugins/qmlprofiler/qv8profilerdatamodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qv8profilerdatamodel.h b/src/plugins/qmlprofiler/qv8profilerdatamodel.h index 633c2107f29..d9579f35cc5 100644 --- a/src/plugins/qmlprofiler/qv8profilerdatamodel.h +++ b/src/plugins/qmlprofiler/qv8profilerdatamodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qv8profilereventview.cpp b/src/plugins/qmlprofiler/qv8profilereventview.cpp index 5b3226b5574..90616f37894 100644 --- a/src/plugins/qmlprofiler/qv8profilereventview.cpp +++ b/src/plugins/qmlprofiler/qv8profilereventview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/qv8profilereventview.h b/src/plugins/qmlprofiler/qv8profilereventview.h index 2d366750939..5efa471c6c1 100644 --- a/src/plugins/qmlprofiler/qv8profilereventview.h +++ b/src/plugins/qmlprofiler/qv8profilereventview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/timelinemodelaggregator.cpp b/src/plugins/qmlprofiler/timelinemodelaggregator.cpp index 32716ec5638..17cd1d21b62 100644 --- a/src/plugins/qmlprofiler/timelinemodelaggregator.cpp +++ b/src/plugins/qmlprofiler/timelinemodelaggregator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/timelinemodelaggregator.h b/src/plugins/qmlprofiler/timelinemodelaggregator.h index 7b1e8328408..3151ac96a04 100644 --- a/src/plugins/qmlprofiler/timelinemodelaggregator.h +++ b/src/plugins/qmlprofiler/timelinemodelaggregator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/timelinerenderer.cpp b/src/plugins/qmlprofiler/timelinerenderer.cpp index f734c1def27..2bbf3c89062 100644 --- a/src/plugins/qmlprofiler/timelinerenderer.cpp +++ b/src/plugins/qmlprofiler/timelinerenderer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprofiler/timelinerenderer.h b/src/plugins/qmlprofiler/timelinerenderer.h index b27fbed47f3..91be9083893 100644 --- a/src/plugins/qmlprofiler/timelinerenderer.h +++ b/src/plugins/qmlprofiler/timelinerenderer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec.in b/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec.in index 72784c7c7fe..8ceeb9e1e31 100644 --- a/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec.in +++ b/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"QmlProjectManager\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.cpp b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.cpp index c1419b9ec6d..6604077f496 100644 --- a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.cpp +++ b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h index 7f5cea64238..98941a944bc 100644 --- a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h +++ b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.cpp b/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.cpp index 9aec5dd2de6..35bed6ebd91 100644 --- a/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.cpp +++ b/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.h b/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.h index 6cc762a5a5e..0385fe79517 100644 --- a/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.h +++ b/src/plugins/qmlprojectmanager/fileformat/qmlprojectfileformat.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.cpp b/src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.cpp index 8ac084271e9..3cfd3d53fc4 100644 --- a/src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.cpp +++ b/src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.h b/src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.h index af73e0b17ae..7a441f5314d 100644 --- a/src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.h +++ b/src/plugins/qmlprojectmanager/fileformat/qmlprojectitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlapp.cpp b/src/plugins/qmlprojectmanager/qmlapp.cpp index 39fd652911c..442b3c2e29a 100644 --- a/src/plugins/qmlprojectmanager/qmlapp.cpp +++ b/src/plugins/qmlprojectmanager/qmlapp.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlapp.h b/src/plugins/qmlprojectmanager/qmlapp.h index 9dd566689b1..e19a6d41830 100644 --- a/src/plugins/qmlprojectmanager/qmlapp.h +++ b/src/plugins/qmlprojectmanager/qmlapp.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp b/src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp index 3b99c6ef574..ad00fbc6126 100644 --- a/src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp +++ b/src/plugins/qmlprojectmanager/qmlapplicationwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlapplicationwizard.h b/src/plugins/qmlprojectmanager/qmlapplicationwizard.h index b5d09525883..f2c8d440671 100644 --- a/src/plugins/qmlprojectmanager/qmlapplicationwizard.h +++ b/src/plugins/qmlprojectmanager/qmlapplicationwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp b/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp index 107c761e6f7..c0d4fd495e3 100644 --- a/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp +++ b/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.h b/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.h index a39ace52ae0..57f074a1255 100644 --- a/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.h +++ b/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlproject.cpp b/src/plugins/qmlprojectmanager/qmlproject.cpp index 10d495c467e..b025fd55f0a 100644 --- a/src/plugins/qmlprojectmanager/qmlproject.cpp +++ b/src/plugins/qmlprojectmanager/qmlproject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlproject.h b/src/plugins/qmlprojectmanager/qmlproject.h index 8e931a9a025..cc9563bc9f8 100644 --- a/src/plugins/qmlprojectmanager/qmlproject.h +++ b/src/plugins/qmlprojectmanager/qmlproject.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectconstants.h b/src/plugins/qmlprojectmanager/qmlprojectconstants.h index 0ec4d20bc6e..50cd18b98ac 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectconstants.h +++ b/src/plugins/qmlprojectmanager/qmlprojectconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectenvironmentaspect.cpp b/src/plugins/qmlprojectmanager/qmlprojectenvironmentaspect.cpp index cef5dfeee43..968fff89be1 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectenvironmentaspect.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectenvironmentaspect.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectenvironmentaspect.h b/src/plugins/qmlprojectmanager/qmlprojectenvironmentaspect.h index 6b6e464f67d..16ee9bddf69 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectenvironmentaspect.h +++ b/src/plugins/qmlprojectmanager/qmlprojectenvironmentaspect.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectfile.cpp b/src/plugins/qmlprojectmanager/qmlprojectfile.cpp index 80347c03167..f8d0868beda 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectfile.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectfile.h b/src/plugins/qmlprojectmanager/qmlprojectfile.h index 842d9f52971..24fdd0797c4 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectfile.h +++ b/src/plugins/qmlprojectmanager/qmlprojectfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectmanager.cpp b/src/plugins/qmlprojectmanager/qmlprojectmanager.cpp index 210e6436938..10405305b1f 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectmanager.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectmanager.h b/src/plugins/qmlprojectmanager/qmlprojectmanager.h index 3a169aeff30..9e09e3fdc93 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectmanager.h +++ b/src/plugins/qmlprojectmanager/qmlprojectmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectmanager_global.h b/src/plugins/qmlprojectmanager/qmlprojectmanager_global.h index 524bd7f0927..0a692d80cc1 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectmanager_global.h +++ b/src/plugins/qmlprojectmanager/qmlprojectmanager_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectmanagerconstants.h b/src/plugins/qmlprojectmanager/qmlprojectmanagerconstants.h index 8765f05adb3..6f8b0e54ef7 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectmanagerconstants.h +++ b/src/plugins/qmlprojectmanager/qmlprojectmanagerconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectnodes.cpp b/src/plugins/qmlprojectmanager/qmlprojectnodes.cpp index bbf8165091a..493545ebb6f 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectnodes.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectnodes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectnodes.h b/src/plugins/qmlprojectmanager/qmlprojectnodes.h index d75d4ece21d..d35e8fed8fb 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectnodes.h +++ b/src/plugins/qmlprojectmanager/qmlprojectnodes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectplugin.cpp b/src/plugins/qmlprojectmanager/qmlprojectplugin.cpp index b4495cb8aea..6f24bd089e7 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectplugin.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectplugin.h b/src/plugins/qmlprojectmanager/qmlprojectplugin.h index 9ea0e83506b..ac173c105cb 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectplugin.h +++ b/src/plugins/qmlprojectmanager/qmlprojectplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp index f703e6d13f0..6f5b3b3e92b 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h index cef09742c9b..c83a1af18a2 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationfactory.cpp b/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationfactory.cpp index 0bbcfbbd15d..808b363ea0f 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationfactory.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationfactory.h b/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationfactory.h index a0d61f2ab44..f04cdff5605 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationfactory.h +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationwidget.cpp b/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationwidget.cpp index da2e7262bc0..8597de9d428 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationwidget.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationwidget.h b/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationwidget.h index 1e1f038682c..b134e86f9a7 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationwidget.h +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfigurationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/Qnx.pluginspec.in b/src/plugins/qnx/Qnx.pluginspec.in index 7ca1c618ab3..30c5ed29aa5 100644 --- a/src/plugins/qnx/Qnx.pluginspec.in +++ b/src/plugins/qnx/Qnx.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Qnx\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>BlackBerry</vendor> - <copyright>(C) 2013 BlackBerry</copyright> + <copyright>(C) 2014 BlackBerry</copyright> <license> Commercial Usage diff --git a/src/plugins/qnx/bardescriptordocument.cpp b/src/plugins/qnx/bardescriptordocument.cpp index 23bda2a6ddf..bee30de62d3 100644 --- a/src/plugins/qnx/bardescriptordocument.cpp +++ b/src/plugins/qnx/bardescriptordocument.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptordocument.h b/src/plugins/qnx/bardescriptordocument.h index e29fdf562f8..89b0ef64ea3 100644 --- a/src/plugins/qnx/bardescriptordocument.h +++ b/src/plugins/qnx/bardescriptordocument.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptordocumentnodehandlers.cpp b/src/plugins/qnx/bardescriptordocumentnodehandlers.cpp index 071d3fc68c2..1f3262830ad 100644 --- a/src/plugins/qnx/bardescriptordocumentnodehandlers.cpp +++ b/src/plugins/qnx/bardescriptordocumentnodehandlers.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptordocumentnodehandlers.h b/src/plugins/qnx/bardescriptordocumentnodehandlers.h index 5e7c6908c13..d76917ab60a 100644 --- a/src/plugins/qnx/bardescriptordocumentnodehandlers.h +++ b/src/plugins/qnx/bardescriptordocumentnodehandlers.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditor.cpp b/src/plugins/qnx/bardescriptoreditor.cpp index 159e074a7f9..fea8c591ab5 100644 --- a/src/plugins/qnx/bardescriptoreditor.cpp +++ b/src/plugins/qnx/bardescriptoreditor.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditor.h b/src/plugins/qnx/bardescriptoreditor.h index da07c430309..3ecb63b3f0d 100644 --- a/src/plugins/qnx/bardescriptoreditor.h +++ b/src/plugins/qnx/bardescriptoreditor.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorabstractpanelwidget.cpp b/src/plugins/qnx/bardescriptoreditorabstractpanelwidget.cpp index 66d1542ca89..55919d1db10 100644 --- a/src/plugins/qnx/bardescriptoreditorabstractpanelwidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorabstractpanelwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorabstractpanelwidget.h b/src/plugins/qnx/bardescriptoreditorabstractpanelwidget.h index 45e09b640cc..c6f4d0e7ae5 100644 --- a/src/plugins/qnx/bardescriptoreditorabstractpanelwidget.h +++ b/src/plugins/qnx/bardescriptoreditorabstractpanelwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorassetswidget.cpp b/src/plugins/qnx/bardescriptoreditorassetswidget.cpp index c3ec7990d30..ad79c431f0d 100644 --- a/src/plugins/qnx/bardescriptoreditorassetswidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorassetswidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorassetswidget.h b/src/plugins/qnx/bardescriptoreditorassetswidget.h index 55b85a2b943..eb08f4a143f 100644 --- a/src/plugins/qnx/bardescriptoreditorassetswidget.h +++ b/src/plugins/qnx/bardescriptoreditorassetswidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorauthorinformationwidget.cpp b/src/plugins/qnx/bardescriptoreditorauthorinformationwidget.cpp index 2f032392ff1..127b289e8d9 100644 --- a/src/plugins/qnx/bardescriptoreditorauthorinformationwidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorauthorinformationwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorauthorinformationwidget.h b/src/plugins/qnx/bardescriptoreditorauthorinformationwidget.h index ddae5cffb04..2220403948f 100644 --- a/src/plugins/qnx/bardescriptoreditorauthorinformationwidget.h +++ b/src/plugins/qnx/bardescriptoreditorauthorinformationwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorentrypointwidget.cpp b/src/plugins/qnx/bardescriptoreditorentrypointwidget.cpp index 2b72c6fcd4a..59a2cbbe1d1 100644 --- a/src/plugins/qnx/bardescriptoreditorentrypointwidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorentrypointwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorentrypointwidget.h b/src/plugins/qnx/bardescriptoreditorentrypointwidget.h index 5680e0ce118..22bf825ed1d 100644 --- a/src/plugins/qnx/bardescriptoreditorentrypointwidget.h +++ b/src/plugins/qnx/bardescriptoreditorentrypointwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorenvironmentwidget.cpp b/src/plugins/qnx/bardescriptoreditorenvironmentwidget.cpp index 3e67973f2d3..0f4015e3e17 100644 --- a/src/plugins/qnx/bardescriptoreditorenvironmentwidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorenvironmentwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorenvironmentwidget.h b/src/plugins/qnx/bardescriptoreditorenvironmentwidget.h index ed6b944489d..88c74a67f72 100644 --- a/src/plugins/qnx/bardescriptoreditorenvironmentwidget.h +++ b/src/plugins/qnx/bardescriptoreditorenvironmentwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorfactory.cpp b/src/plugins/qnx/bardescriptoreditorfactory.cpp index 5d9a6cdbef4..1a8457b136c 100644 --- a/src/plugins/qnx/bardescriptoreditorfactory.cpp +++ b/src/plugins/qnx/bardescriptoreditorfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorfactory.h b/src/plugins/qnx/bardescriptoreditorfactory.h index ed5a012d6a3..97d8c80550a 100644 --- a/src/plugins/qnx/bardescriptoreditorfactory.h +++ b/src/plugins/qnx/bardescriptoreditorfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorgeneralwidget.cpp b/src/plugins/qnx/bardescriptoreditorgeneralwidget.cpp index 30543c66852..d8e26120e74 100644 --- a/src/plugins/qnx/bardescriptoreditorgeneralwidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorgeneralwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorgeneralwidget.h b/src/plugins/qnx/bardescriptoreditorgeneralwidget.h index 53541ee76b1..b5926f19935 100644 --- a/src/plugins/qnx/bardescriptoreditorgeneralwidget.h +++ b/src/plugins/qnx/bardescriptoreditorgeneralwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorpackageinformationwidget.cpp b/src/plugins/qnx/bardescriptoreditorpackageinformationwidget.cpp index 86f4897babb..bc6b848b8dd 100644 --- a/src/plugins/qnx/bardescriptoreditorpackageinformationwidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorpackageinformationwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorpackageinformationwidget.h b/src/plugins/qnx/bardescriptoreditorpackageinformationwidget.h index b2b6859a9fc..b5e192594df 100644 --- a/src/plugins/qnx/bardescriptoreditorpackageinformationwidget.h +++ b/src/plugins/qnx/bardescriptoreditorpackageinformationwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorpermissionswidget.cpp b/src/plugins/qnx/bardescriptoreditorpermissionswidget.cpp index 1cb78c28055..f49c4291acd 100644 --- a/src/plugins/qnx/bardescriptoreditorpermissionswidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorpermissionswidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorpermissionswidget.h b/src/plugins/qnx/bardescriptoreditorpermissionswidget.h index 675c4a728d8..f2519904a76 100644 --- a/src/plugins/qnx/bardescriptoreditorpermissionswidget.h +++ b/src/plugins/qnx/bardescriptoreditorpermissionswidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorwidget.cpp b/src/plugins/qnx/bardescriptoreditorwidget.cpp index 5d069112a85..1ea571ac76b 100644 --- a/src/plugins/qnx/bardescriptoreditorwidget.cpp +++ b/src/plugins/qnx/bardescriptoreditorwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptoreditorwidget.h b/src/plugins/qnx/bardescriptoreditorwidget.h index 8e5edc69e60..00677c7332f 100644 --- a/src/plugins/qnx/bardescriptoreditorwidget.h +++ b/src/plugins/qnx/bardescriptoreditorwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptormagicmatcher.cpp b/src/plugins/qnx/bardescriptormagicmatcher.cpp index 92d68420293..d7454d849f5 100644 --- a/src/plugins/qnx/bardescriptormagicmatcher.cpp +++ b/src/plugins/qnx/bardescriptormagicmatcher.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptormagicmatcher.h b/src/plugins/qnx/bardescriptormagicmatcher.h index 9ed26e83501..0ae741c0ac9 100644 --- a/src/plugins/qnx/bardescriptormagicmatcher.h +++ b/src/plugins/qnx/bardescriptormagicmatcher.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptorpermissionsmodel.cpp b/src/plugins/qnx/bardescriptorpermissionsmodel.cpp index a3d8ea184ce..12f9df380b1 100644 --- a/src/plugins/qnx/bardescriptorpermissionsmodel.cpp +++ b/src/plugins/qnx/bardescriptorpermissionsmodel.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/bardescriptorpermissionsmodel.h b/src/plugins/qnx/bardescriptorpermissionsmodel.h index afb6752e9a3..e0b61b92003 100644 --- a/src/plugins/qnx/bardescriptorpermissionsmodel.h +++ b/src/plugins/qnx/bardescriptorpermissionsmodel.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryabstractdeploystep.cpp b/src/plugins/qnx/blackberryabstractdeploystep.cpp index faaf0356e31..c13809eaf66 100644 --- a/src/plugins/qnx/blackberryabstractdeploystep.cpp +++ b/src/plugins/qnx/blackberryabstractdeploystep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryabstractdeploystep.h b/src/plugins/qnx/blackberryabstractdeploystep.h index dca394ef1c5..67a8c38afa6 100644 --- a/src/plugins/qnx/blackberryabstractdeploystep.h +++ b/src/plugins/qnx/blackberryabstractdeploystep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryapplicationrunner.cpp b/src/plugins/qnx/blackberryapplicationrunner.cpp index 5d82477009c..ef43a6a74ef 100644 --- a/src/plugins/qnx/blackberryapplicationrunner.cpp +++ b/src/plugins/qnx/blackberryapplicationrunner.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryapplicationrunner.h b/src/plugins/qnx/blackberryapplicationrunner.h index 3ba06a4785c..7654263a858 100644 --- a/src/plugins/qnx/blackberryapplicationrunner.h +++ b/src/plugins/qnx/blackberryapplicationrunner.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycertificate.cpp b/src/plugins/qnx/blackberrycertificate.cpp index 088a51f408f..036e0d5894d 100644 --- a/src/plugins/qnx/blackberrycertificate.cpp +++ b/src/plugins/qnx/blackberrycertificate.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycertificate.h b/src/plugins/qnx/blackberrycertificate.h index 02f380c93d0..c5d8b24cfa8 100644 --- a/src/plugins/qnx/blackberrycertificate.h +++ b/src/plugins/qnx/blackberrycertificate.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycheckdevmodestep.cpp b/src/plugins/qnx/blackberrycheckdevmodestep.cpp index 93e45087f90..5e5a956983a 100644 --- a/src/plugins/qnx/blackberrycheckdevmodestep.cpp +++ b/src/plugins/qnx/blackberrycheckdevmodestep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycheckdevmodestep.h b/src/plugins/qnx/blackberrycheckdevmodestep.h index 5f5e1bc9d91..44b330f16cb 100644 --- a/src/plugins/qnx/blackberrycheckdevmodestep.h +++ b/src/plugins/qnx/blackberrycheckdevmodestep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.cpp b/src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.cpp index a6bb9fbfad2..45ef8c53619 100644 --- a/src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.cpp +++ b/src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.h b/src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.h index cf147806664..02c555492db 100644 --- a/src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.h +++ b/src/plugins/qnx/blackberrycheckdevmodestepconfigwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycheckdevmodestepfactory.cpp b/src/plugins/qnx/blackberrycheckdevmodestepfactory.cpp index 58d69de1605..df1a3783039 100644 --- a/src/plugins/qnx/blackberrycheckdevmodestepfactory.cpp +++ b/src/plugins/qnx/blackberrycheckdevmodestepfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycheckdevmodestepfactory.h b/src/plugins/qnx/blackberrycheckdevmodestepfactory.h index f028fd9a7ca..c06bdc0f0d5 100644 --- a/src/plugins/qnx/blackberrycheckdevmodestepfactory.h +++ b/src/plugins/qnx/blackberrycheckdevmodestepfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryconfiguration.cpp b/src/plugins/qnx/blackberryconfiguration.cpp index 9125b07a62b..7c51ed196de 100644 --- a/src/plugins/qnx/blackberryconfiguration.cpp +++ b/src/plugins/qnx/blackberryconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryconfiguration.h b/src/plugins/qnx/blackberryconfiguration.h index 1b31d186b31..573336d8483 100644 --- a/src/plugins/qnx/blackberryconfiguration.h +++ b/src/plugins/qnx/blackberryconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryconfigurationmanager.cpp b/src/plugins/qnx/blackberryconfigurationmanager.cpp index 7af64cc3d0b..8d1368c6324 100644 --- a/src/plugins/qnx/blackberryconfigurationmanager.cpp +++ b/src/plugins/qnx/blackberryconfigurationmanager.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryconfigurationmanager.h b/src/plugins/qnx/blackberryconfigurationmanager.h index 97602e0633c..45290efe02f 100644 --- a/src/plugins/qnx/blackberryconfigurationmanager.h +++ b/src/plugins/qnx/blackberryconfigurationmanager.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycreatecertificatedialog.cpp b/src/plugins/qnx/blackberrycreatecertificatedialog.cpp index 1d61daed124..d37d4011633 100644 --- a/src/plugins/qnx/blackberrycreatecertificatedialog.cpp +++ b/src/plugins/qnx/blackberrycreatecertificatedialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycreatecertificatedialog.h b/src/plugins/qnx/blackberrycreatecertificatedialog.h index f347689d37d..b9a1956f23c 100644 --- a/src/plugins/qnx/blackberrycreatecertificatedialog.h +++ b/src/plugins/qnx/blackberrycreatecertificatedialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycreatepackagestep.cpp b/src/plugins/qnx/blackberrycreatepackagestep.cpp index 5932896d4c2..16794354427 100644 --- a/src/plugins/qnx/blackberrycreatepackagestep.cpp +++ b/src/plugins/qnx/blackberrycreatepackagestep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycreatepackagestep.h b/src/plugins/qnx/blackberrycreatepackagestep.h index a0e06d1398b..c9b8521dc67 100644 --- a/src/plugins/qnx/blackberrycreatepackagestep.h +++ b/src/plugins/qnx/blackberrycreatepackagestep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycreatepackagestepconfigwidget.cpp b/src/plugins/qnx/blackberrycreatepackagestepconfigwidget.cpp index bf5a3aa7696..1970dc2ec55 100644 --- a/src/plugins/qnx/blackberrycreatepackagestepconfigwidget.cpp +++ b/src/plugins/qnx/blackberrycreatepackagestepconfigwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycreatepackagestepconfigwidget.h b/src/plugins/qnx/blackberrycreatepackagestepconfigwidget.h index 838365548e2..ff183e51a40 100644 --- a/src/plugins/qnx/blackberrycreatepackagestepconfigwidget.h +++ b/src/plugins/qnx/blackberrycreatepackagestepconfigwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycreatepackagestepfactory.cpp b/src/plugins/qnx/blackberrycreatepackagestepfactory.cpp index 86cd908e459..2f4f1d5d137 100644 --- a/src/plugins/qnx/blackberrycreatepackagestepfactory.cpp +++ b/src/plugins/qnx/blackberrycreatepackagestepfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrycreatepackagestepfactory.h b/src/plugins/qnx/blackberrycreatepackagestepfactory.h index d87618615ab..ae133c9a7d9 100644 --- a/src/plugins/qnx/blackberrycreatepackagestepfactory.h +++ b/src/plugins/qnx/blackberrycreatepackagestepfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugsupport.cpp b/src/plugins/qnx/blackberrydebugsupport.cpp index a02ef6d955d..422d3037eeb 100644 --- a/src/plugins/qnx/blackberrydebugsupport.cpp +++ b/src/plugins/qnx/blackberrydebugsupport.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugsupport.h b/src/plugins/qnx/blackberrydebugsupport.h index b51480d6b5d..ea6f006aad9 100644 --- a/src/plugins/qnx/blackberrydebugsupport.h +++ b/src/plugins/qnx/blackberrydebugsupport.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugtokenreader.cpp b/src/plugins/qnx/blackberrydebugtokenreader.cpp index f0752c3a325..57ef69a8f53 100644 --- a/src/plugins/qnx/blackberrydebugtokenreader.cpp +++ b/src/plugins/qnx/blackberrydebugtokenreader.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugtokenreader.h b/src/plugins/qnx/blackberrydebugtokenreader.h index 8e1afc9f2d1..a8c7e69fd88 100644 --- a/src/plugins/qnx/blackberrydebugtokenreader.h +++ b/src/plugins/qnx/blackberrydebugtokenreader.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp b/src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp index 37d8a199e26..5909927517f 100644 --- a/src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp +++ b/src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugtokenrequestdialog.h b/src/plugins/qnx/blackberrydebugtokenrequestdialog.h index 06fd0468a68..393c51aa83d 100644 --- a/src/plugins/qnx/blackberrydebugtokenrequestdialog.h +++ b/src/plugins/qnx/blackberrydebugtokenrequestdialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugtokenrequester.cpp b/src/plugins/qnx/blackberrydebugtokenrequester.cpp index 23906d2809a..bb0ad8f07ae 100644 --- a/src/plugins/qnx/blackberrydebugtokenrequester.cpp +++ b/src/plugins/qnx/blackberrydebugtokenrequester.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugtokenrequester.h b/src/plugins/qnx/blackberrydebugtokenrequester.h index ed55ccb7605..fb76265c53f 100644 --- a/src/plugins/qnx/blackberrydebugtokenrequester.h +++ b/src/plugins/qnx/blackberrydebugtokenrequester.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugtokenuploader.cpp b/src/plugins/qnx/blackberrydebugtokenuploader.cpp index d25918461d6..b1a9ce5ec49 100644 --- a/src/plugins/qnx/blackberrydebugtokenuploader.cpp +++ b/src/plugins/qnx/blackberrydebugtokenuploader.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydebugtokenuploader.h b/src/plugins/qnx/blackberrydebugtokenuploader.h index ca16b276117..dd22aa3a82e 100644 --- a/src/plugins/qnx/blackberrydebugtokenuploader.h +++ b/src/plugins/qnx/blackberrydebugtokenuploader.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeployconfiguration.cpp b/src/plugins/qnx/blackberrydeployconfiguration.cpp index f204572f1c2..a7e236475a4 100644 --- a/src/plugins/qnx/blackberrydeployconfiguration.cpp +++ b/src/plugins/qnx/blackberrydeployconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeployconfiguration.h b/src/plugins/qnx/blackberrydeployconfiguration.h index 178c862616c..377acbbb162 100644 --- a/src/plugins/qnx/blackberrydeployconfiguration.h +++ b/src/plugins/qnx/blackberrydeployconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeployconfigurationfactory.cpp b/src/plugins/qnx/blackberrydeployconfigurationfactory.cpp index 44228ec761e..b968fc1b6f3 100644 --- a/src/plugins/qnx/blackberrydeployconfigurationfactory.cpp +++ b/src/plugins/qnx/blackberrydeployconfigurationfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeployconfigurationfactory.h b/src/plugins/qnx/blackberrydeployconfigurationfactory.h index 51e0eb48c71..55bbcdccb8f 100644 --- a/src/plugins/qnx/blackberrydeployconfigurationfactory.h +++ b/src/plugins/qnx/blackberrydeployconfigurationfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeployconfigurationwidget.cpp b/src/plugins/qnx/blackberrydeployconfigurationwidget.cpp index d3c488ff099..c235d223601 100644 --- a/src/plugins/qnx/blackberrydeployconfigurationwidget.cpp +++ b/src/plugins/qnx/blackberrydeployconfigurationwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeployconfigurationwidget.h b/src/plugins/qnx/blackberrydeployconfigurationwidget.h index 3187b295b54..bbb39a0e1c5 100644 --- a/src/plugins/qnx/blackberrydeployconfigurationwidget.h +++ b/src/plugins/qnx/blackberrydeployconfigurationwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeployinformation.cpp b/src/plugins/qnx/blackberrydeployinformation.cpp index a7f2684e2b9..2722604cbc5 100644 --- a/src/plugins/qnx/blackberrydeployinformation.cpp +++ b/src/plugins/qnx/blackberrydeployinformation.cpp @@ -2,7 +2,7 @@ ** ** This file is part of Qt Creator ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeployinformation.h b/src/plugins/qnx/blackberrydeployinformation.h index 1080496ba5e..48373bd511e 100644 --- a/src/plugins/qnx/blackberrydeployinformation.h +++ b/src/plugins/qnx/blackberrydeployinformation.h @@ -2,7 +2,7 @@ ** ** This file is part of Qt Creator ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeploystep.cpp b/src/plugins/qnx/blackberrydeploystep.cpp index 1f296da9427..a86c3f79b69 100644 --- a/src/plugins/qnx/blackberrydeploystep.cpp +++ b/src/plugins/qnx/blackberrydeploystep.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeploystep.h b/src/plugins/qnx/blackberrydeploystep.h index d7f535bc3d7..54dcffb616b 100644 --- a/src/plugins/qnx/blackberrydeploystep.h +++ b/src/plugins/qnx/blackberrydeploystep.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeploystepconfigwidget.cpp b/src/plugins/qnx/blackberrydeploystepconfigwidget.cpp index 2ac43f709da..b0f13e4c095 100644 --- a/src/plugins/qnx/blackberrydeploystepconfigwidget.cpp +++ b/src/plugins/qnx/blackberrydeploystepconfigwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeploystepconfigwidget.h b/src/plugins/qnx/blackberrydeploystepconfigwidget.h index 0d28ac8ed3c..5e0d6ef4665 100644 --- a/src/plugins/qnx/blackberrydeploystepconfigwidget.h +++ b/src/plugins/qnx/blackberrydeploystepconfigwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeploystepfactory.cpp b/src/plugins/qnx/blackberrydeploystepfactory.cpp index efb09f33fe7..48acb8ea1ac 100644 --- a/src/plugins/qnx/blackberrydeploystepfactory.cpp +++ b/src/plugins/qnx/blackberrydeploystepfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeploystepfactory.h b/src/plugins/qnx/blackberrydeploystepfactory.h index 4b7383e39aa..91c1576704d 100644 --- a/src/plugins/qnx/blackberrydeploystepfactory.h +++ b/src/plugins/qnx/blackberrydeploystepfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfiguration.cpp b/src/plugins/qnx/blackberrydeviceconfiguration.cpp index d45f65a49bd..661626a5d95 100644 --- a/src/plugins/qnx/blackberrydeviceconfiguration.cpp +++ b/src/plugins/qnx/blackberrydeviceconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfiguration.h b/src/plugins/qnx/blackberrydeviceconfiguration.h index 9a4761ebbfb..d5d57dab8eb 100644 --- a/src/plugins/qnx/blackberrydeviceconfiguration.h +++ b/src/plugins/qnx/blackberrydeviceconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfigurationfactory.cpp b/src/plugins/qnx/blackberrydeviceconfigurationfactory.cpp index 5d4fbd5b1d7..f19f814bc34 100644 --- a/src/plugins/qnx/blackberrydeviceconfigurationfactory.cpp +++ b/src/plugins/qnx/blackberrydeviceconfigurationfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfigurationfactory.h b/src/plugins/qnx/blackberrydeviceconfigurationfactory.h index bbf8079398b..8d440ff3f1d 100644 --- a/src/plugins/qnx/blackberrydeviceconfigurationfactory.h +++ b/src/plugins/qnx/blackberrydeviceconfigurationfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfigurationwidget.cpp b/src/plugins/qnx/blackberrydeviceconfigurationwidget.cpp index cb762f41de0..645b7ab82aa 100644 --- a/src/plugins/qnx/blackberrydeviceconfigurationwidget.cpp +++ b/src/plugins/qnx/blackberrydeviceconfigurationwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfigurationwidget.h b/src/plugins/qnx/blackberrydeviceconfigurationwidget.h index b99f565e92b..cef355f2606 100644 --- a/src/plugins/qnx/blackberrydeviceconfigurationwidget.h +++ b/src/plugins/qnx/blackberrydeviceconfigurationwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfigurationwizard.cpp b/src/plugins/qnx/blackberrydeviceconfigurationwizard.cpp index e576d5540ae..37209090a2c 100644 --- a/src/plugins/qnx/blackberrydeviceconfigurationwizard.cpp +++ b/src/plugins/qnx/blackberrydeviceconfigurationwizard.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfigurationwizard.h b/src/plugins/qnx/blackberrydeviceconfigurationwizard.h index 77beaf44734..a2bacab227b 100644 --- a/src/plugins/qnx/blackberrydeviceconfigurationwizard.h +++ b/src/plugins/qnx/blackberrydeviceconfigurationwizard.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfigurationwizardpages.cpp b/src/plugins/qnx/blackberrydeviceconfigurationwizardpages.cpp index f486b8160ab..d338747a539 100644 --- a/src/plugins/qnx/blackberrydeviceconfigurationwizardpages.cpp +++ b/src/plugins/qnx/blackberrydeviceconfigurationwizardpages.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconfigurationwizardpages.h b/src/plugins/qnx/blackberrydeviceconfigurationwizardpages.h index 65e1b35b76a..e40853d219e 100644 --- a/src/plugins/qnx/blackberrydeviceconfigurationwizardpages.h +++ b/src/plugins/qnx/blackberrydeviceconfigurationwizardpages.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconnection.cpp b/src/plugins/qnx/blackberrydeviceconnection.cpp index 3db96567a5e..be613e0e724 100644 --- a/src/plugins/qnx/blackberrydeviceconnection.cpp +++ b/src/plugins/qnx/blackberrydeviceconnection.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconnection.h b/src/plugins/qnx/blackberrydeviceconnection.h index 388231ffe6f..72b7e9d80d5 100644 --- a/src/plugins/qnx/blackberrydeviceconnection.h +++ b/src/plugins/qnx/blackberrydeviceconnection.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconnectionmanager.cpp b/src/plugins/qnx/blackberrydeviceconnectionmanager.cpp index ad0c308295b..eb9411f1130 100644 --- a/src/plugins/qnx/blackberrydeviceconnectionmanager.cpp +++ b/src/plugins/qnx/blackberrydeviceconnectionmanager.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceconnectionmanager.h b/src/plugins/qnx/blackberrydeviceconnectionmanager.h index b9a5e10909d..a5b537793c0 100644 --- a/src/plugins/qnx/blackberrydeviceconnectionmanager.h +++ b/src/plugins/qnx/blackberrydeviceconnectionmanager.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceinformation.cpp b/src/plugins/qnx/blackberrydeviceinformation.cpp index b9e67d30596..a21142bc2d4 100644 --- a/src/plugins/qnx/blackberrydeviceinformation.cpp +++ b/src/plugins/qnx/blackberrydeviceinformation.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydeviceinformation.h b/src/plugins/qnx/blackberrydeviceinformation.h index bbcc4ba4b3a..0bfe1562914 100644 --- a/src/plugins/qnx/blackberrydeviceinformation.h +++ b/src/plugins/qnx/blackberrydeviceinformation.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrydevicelistdetector.cpp b/src/plugins/qnx/blackberrydevicelistdetector.cpp index e3892de75bd..108f0607e1b 100644 --- a/src/plugins/qnx/blackberrydevicelistdetector.cpp +++ b/src/plugins/qnx/blackberrydevicelistdetector.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** diff --git a/src/plugins/qnx/blackberrydevicelistdetector.h b/src/plugins/qnx/blackberrydevicelistdetector.h index 87206125082..d000141b1d7 100644 --- a/src/plugins/qnx/blackberrydevicelistdetector.h +++ b/src/plugins/qnx/blackberrydevicelistdetector.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** diff --git a/src/plugins/qnx/blackberryimportcertificatedialog.cpp b/src/plugins/qnx/blackberryimportcertificatedialog.cpp index a20aa97974b..f947672fafd 100644 --- a/src/plugins/qnx/blackberryimportcertificatedialog.cpp +++ b/src/plugins/qnx/blackberryimportcertificatedialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryimportcertificatedialog.h b/src/plugins/qnx/blackberryimportcertificatedialog.h index 13571450f44..1040368f0c3 100644 --- a/src/plugins/qnx/blackberryimportcertificatedialog.h +++ b/src/plugins/qnx/blackberryimportcertificatedialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryinstallwizard.cpp b/src/plugins/qnx/blackberryinstallwizard.cpp index ee0b0f30500..67b6c0bbb18 100644 --- a/src/plugins/qnx/blackberryinstallwizard.cpp +++ b/src/plugins/qnx/blackberryinstallwizard.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved +** Copyright (C) 2014 BlackBerry Limited. All rights reserved ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryinstallwizard.h b/src/plugins/qnx/blackberryinstallwizard.h index c00b7970cdb..f59dd92c008 100644 --- a/src/plugins/qnx/blackberryinstallwizard.h +++ b/src/plugins/qnx/blackberryinstallwizard.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved +** Copyright (C) 2014 BlackBerry Limited. All rights reserved ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryinstallwizardpages.cpp b/src/plugins/qnx/blackberryinstallwizardpages.cpp index b2bd3f5dc0d..31cc440c111 100644 --- a/src/plugins/qnx/blackberryinstallwizardpages.cpp +++ b/src/plugins/qnx/blackberryinstallwizardpages.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved +** Copyright (C) 2014 BlackBerry Limited. All rights reserved ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryinstallwizardpages.h b/src/plugins/qnx/blackberryinstallwizardpages.h index 4a8c084b63a..1d92e329a8f 100644 --- a/src/plugins/qnx/blackberryinstallwizardpages.h +++ b/src/plugins/qnx/blackberryinstallwizardpages.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved +** Copyright (C) 2014 BlackBerry Limited. All rights reserved ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrykeyspage.cpp b/src/plugins/qnx/blackberrykeyspage.cpp index 39493bf5a00..e9c173c3243 100644 --- a/src/plugins/qnx/blackberrykeyspage.cpp +++ b/src/plugins/qnx/blackberrykeyspage.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrykeyspage.h b/src/plugins/qnx/blackberrykeyspage.h index 27e4423305d..7c8c003a6e1 100644 --- a/src/plugins/qnx/blackberrykeyspage.h +++ b/src/plugins/qnx/blackberrykeyspage.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrykeyswidget.cpp b/src/plugins/qnx/blackberrykeyswidget.cpp index 8a3715279d3..905b95b6673 100644 --- a/src/plugins/qnx/blackberrykeyswidget.cpp +++ b/src/plugins/qnx/blackberrykeyswidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrykeyswidget.h b/src/plugins/qnx/blackberrykeyswidget.h index 11008d0b547..a61b267c21f 100644 --- a/src/plugins/qnx/blackberrykeyswidget.h +++ b/src/plugins/qnx/blackberrykeyswidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrylogprocessrunner.cpp b/src/plugins/qnx/blackberrylogprocessrunner.cpp index 07cb13a00aa..9964409cd73 100644 --- a/src/plugins/qnx/blackberrylogprocessrunner.cpp +++ b/src/plugins/qnx/blackberrylogprocessrunner.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrylogprocessrunner.h b/src/plugins/qnx/blackberrylogprocessrunner.h index 49a8948f206..5d50ab3d1d3 100644 --- a/src/plugins/qnx/blackberrylogprocessrunner.h +++ b/src/plugins/qnx/blackberrylogprocessrunner.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryndkprocess.cpp b/src/plugins/qnx/blackberryndkprocess.cpp index f197d4cb460..9f26718d889 100644 --- a/src/plugins/qnx/blackberryndkprocess.cpp +++ b/src/plugins/qnx/blackberryndkprocess.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryndkprocess.h b/src/plugins/qnx/blackberryndkprocess.h index a73a3873d16..13637de7e92 100644 --- a/src/plugins/qnx/blackberryndkprocess.h +++ b/src/plugins/qnx/blackberryndkprocess.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryndksettingspage.cpp b/src/plugins/qnx/blackberryndksettingspage.cpp index 5a98414d722..ff77f7c1cd6 100644 --- a/src/plugins/qnx/blackberryndksettingspage.cpp +++ b/src/plugins/qnx/blackberryndksettingspage.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryndksettingspage.h b/src/plugins/qnx/blackberryndksettingspage.h index 4e2de119e10..2992f80da0c 100644 --- a/src/plugins/qnx/blackberryndksettingspage.h +++ b/src/plugins/qnx/blackberryndksettingspage.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryndksettingswidget.cpp b/src/plugins/qnx/blackberryndksettingswidget.cpp index 87292867666..0e7d89ab8f3 100644 --- a/src/plugins/qnx/blackberryndksettingswidget.cpp +++ b/src/plugins/qnx/blackberryndksettingswidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryndksettingswidget.h b/src/plugins/qnx/blackberryndksettingswidget.h index 1105d2fae70..6d05dd6a192 100644 --- a/src/plugins/qnx/blackberryndksettingswidget.h +++ b/src/plugins/qnx/blackberryndksettingswidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved +** Copyright (C) 2014 BlackBerry Limited. All rights reserved ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryprocessparser.cpp b/src/plugins/qnx/blackberryprocessparser.cpp index f2218de1c6a..971450799f3 100644 --- a/src/plugins/qnx/blackberryprocessparser.cpp +++ b/src/plugins/qnx/blackberryprocessparser.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryprocessparser.h b/src/plugins/qnx/blackberryprocessparser.h index 8b38ceea9e4..4646dca0612 100644 --- a/src/plugins/qnx/blackberryprocessparser.h +++ b/src/plugins/qnx/blackberryprocessparser.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryqtversion.cpp b/src/plugins/qnx/blackberryqtversion.cpp index 208a71b148b..2db793946d6 100644 --- a/src/plugins/qnx/blackberryqtversion.cpp +++ b/src/plugins/qnx/blackberryqtversion.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryqtversion.h b/src/plugins/qnx/blackberryqtversion.h index 622cc72bf24..d6602ec2e13 100644 --- a/src/plugins/qnx/blackberryqtversion.h +++ b/src/plugins/qnx/blackberryqtversion.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryqtversionfactory.cpp b/src/plugins/qnx/blackberryqtversionfactory.cpp index 6c02c765617..aed3308ca29 100644 --- a/src/plugins/qnx/blackberryqtversionfactory.cpp +++ b/src/plugins/qnx/blackberryqtversionfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryqtversionfactory.h b/src/plugins/qnx/blackberryqtversionfactory.h index 042b46441ad..e761976735b 100644 --- a/src/plugins/qnx/blackberryqtversionfactory.h +++ b/src/plugins/qnx/blackberryqtversionfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryrunconfiguration.cpp b/src/plugins/qnx/blackberryrunconfiguration.cpp index 832f48eaef1..95b5ba3688c 100644 --- a/src/plugins/qnx/blackberryrunconfiguration.cpp +++ b/src/plugins/qnx/blackberryrunconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryrunconfiguration.h b/src/plugins/qnx/blackberryrunconfiguration.h index 16b5d96ec1e..f1d7a379691 100644 --- a/src/plugins/qnx/blackberryrunconfiguration.h +++ b/src/plugins/qnx/blackberryrunconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryrunconfigurationfactory.cpp b/src/plugins/qnx/blackberryrunconfigurationfactory.cpp index 2e14d53c2ba..4d3fab95d6c 100644 --- a/src/plugins/qnx/blackberryrunconfigurationfactory.cpp +++ b/src/plugins/qnx/blackberryrunconfigurationfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryrunconfigurationfactory.h b/src/plugins/qnx/blackberryrunconfigurationfactory.h index 5be05277d15..b9983d5dfec 100644 --- a/src/plugins/qnx/blackberryrunconfigurationfactory.h +++ b/src/plugins/qnx/blackberryrunconfigurationfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryrunconfigurationwidget.cpp b/src/plugins/qnx/blackberryrunconfigurationwidget.cpp index ac331c74770..38dc87a938c 100644 --- a/src/plugins/qnx/blackberryrunconfigurationwidget.cpp +++ b/src/plugins/qnx/blackberryrunconfigurationwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryrunconfigurationwidget.h b/src/plugins/qnx/blackberryrunconfigurationwidget.h index fd7de36c583..2b28a7b0c78 100644 --- a/src/plugins/qnx/blackberryrunconfigurationwidget.h +++ b/src/plugins/qnx/blackberryrunconfigurationwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryruncontrol.cpp b/src/plugins/qnx/blackberryruncontrol.cpp index 564329fa573..e42a223246a 100644 --- a/src/plugins/qnx/blackberryruncontrol.cpp +++ b/src/plugins/qnx/blackberryruncontrol.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryruncontrol.h b/src/plugins/qnx/blackberryruncontrol.h index e1420fc221b..766a103f6df 100644 --- a/src/plugins/qnx/blackberryruncontrol.h +++ b/src/plugins/qnx/blackberryruncontrol.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryruncontrolfactory.cpp b/src/plugins/qnx/blackberryruncontrolfactory.cpp index 0d3511076e6..7ce739d65f5 100644 --- a/src/plugins/qnx/blackberryruncontrolfactory.cpp +++ b/src/plugins/qnx/blackberryruncontrolfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberryruncontrolfactory.h b/src/plugins/qnx/blackberryruncontrolfactory.h index 5031608645c..e9e8f49ccee 100644 --- a/src/plugins/qnx/blackberryruncontrolfactory.h +++ b/src/plugins/qnx/blackberryruncontrolfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysetupwizard.cpp b/src/plugins/qnx/blackberrysetupwizard.cpp index 748b7a0b3a7..183f31d903b 100644 --- a/src/plugins/qnx/blackberrysetupwizard.cpp +++ b/src/plugins/qnx/blackberrysetupwizard.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysetupwizard.h b/src/plugins/qnx/blackberrysetupwizard.h index a1e39873f5e..aa4d50f72b2 100644 --- a/src/plugins/qnx/blackberrysetupwizard.h +++ b/src/plugins/qnx/blackberrysetupwizard.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysetupwizardpages.cpp b/src/plugins/qnx/blackberrysetupwizardpages.cpp index fd66057119c..aee8907fc5c 100644 --- a/src/plugins/qnx/blackberrysetupwizardpages.cpp +++ b/src/plugins/qnx/blackberrysetupwizardpages.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysetupwizardpages.h b/src/plugins/qnx/blackberrysetupwizardpages.h index 75a00524e1b..c1d8eb1dd8f 100644 --- a/src/plugins/qnx/blackberrysetupwizardpages.h +++ b/src/plugins/qnx/blackberrysetupwizardpages.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysigningpasswordsdialog.cpp b/src/plugins/qnx/blackberrysigningpasswordsdialog.cpp index 5fa324fcd04..fad1134f4b6 100644 --- a/src/plugins/qnx/blackberrysigningpasswordsdialog.cpp +++ b/src/plugins/qnx/blackberrysigningpasswordsdialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysigningpasswordsdialog.h b/src/plugins/qnx/blackberrysigningpasswordsdialog.h index 70918ca4162..8279b4d0217 100644 --- a/src/plugins/qnx/blackberrysigningpasswordsdialog.h +++ b/src/plugins/qnx/blackberrysigningpasswordsdialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysigningutils.cpp b/src/plugins/qnx/blackberrysigningutils.cpp index 9905d7515c1..9cfd77a0ca6 100644 --- a/src/plugins/qnx/blackberrysigningutils.cpp +++ b/src/plugins/qnx/blackberrysigningutils.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysigningutils.h b/src/plugins/qnx/blackberrysigningutils.h index c18f202245b..c141ac069ae 100644 --- a/src/plugins/qnx/blackberrysigningutils.h +++ b/src/plugins/qnx/blackberrysigningutils.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysshkeysgenerator.cpp b/src/plugins/qnx/blackberrysshkeysgenerator.cpp index 610720a613b..90819ac6831 100644 --- a/src/plugins/qnx/blackberrysshkeysgenerator.cpp +++ b/src/plugins/qnx/blackberrysshkeysgenerator.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/blackberrysshkeysgenerator.h b/src/plugins/qnx/blackberrysshkeysgenerator.h index d3682efaabd..6422f63973b 100644 --- a/src/plugins/qnx/blackberrysshkeysgenerator.h +++ b/src/plugins/qnx/blackberrysshkeysgenerator.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/cascadesimport/bardescriptorconverter.cpp b/src/plugins/qnx/cascadesimport/bardescriptorconverter.cpp index 2a721d66e2a..9da9de9dbf3 100644 --- a/src/plugins/qnx/cascadesimport/bardescriptorconverter.cpp +++ b/src/plugins/qnx/cascadesimport/bardescriptorconverter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/bardescriptorconverter.h b/src/plugins/qnx/cascadesimport/bardescriptorconverter.h index f162aef4d84..983e06512f5 100644 --- a/src/plugins/qnx/cascadesimport/bardescriptorconverter.h +++ b/src/plugins/qnx/cascadesimport/bardescriptorconverter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/cascadesimportwizard.cpp b/src/plugins/qnx/cascadesimport/cascadesimportwizard.cpp index d21fa5af862..1bdcf3c7c6f 100644 --- a/src/plugins/qnx/cascadesimport/cascadesimportwizard.cpp +++ b/src/plugins/qnx/cascadesimport/cascadesimportwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/cascadesimportwizard.h b/src/plugins/qnx/cascadesimport/cascadesimportwizard.h index 9a60db994ee..e7dd5ba41e1 100644 --- a/src/plugins/qnx/cascadesimport/cascadesimportwizard.h +++ b/src/plugins/qnx/cascadesimport/cascadesimportwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/fileconverter.cpp b/src/plugins/qnx/cascadesimport/fileconverter.cpp index 6e214deca4c..759ca4bb7ec 100644 --- a/src/plugins/qnx/cascadesimport/fileconverter.cpp +++ b/src/plugins/qnx/cascadesimport/fileconverter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/fileconverter.h b/src/plugins/qnx/cascadesimport/fileconverter.h index 0a8d0fe4c89..7b3b7e818ec 100644 --- a/src/plugins/qnx/cascadesimport/fileconverter.h +++ b/src/plugins/qnx/cascadesimport/fileconverter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/importlog.cpp b/src/plugins/qnx/cascadesimport/importlog.cpp index 222382c5328..ce7a4d682ea 100644 --- a/src/plugins/qnx/cascadesimport/importlog.cpp +++ b/src/plugins/qnx/cascadesimport/importlog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/importlog.h b/src/plugins/qnx/cascadesimport/importlog.h index 178db98fe36..a68255be12b 100644 --- a/src/plugins/qnx/cascadesimport/importlog.h +++ b/src/plugins/qnx/cascadesimport/importlog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/importlogconverter.cpp b/src/plugins/qnx/cascadesimport/importlogconverter.cpp index bbcb2029d3a..3577f7ad1c8 100644 --- a/src/plugins/qnx/cascadesimport/importlogconverter.cpp +++ b/src/plugins/qnx/cascadesimport/importlogconverter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/importlogconverter.h b/src/plugins/qnx/cascadesimport/importlogconverter.h index e2fbb626c33..44fe48b3f62 100644 --- a/src/plugins/qnx/cascadesimport/importlogconverter.h +++ b/src/plugins/qnx/cascadesimport/importlogconverter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/projectfileconverter.cpp b/src/plugins/qnx/cascadesimport/projectfileconverter.cpp index 46a5e373fc5..6c7c80fd632 100644 --- a/src/plugins/qnx/cascadesimport/projectfileconverter.cpp +++ b/src/plugins/qnx/cascadesimport/projectfileconverter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/projectfileconverter.h b/src/plugins/qnx/cascadesimport/projectfileconverter.h index 96f92a6e644..22537c544e4 100644 --- a/src/plugins/qnx/cascadesimport/projectfileconverter.h +++ b/src/plugins/qnx/cascadesimport/projectfileconverter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/srcprojectwizardpage.cpp b/src/plugins/qnx/cascadesimport/srcprojectwizardpage.cpp index b9617a1b9ef..0e7fa7445aa 100644 --- a/src/plugins/qnx/cascadesimport/srcprojectwizardpage.cpp +++ b/src/plugins/qnx/cascadesimport/srcprojectwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/cascadesimport/srcprojectwizardpage.h b/src/plugins/qnx/cascadesimport/srcprojectwizardpage.h index 7284854117e..6550ab0c3c9 100644 --- a/src/plugins/qnx/cascadesimport/srcprojectwizardpage.h +++ b/src/plugins/qnx/cascadesimport/srcprojectwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/pathchooserdelegate.cpp b/src/plugins/qnx/pathchooserdelegate.cpp index 419f28ef345..3223ecaed94 100644 --- a/src/plugins/qnx/pathchooserdelegate.cpp +++ b/src/plugins/qnx/pathchooserdelegate.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/pathchooserdelegate.h b/src/plugins/qnx/pathchooserdelegate.h index 19966461830..054f6c13525 100644 --- a/src/plugins/qnx/pathchooserdelegate.h +++ b/src/plugins/qnx/pathchooserdelegate.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxabstractqtversion.cpp b/src/plugins/qnx/qnxabstractqtversion.cpp index 06d6cc18565..3b023e656ba 100644 --- a/src/plugins/qnx/qnxabstractqtversion.cpp +++ b/src/plugins/qnx/qnxabstractqtversion.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxabstractqtversion.h b/src/plugins/qnx/qnxabstractqtversion.h index 4236d9d9a3e..0a95862dbfc 100644 --- a/src/plugins/qnx/qnxabstractqtversion.h +++ b/src/plugins/qnx/qnxabstractqtversion.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxabstractrunsupport.cpp b/src/plugins/qnx/qnxabstractrunsupport.cpp index 151dc8f0fde..0e127186974 100644 --- a/src/plugins/qnx/qnxabstractrunsupport.cpp +++ b/src/plugins/qnx/qnxabstractrunsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/qnxabstractrunsupport.h b/src/plugins/qnx/qnxabstractrunsupport.h index 73650283ded..99d381a7cce 100644 --- a/src/plugins/qnx/qnxabstractrunsupport.h +++ b/src/plugins/qnx/qnxabstractrunsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/qnxanalyzesupport.cpp b/src/plugins/qnx/qnxanalyzesupport.cpp index 027a4b3b37c..09169397675 100644 --- a/src/plugins/qnx/qnxanalyzesupport.cpp +++ b/src/plugins/qnx/qnxanalyzesupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/qnxanalyzesupport.h b/src/plugins/qnx/qnxanalyzesupport.h index 686b61848b1..4662cfaa993 100644 --- a/src/plugins/qnx/qnxanalyzesupport.h +++ b/src/plugins/qnx/qnxanalyzesupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qnx/qnxbaseqtconfigwidget.cpp b/src/plugins/qnx/qnxbaseqtconfigwidget.cpp index b72f0119f3e..ccf94b55f43 100644 --- a/src/plugins/qnx/qnxbaseqtconfigwidget.cpp +++ b/src/plugins/qnx/qnxbaseqtconfigwidget.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxbaseqtconfigwidget.h b/src/plugins/qnx/qnxbaseqtconfigwidget.h index ae174db6734..eb70735416b 100644 --- a/src/plugins/qnx/qnxbaseqtconfigwidget.h +++ b/src/plugins/qnx/qnxbaseqtconfigwidget.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxconstants.h b/src/plugins/qnx/qnxconstants.h index 726657f748b..2c530d46107 100644 --- a/src/plugins/qnx/qnxconstants.h +++ b/src/plugins/qnx/qnxconstants.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdebugsupport.cpp b/src/plugins/qnx/qnxdebugsupport.cpp index 33d9c538890..f06af617bfe 100644 --- a/src/plugins/qnx/qnxdebugsupport.cpp +++ b/src/plugins/qnx/qnxdebugsupport.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdebugsupport.h b/src/plugins/qnx/qnxdebugsupport.h index 9e5ad96427c..1cba8740953 100644 --- a/src/plugins/qnx/qnxdebugsupport.h +++ b/src/plugins/qnx/qnxdebugsupport.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeployconfiguration.cpp b/src/plugins/qnx/qnxdeployconfiguration.cpp index 40f2dd1d792..0a72c5d653a 100644 --- a/src/plugins/qnx/qnxdeployconfiguration.cpp +++ b/src/plugins/qnx/qnxdeployconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeployconfiguration.h b/src/plugins/qnx/qnxdeployconfiguration.h index 627def974d4..7697c61429d 100644 --- a/src/plugins/qnx/qnxdeployconfiguration.h +++ b/src/plugins/qnx/qnxdeployconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeployconfigurationfactory.cpp b/src/plugins/qnx/qnxdeployconfigurationfactory.cpp index 591fa49db69..265cb389bc6 100644 --- a/src/plugins/qnx/qnxdeployconfigurationfactory.cpp +++ b/src/plugins/qnx/qnxdeployconfigurationfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeployconfigurationfactory.h b/src/plugins/qnx/qnxdeployconfigurationfactory.h index b96657a5fc4..dc9fd95a426 100644 --- a/src/plugins/qnx/qnxdeployconfigurationfactory.h +++ b/src/plugins/qnx/qnxdeployconfigurationfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeploystepfactory.cpp b/src/plugins/qnx/qnxdeploystepfactory.cpp index 28e8569676d..8a3c76fb105 100644 --- a/src/plugins/qnx/qnxdeploystepfactory.cpp +++ b/src/plugins/qnx/qnxdeploystepfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeploystepfactory.h b/src/plugins/qnx/qnxdeploystepfactory.h index 106d7031a6f..51812b19a9d 100644 --- a/src/plugins/qnx/qnxdeploystepfactory.h +++ b/src/plugins/qnx/qnxdeploystepfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceconfiguration.cpp b/src/plugins/qnx/qnxdeviceconfiguration.cpp index d9b64ed9a3f..aac6ab47298 100644 --- a/src/plugins/qnx/qnxdeviceconfiguration.cpp +++ b/src/plugins/qnx/qnxdeviceconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceconfiguration.h b/src/plugins/qnx/qnxdeviceconfiguration.h index 5e9fb690705..fb628cef87f 100644 --- a/src/plugins/qnx/qnxdeviceconfiguration.h +++ b/src/plugins/qnx/qnxdeviceconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceconfigurationfactory.cpp b/src/plugins/qnx/qnxdeviceconfigurationfactory.cpp index 5bee613eac8..9bde9342d45 100644 --- a/src/plugins/qnx/qnxdeviceconfigurationfactory.cpp +++ b/src/plugins/qnx/qnxdeviceconfigurationfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceconfigurationfactory.h b/src/plugins/qnx/qnxdeviceconfigurationfactory.h index c4ddd17faf6..27086240070 100644 --- a/src/plugins/qnx/qnxdeviceconfigurationfactory.h +++ b/src/plugins/qnx/qnxdeviceconfigurationfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceconfigurationwizard.cpp b/src/plugins/qnx/qnxdeviceconfigurationwizard.cpp index 2794e78888b..e7cd6505f87 100644 --- a/src/plugins/qnx/qnxdeviceconfigurationwizard.cpp +++ b/src/plugins/qnx/qnxdeviceconfigurationwizard.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceconfigurationwizard.h b/src/plugins/qnx/qnxdeviceconfigurationwizard.h index f14ce0cca7e..b23c36ca42b 100644 --- a/src/plugins/qnx/qnxdeviceconfigurationwizard.h +++ b/src/plugins/qnx/qnxdeviceconfigurationwizard.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceconfigurationwizardpages.cpp b/src/plugins/qnx/qnxdeviceconfigurationwizardpages.cpp index 0aa545fa2df..4322f98f295 100644 --- a/src/plugins/qnx/qnxdeviceconfigurationwizardpages.cpp +++ b/src/plugins/qnx/qnxdeviceconfigurationwizardpages.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceconfigurationwizardpages.h b/src/plugins/qnx/qnxdeviceconfigurationwizardpages.h index 3446050a660..178493dbbaa 100644 --- a/src/plugins/qnx/qnxdeviceconfigurationwizardpages.h +++ b/src/plugins/qnx/qnxdeviceconfigurationwizardpages.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceprocesslist.cpp b/src/plugins/qnx/qnxdeviceprocesslist.cpp index 7e5f5bfb8fa..58368f3a199 100644 --- a/src/plugins/qnx/qnxdeviceprocesslist.cpp +++ b/src/plugins/qnx/qnxdeviceprocesslist.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceprocesslist.h b/src/plugins/qnx/qnxdeviceprocesslist.h index 7885daed3a8..6029b85c858 100644 --- a/src/plugins/qnx/qnxdeviceprocesslist.h +++ b/src/plugins/qnx/qnxdeviceprocesslist.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry Limited (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceprocesssignaloperation.cpp b/src/plugins/qnx/qnxdeviceprocesssignaloperation.cpp index 64353babdfe..4902c3c4ffe 100644 --- a/src/plugins/qnx/qnxdeviceprocesssignaloperation.cpp +++ b/src/plugins/qnx/qnxdeviceprocesssignaloperation.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdeviceprocesssignaloperation.h b/src/plugins/qnx/qnxdeviceprocesssignaloperation.h index fb983efc349..aa2f88cfb75 100644 --- a/src/plugins/qnx/qnxdeviceprocesssignaloperation.h +++ b/src/plugins/qnx/qnxdeviceprocesssignaloperation.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdevicetester.cpp b/src/plugins/qnx/qnxdevicetester.cpp index a229ae20463..3ff46e8616d 100644 --- a/src/plugins/qnx/qnxdevicetester.cpp +++ b/src/plugins/qnx/qnxdevicetester.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxdevicetester.h b/src/plugins/qnx/qnxdevicetester.h index d0a4a8a286f..b75d49cfca0 100644 --- a/src/plugins/qnx/qnxdevicetester.h +++ b/src/plugins/qnx/qnxdevicetester.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxplugin.cpp b/src/plugins/qnx/qnxplugin.cpp index 37c4216b2ee..7d22da8f623 100644 --- a/src/plugins/qnx/qnxplugin.cpp +++ b/src/plugins/qnx/qnxplugin.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxplugin.h b/src/plugins/qnx/qnxplugin.h index 989ecf08fd4..bebb92e1e03 100644 --- a/src/plugins/qnx/qnxplugin.h +++ b/src/plugins/qnx/qnxplugin.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxqtversion.cpp b/src/plugins/qnx/qnxqtversion.cpp index e134123088f..d3857eda4b7 100644 --- a/src/plugins/qnx/qnxqtversion.cpp +++ b/src/plugins/qnx/qnxqtversion.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxqtversion.h b/src/plugins/qnx/qnxqtversion.h index 16f4862ead2..6568202b567 100644 --- a/src/plugins/qnx/qnxqtversion.h +++ b/src/plugins/qnx/qnxqtversion.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxqtversionfactory.cpp b/src/plugins/qnx/qnxqtversionfactory.cpp index a074c0cacc1..82489ea7272 100644 --- a/src/plugins/qnx/qnxqtversionfactory.cpp +++ b/src/plugins/qnx/qnxqtversionfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxqtversionfactory.h b/src/plugins/qnx/qnxqtversionfactory.h index d68b9723737..8381702cb38 100644 --- a/src/plugins/qnx/qnxqtversionfactory.h +++ b/src/plugins/qnx/qnxqtversionfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxrunconfiguration.cpp b/src/plugins/qnx/qnxrunconfiguration.cpp index b3b5c070eec..f0098c3a7e6 100644 --- a/src/plugins/qnx/qnxrunconfiguration.cpp +++ b/src/plugins/qnx/qnxrunconfiguration.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxrunconfiguration.h b/src/plugins/qnx/qnxrunconfiguration.h index b5c848d025d..f69e0ac45da 100644 --- a/src/plugins/qnx/qnxrunconfiguration.h +++ b/src/plugins/qnx/qnxrunconfiguration.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxrunconfigurationfactory.cpp b/src/plugins/qnx/qnxrunconfigurationfactory.cpp index d189f443060..985306eb97d 100644 --- a/src/plugins/qnx/qnxrunconfigurationfactory.cpp +++ b/src/plugins/qnx/qnxrunconfigurationfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxrunconfigurationfactory.h b/src/plugins/qnx/qnxrunconfigurationfactory.h index 0e70fc37a51..b9570491ff5 100644 --- a/src/plugins/qnx/qnxrunconfigurationfactory.h +++ b/src/plugins/qnx/qnxrunconfigurationfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxruncontrol.cpp b/src/plugins/qnx/qnxruncontrol.cpp index 53a32ac8e84..c0cdaaead83 100644 --- a/src/plugins/qnx/qnxruncontrol.cpp +++ b/src/plugins/qnx/qnxruncontrol.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxruncontrol.h b/src/plugins/qnx/qnxruncontrol.h index c3e44777e52..1462542eb54 100644 --- a/src/plugins/qnx/qnxruncontrol.h +++ b/src/plugins/qnx/qnxruncontrol.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxruncontrolfactory.cpp b/src/plugins/qnx/qnxruncontrolfactory.cpp index 4d965bdc571..d96066eba38 100644 --- a/src/plugins/qnx/qnxruncontrolfactory.cpp +++ b/src/plugins/qnx/qnxruncontrolfactory.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxruncontrolfactory.h b/src/plugins/qnx/qnxruncontrolfactory.h index b0ffff6ccd2..80e1a199ddc 100644 --- a/src/plugins/qnx/qnxruncontrolfactory.h +++ b/src/plugins/qnx/qnxruncontrolfactory.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxtoolchain.cpp b/src/plugins/qnx/qnxtoolchain.cpp index e321c3557bf..d92d04dda2c 100644 --- a/src/plugins/qnx/qnxtoolchain.cpp +++ b/src/plugins/qnx/qnxtoolchain.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxtoolchain.h b/src/plugins/qnx/qnxtoolchain.h index 8abbda4f9f0..47e5d849527 100644 --- a/src/plugins/qnx/qnxtoolchain.h +++ b/src/plugins/qnx/qnxtoolchain.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxutils.cpp b/src/plugins/qnx/qnxutils.cpp index 600c5874063..e87dd8dd8a8 100644 --- a/src/plugins/qnx/qnxutils.cpp +++ b/src/plugins/qnx/qnxutils.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/qnxutils.h b/src/plugins/qnx/qnxutils.h index b483bfac426..c57e0afb0df 100644 --- a/src/plugins/qnx/qnxutils.h +++ b/src/plugins/qnx/qnxutils.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved +** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/slog2inforunner.cpp b/src/plugins/qnx/slog2inforunner.cpp index 1d348bb45d0..ecef784df77 100644 --- a/src/plugins/qnx/slog2inforunner.cpp +++ b/src/plugins/qnx/slog2inforunner.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qnx/slog2inforunner.h b/src/plugins/qnx/slog2inforunner.h index a634c6abd0a..5f66966b3a9 100644 --- a/src/plugins/qnx/slog2inforunner.h +++ b/src/plugins/qnx/slog2inforunner.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 BlackBerry Limited. All rights reserved. +** Copyright (C) 2014 BlackBerry Limited. All rights reserved. ** ** Contact: BlackBerry (qt@blackberry.com) ** Contact: KDAB (info@kdab.com) diff --git a/src/plugins/qtsupport/QtSupport.pluginspec.in b/src/plugins/qtsupport/QtSupport.pluginspec.in index 133f76afc14..a71d9728845 100644 --- a/src/plugins/qtsupport/QtSupport.pluginspec.in +++ b/src/plugins/qtsupport/QtSupport.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"QtSupport\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/qtsupport/baseqtversion.cpp b/src/plugins/qtsupport/baseqtversion.cpp index e6566930097..8289af639fd 100644 --- a/src/plugins/qtsupport/baseqtversion.cpp +++ b/src/plugins/qtsupport/baseqtversion.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/baseqtversion.h b/src/plugins/qtsupport/baseqtversion.h index 5b382c2d696..004d53068f9 100644 --- a/src/plugins/qtsupport/baseqtversion.h +++ b/src/plugins/qtsupport/baseqtversion.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/customexecutableconfigurationwidget.cpp b/src/plugins/qtsupport/customexecutableconfigurationwidget.cpp index e137c63ceae..9efa791ce7a 100644 --- a/src/plugins/qtsupport/customexecutableconfigurationwidget.cpp +++ b/src/plugins/qtsupport/customexecutableconfigurationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/customexecutableconfigurationwidget.h b/src/plugins/qtsupport/customexecutableconfigurationwidget.h index 1850d0a5506..b0990a1e8b4 100644 --- a/src/plugins/qtsupport/customexecutableconfigurationwidget.h +++ b/src/plugins/qtsupport/customexecutableconfigurationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/customexecutablerunconfiguration.cpp b/src/plugins/qtsupport/customexecutablerunconfiguration.cpp index 617f1f32a39..f35a4dafdb8 100644 --- a/src/plugins/qtsupport/customexecutablerunconfiguration.cpp +++ b/src/plugins/qtsupport/customexecutablerunconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/customexecutablerunconfiguration.h b/src/plugins/qtsupport/customexecutablerunconfiguration.h index 78d5acd27f1..3d3883905a9 100644 --- a/src/plugins/qtsupport/customexecutablerunconfiguration.h +++ b/src/plugins/qtsupport/customexecutablerunconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/debugginghelper.cpp b/src/plugins/qtsupport/debugginghelper.cpp index 442b59cf888..34a3211c6e1 100644 --- a/src/plugins/qtsupport/debugginghelper.cpp +++ b/src/plugins/qtsupport/debugginghelper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/debugginghelper.h b/src/plugins/qtsupport/debugginghelper.h index b7df8ce6409..27866228110 100644 --- a/src/plugins/qtsupport/debugginghelper.h +++ b/src/plugins/qtsupport/debugginghelper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/debugginghelperbuildtask.cpp b/src/plugins/qtsupport/debugginghelperbuildtask.cpp index 090806562c4..1f08154c7a3 100644 --- a/src/plugins/qtsupport/debugginghelperbuildtask.cpp +++ b/src/plugins/qtsupport/debugginghelperbuildtask.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/debugginghelperbuildtask.h b/src/plugins/qtsupport/debugginghelperbuildtask.h index dc767cf0cf9..f1c25ef531d 100644 --- a/src/plugins/qtsupport/debugginghelperbuildtask.h +++ b/src/plugins/qtsupport/debugginghelperbuildtask.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/desktopqtversion.cpp b/src/plugins/qtsupport/desktopqtversion.cpp index dbb2d6dc480..df8be06b38e 100644 --- a/src/plugins/qtsupport/desktopqtversion.cpp +++ b/src/plugins/qtsupport/desktopqtversion.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/desktopqtversion.h b/src/plugins/qtsupport/desktopqtversion.h index 7c4ccca5473..3a9e7047c52 100644 --- a/src/plugins/qtsupport/desktopqtversion.h +++ b/src/plugins/qtsupport/desktopqtversion.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/desktopqtversionfactory.cpp b/src/plugins/qtsupport/desktopqtversionfactory.cpp index b2f2006fbe0..66357f4d343 100644 --- a/src/plugins/qtsupport/desktopqtversionfactory.cpp +++ b/src/plugins/qtsupport/desktopqtversionfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/desktopqtversionfactory.h b/src/plugins/qtsupport/desktopqtversionfactory.h index f9976c7daf9..040a5f87a19 100644 --- a/src/plugins/qtsupport/desktopqtversionfactory.h +++ b/src/plugins/qtsupport/desktopqtversionfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/exampleslistmodel.cpp b/src/plugins/qtsupport/exampleslistmodel.cpp index 94555c94674..1f0f8c956d1 100644 --- a/src/plugins/qtsupport/exampleslistmodel.cpp +++ b/src/plugins/qtsupport/exampleslistmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/exampleslistmodel.h b/src/plugins/qtsupport/exampleslistmodel.h index 82fdf6b0637..1061440b16b 100644 --- a/src/plugins/qtsupport/exampleslistmodel.h +++ b/src/plugins/qtsupport/exampleslistmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/gettingstartedwelcomepage.cpp b/src/plugins/qtsupport/gettingstartedwelcomepage.cpp index 54d4ea1123d..c610935c00b 100644 --- a/src/plugins/qtsupport/gettingstartedwelcomepage.cpp +++ b/src/plugins/qtsupport/gettingstartedwelcomepage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/gettingstartedwelcomepage.h b/src/plugins/qtsupport/gettingstartedwelcomepage.h index f18f290679c..c78c843da68 100644 --- a/src/plugins/qtsupport/gettingstartedwelcomepage.h +++ b/src/plugins/qtsupport/gettingstartedwelcomepage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/profilereader.cpp b/src/plugins/qtsupport/profilereader.cpp index 6b122ca13c2..4db3ac3d137 100644 --- a/src/plugins/qtsupport/profilereader.cpp +++ b/src/plugins/qtsupport/profilereader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/profilereader.h b/src/plugins/qtsupport/profilereader.h index 531b7a3e633..8c6a13b2fa8 100644 --- a/src/plugins/qtsupport/profilereader.h +++ b/src/plugins/qtsupport/profilereader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qmldumptool.cpp b/src/plugins/qtsupport/qmldumptool.cpp index 044daada7ff..af5d9c27592 100644 --- a/src/plugins/qtsupport/qmldumptool.cpp +++ b/src/plugins/qtsupport/qmldumptool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qmldumptool.h b/src/plugins/qtsupport/qmldumptool.h index 68d75943e54..a6a4ff2f551 100644 --- a/src/plugins/qtsupport/qmldumptool.h +++ b/src/plugins/qtsupport/qmldumptool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtconfigwidget.cpp b/src/plugins/qtsupport/qtconfigwidget.cpp index 445be548dba..549a3bacd66 100644 --- a/src/plugins/qtsupport/qtconfigwidget.cpp +++ b/src/plugins/qtsupport/qtconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtconfigwidget.h b/src/plugins/qtsupport/qtconfigwidget.h index cf7d7d013d5..836fe2c059b 100644 --- a/src/plugins/qtsupport/qtconfigwidget.h +++ b/src/plugins/qtsupport/qtconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtfeatureprovider.h b/src/plugins/qtsupport/qtfeatureprovider.h index a2fb3435ea9..818292f8356 100644 --- a/src/plugins/qtsupport/qtfeatureprovider.h +++ b/src/plugins/qtsupport/qtfeatureprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtkitconfigwidget.cpp b/src/plugins/qtsupport/qtkitconfigwidget.cpp index d38d8c0bf9f..70cf3605a54 100644 --- a/src/plugins/qtsupport/qtkitconfigwidget.cpp +++ b/src/plugins/qtsupport/qtkitconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtkitconfigwidget.h b/src/plugins/qtsupport/qtkitconfigwidget.h index 2107d6d2911..16416aca065 100644 --- a/src/plugins/qtsupport/qtkitconfigwidget.h +++ b/src/plugins/qtsupport/qtkitconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtkitinformation.cpp b/src/plugins/qtsupport/qtkitinformation.cpp index b630ec79e82..8b7000cf048 100644 --- a/src/plugins/qtsupport/qtkitinformation.cpp +++ b/src/plugins/qtsupport/qtkitinformation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtkitinformation.h b/src/plugins/qtsupport/qtkitinformation.h index a8f1503b600..e5dbcc15ed5 100644 --- a/src/plugins/qtsupport/qtkitinformation.h +++ b/src/plugins/qtsupport/qtkitinformation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtoptionspage.cpp b/src/plugins/qtsupport/qtoptionspage.cpp index 8ac4570e4f9..6ab49361b4d 100644 --- a/src/plugins/qtsupport/qtoptionspage.cpp +++ b/src/plugins/qtsupport/qtoptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtoptionspage.h b/src/plugins/qtsupport/qtoptionspage.h index 5d506c3bbe9..703c0747e84 100644 --- a/src/plugins/qtsupport/qtoptionspage.h +++ b/src/plugins/qtsupport/qtoptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtoutputformatter.cpp b/src/plugins/qtsupport/qtoutputformatter.cpp index 2df3bf814ff..7d9cb9a4a4c 100644 --- a/src/plugins/qtsupport/qtoutputformatter.cpp +++ b/src/plugins/qtsupport/qtoutputformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtoutputformatter.h b/src/plugins/qtsupport/qtoutputformatter.h index e53d141f0c4..e2b88cdd5fd 100644 --- a/src/plugins/qtsupport/qtoutputformatter.h +++ b/src/plugins/qtsupport/qtoutputformatter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtparser.cpp b/src/plugins/qtsupport/qtparser.cpp index 42bab6995f8..131c9787296 100644 --- a/src/plugins/qtsupport/qtparser.cpp +++ b/src/plugins/qtsupport/qtparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtparser.h b/src/plugins/qtsupport/qtparser.h index a91b67e17b8..c58148265d9 100644 --- a/src/plugins/qtsupport/qtparser.h +++ b/src/plugins/qtsupport/qtparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtsupport_global.h b/src/plugins/qtsupport/qtsupport_global.h index 150be79198b..a30545ad5e8 100644 --- a/src/plugins/qtsupport/qtsupport_global.h +++ b/src/plugins/qtsupport/qtsupport_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtsupportconstants.h b/src/plugins/qtsupport/qtsupportconstants.h index 03fb6c41322..b4255eac095 100644 --- a/src/plugins/qtsupport/qtsupportconstants.h +++ b/src/plugins/qtsupport/qtsupportconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtsupportplugin.cpp b/src/plugins/qtsupport/qtsupportplugin.cpp index af6e7feffb8..d40449199af 100644 --- a/src/plugins/qtsupport/qtsupportplugin.cpp +++ b/src/plugins/qtsupport/qtsupportplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtsupportplugin.h b/src/plugins/qtsupport/qtsupportplugin.h index ecaaafbd679..d8459a3e687 100644 --- a/src/plugins/qtsupport/qtsupportplugin.h +++ b/src/plugins/qtsupport/qtsupportplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtversionfactory.cpp b/src/plugins/qtsupport/qtversionfactory.cpp index cac661f629e..2eeaaa84de4 100644 --- a/src/plugins/qtsupport/qtversionfactory.cpp +++ b/src/plugins/qtsupport/qtversionfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtversionfactory.h b/src/plugins/qtsupport/qtversionfactory.h index 83c326e6e86..bfd4121839e 100644 --- a/src/plugins/qtsupport/qtversionfactory.h +++ b/src/plugins/qtsupport/qtversionfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtversionmanager.cpp b/src/plugins/qtsupport/qtversionmanager.cpp index 136a78b4f00..59664161216 100644 --- a/src/plugins/qtsupport/qtversionmanager.cpp +++ b/src/plugins/qtsupport/qtversionmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/qtversionmanager.h b/src/plugins/qtsupport/qtversionmanager.h index e043f052475..7ba82c2767d 100644 --- a/src/plugins/qtsupport/qtversionmanager.h +++ b/src/plugins/qtsupport/qtversionmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/screenshotcropper.cpp b/src/plugins/qtsupport/screenshotcropper.cpp index 0bb4f26757f..a77a1bb463f 100644 --- a/src/plugins/qtsupport/screenshotcropper.cpp +++ b/src/plugins/qtsupport/screenshotcropper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/screenshotcropper.h b/src/plugins/qtsupport/screenshotcropper.h index b6e0f8a5848..fdeda70d5e0 100644 --- a/src/plugins/qtsupport/screenshotcropper.h +++ b/src/plugins/qtsupport/screenshotcropper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/simulatorqtversion.cpp b/src/plugins/qtsupport/simulatorqtversion.cpp index de774976105..c28082c6758 100644 --- a/src/plugins/qtsupport/simulatorqtversion.cpp +++ b/src/plugins/qtsupport/simulatorqtversion.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/simulatorqtversion.h b/src/plugins/qtsupport/simulatorqtversion.h index 2a3487bb4f5..32ea36bb240 100644 --- a/src/plugins/qtsupport/simulatorqtversion.h +++ b/src/plugins/qtsupport/simulatorqtversion.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/simulatorqtversionfactory.cpp b/src/plugins/qtsupport/simulatorqtversionfactory.cpp index 745d15c13d8..205f54dec96 100644 --- a/src/plugins/qtsupport/simulatorqtversionfactory.cpp +++ b/src/plugins/qtsupport/simulatorqtversionfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/simulatorqtversionfactory.h b/src/plugins/qtsupport/simulatorqtversionfactory.h index 70a0c5946f5..d926753a2c9 100644 --- a/src/plugins/qtsupport/simulatorqtversionfactory.h +++ b/src/plugins/qtsupport/simulatorqtversionfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/uicodemodelsupport.cpp b/src/plugins/qtsupport/uicodemodelsupport.cpp index 3cd2cf51a85..134d50cc840 100644 --- a/src/plugins/qtsupport/uicodemodelsupport.cpp +++ b/src/plugins/qtsupport/uicodemodelsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/uicodemodelsupport.h b/src/plugins/qtsupport/uicodemodelsupport.h index 881bcd7dc06..f71030a8f2d 100644 --- a/src/plugins/qtsupport/uicodemodelsupport.h +++ b/src/plugins/qtsupport/uicodemodelsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/winceqtversion.cpp b/src/plugins/qtsupport/winceqtversion.cpp index 362004014d1..760f8ec2e57 100644 --- a/src/plugins/qtsupport/winceqtversion.cpp +++ b/src/plugins/qtsupport/winceqtversion.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/winceqtversion.h b/src/plugins/qtsupport/winceqtversion.h index 669ad56d1aa..a77a9c194ef 100644 --- a/src/plugins/qtsupport/winceqtversion.h +++ b/src/plugins/qtsupport/winceqtversion.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/winceqtversionfactory.cpp b/src/plugins/qtsupport/winceqtversionfactory.cpp index bcc827a7f7b..d6711f74004 100644 --- a/src/plugins/qtsupport/winceqtversionfactory.cpp +++ b/src/plugins/qtsupport/winceqtversionfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/qtsupport/winceqtversionfactory.h b/src/plugins/qtsupport/winceqtversionfactory.h index 0e74c0214d5..0cde3dd670b 100644 --- a/src/plugins/qtsupport/winceqtversionfactory.h +++ b/src/plugins/qtsupport/winceqtversionfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/RemoteLinux.pluginspec.in b/src/plugins/remotelinux/RemoteLinux.pluginspec.in index d74934adab6..fcce7867030 100644 --- a/src/plugins/remotelinux/RemoteLinux.pluginspec.in +++ b/src/plugins/remotelinux/RemoteLinux.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"RemoteLinux\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/remotelinux/abstractpackagingstep.cpp b/src/plugins/remotelinux/abstractpackagingstep.cpp index 8a115c1abb5..77df9edbfb8 100644 --- a/src/plugins/remotelinux/abstractpackagingstep.cpp +++ b/src/plugins/remotelinux/abstractpackagingstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/abstractpackagingstep.h b/src/plugins/remotelinux/abstractpackagingstep.h index 8cdcfdbbd44..e4b9d058d81 100644 --- a/src/plugins/remotelinux/abstractpackagingstep.h +++ b/src/plugins/remotelinux/abstractpackagingstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/abstractremotelinuxdeployservice.cpp b/src/plugins/remotelinux/abstractremotelinuxdeployservice.cpp index 8c916a311ba..3887f6bbe54 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeployservice.cpp +++ b/src/plugins/remotelinux/abstractremotelinuxdeployservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/abstractremotelinuxdeployservice.h b/src/plugins/remotelinux/abstractremotelinuxdeployservice.h index 9fb44a79e30..94b7216fb49 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeployservice.h +++ b/src/plugins/remotelinux/abstractremotelinuxdeployservice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp index 86d40e9d02a..184d28a047d 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp +++ b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/abstractremotelinuxdeploystep.h b/src/plugins/remotelinux/abstractremotelinuxdeploystep.h index 551bf1f3e8e..9cb88a89d01 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeploystep.h +++ b/src/plugins/remotelinux/abstractremotelinuxdeploystep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp b/src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp index 9d33ce19d8f..c221b1ad68c 100644 --- a/src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp +++ b/src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/abstractremotelinuxrunsupport.h b/src/plugins/remotelinux/abstractremotelinuxrunsupport.h index b0dcab49c5e..7daa30ceb21 100644 --- a/src/plugins/remotelinux/abstractremotelinuxrunsupport.h +++ b/src/plugins/remotelinux/abstractremotelinuxrunsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/abstractuploadandinstallpackageservice.cpp b/src/plugins/remotelinux/abstractuploadandinstallpackageservice.cpp index d83d1d7f424..55e471a4af4 100644 --- a/src/plugins/remotelinux/abstractuploadandinstallpackageservice.cpp +++ b/src/plugins/remotelinux/abstractuploadandinstallpackageservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/abstractuploadandinstallpackageservice.h b/src/plugins/remotelinux/abstractuploadandinstallpackageservice.h index a9cac82cd91..70ac3242e01 100644 --- a/src/plugins/remotelinux/abstractuploadandinstallpackageservice.h +++ b/src/plugins/remotelinux/abstractuploadandinstallpackageservice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/embeddedlinuxqtversion.cpp b/src/plugins/remotelinux/embeddedlinuxqtversion.cpp index ed98f69c16c..ae4bc9788ff 100644 --- a/src/plugins/remotelinux/embeddedlinuxqtversion.cpp +++ b/src/plugins/remotelinux/embeddedlinuxqtversion.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/embeddedlinuxqtversion.h b/src/plugins/remotelinux/embeddedlinuxqtversion.h index abaabcde115..06e083028ca 100644 --- a/src/plugins/remotelinux/embeddedlinuxqtversion.h +++ b/src/plugins/remotelinux/embeddedlinuxqtversion.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/embeddedlinuxqtversionfactory.cpp b/src/plugins/remotelinux/embeddedlinuxqtversionfactory.cpp index 10128305d6a..e85115af8a2 100644 --- a/src/plugins/remotelinux/embeddedlinuxqtversionfactory.cpp +++ b/src/plugins/remotelinux/embeddedlinuxqtversionfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/embeddedlinuxqtversionfactory.h b/src/plugins/remotelinux/embeddedlinuxqtversionfactory.h index c9298446e5e..08841e42c15 100644 --- a/src/plugins/remotelinux/embeddedlinuxqtversionfactory.h +++ b/src/plugins/remotelinux/embeddedlinuxqtversionfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericdirectuploadservice.cpp b/src/plugins/remotelinux/genericdirectuploadservice.cpp index 67762599092..02981425849 100644 --- a/src/plugins/remotelinux/genericdirectuploadservice.cpp +++ b/src/plugins/remotelinux/genericdirectuploadservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericdirectuploadservice.h b/src/plugins/remotelinux/genericdirectuploadservice.h index 8c37a507e10..04a6efddd20 100644 --- a/src/plugins/remotelinux/genericdirectuploadservice.h +++ b/src/plugins/remotelinux/genericdirectuploadservice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericdirectuploadstep.cpp b/src/plugins/remotelinux/genericdirectuploadstep.cpp index eb40f4529d5..f912da88e5f 100644 --- a/src/plugins/remotelinux/genericdirectuploadstep.cpp +++ b/src/plugins/remotelinux/genericdirectuploadstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericdirectuploadstep.h b/src/plugins/remotelinux/genericdirectuploadstep.h index eb173568bcd..1bb02691371 100644 --- a/src/plugins/remotelinux/genericdirectuploadstep.h +++ b/src/plugins/remotelinux/genericdirectuploadstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationfactory.cpp b/src/plugins/remotelinux/genericlinuxdeviceconfigurationfactory.cpp index e6539970359..80aa79501d5 100644 --- a/src/plugins/remotelinux/genericlinuxdeviceconfigurationfactory.cpp +++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationfactory.h b/src/plugins/remotelinux/genericlinuxdeviceconfigurationfactory.h index 5e9590a2ab3..37b58adff96 100644 --- a/src/plugins/remotelinux/genericlinuxdeviceconfigurationfactory.h +++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.cpp b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.cpp index 34959f4a1c9..91fddca2904 100644 --- a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.cpp +++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h index db0a6777d27..f81aef377e4 100644 --- a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h +++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizard.cpp b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizard.cpp index b54825f7103..36dcaac853c 100644 --- a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizard.cpp +++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizard.h b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizard.h index daefdc1eaa0..8c8ab50815e 100644 --- a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizard.h +++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.cpp b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.cpp index e23a3ff903d..5ef777d5ff4 100644 --- a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.cpp +++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h index 87602077afd..93ab324f586 100644 --- a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h +++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericremotelinuxdeploystepfactory.cpp b/src/plugins/remotelinux/genericremotelinuxdeploystepfactory.cpp index 4f76f2500c5..585b544eae6 100644 --- a/src/plugins/remotelinux/genericremotelinuxdeploystepfactory.cpp +++ b/src/plugins/remotelinux/genericremotelinuxdeploystepfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/genericremotelinuxdeploystepfactory.h b/src/plugins/remotelinux/genericremotelinuxdeploystepfactory.h index 3996bff376a..a338de847fe 100644 --- a/src/plugins/remotelinux/genericremotelinuxdeploystepfactory.h +++ b/src/plugins/remotelinux/genericremotelinuxdeploystepfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/linuxdevice.cpp b/src/plugins/remotelinux/linuxdevice.cpp index b68f6c0c9cc..0d96047cc87 100644 --- a/src/plugins/remotelinux/linuxdevice.cpp +++ b/src/plugins/remotelinux/linuxdevice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/linuxdevice.h b/src/plugins/remotelinux/linuxdevice.h index 8f9d9b1c643..80dfac83025 100644 --- a/src/plugins/remotelinux/linuxdevice.h +++ b/src/plugins/remotelinux/linuxdevice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/linuxdeviceprocess.cpp b/src/plugins/remotelinux/linuxdeviceprocess.cpp index 029aa6e3bbe..c6ec6277082 100644 --- a/src/plugins/remotelinux/linuxdeviceprocess.cpp +++ b/src/plugins/remotelinux/linuxdeviceprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/linuxdeviceprocess.h b/src/plugins/remotelinux/linuxdeviceprocess.h index c42e1e7c972..6ae978dca28 100644 --- a/src/plugins/remotelinux/linuxdeviceprocess.h +++ b/src/plugins/remotelinux/linuxdeviceprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/linuxdevicetester.cpp b/src/plugins/remotelinux/linuxdevicetester.cpp index 4a62f1d6028..54c3213199b 100644 --- a/src/plugins/remotelinux/linuxdevicetester.cpp +++ b/src/plugins/remotelinux/linuxdevicetester.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/linuxdevicetester.h b/src/plugins/remotelinux/linuxdevicetester.h index 8c3070b0bf6..2d01074f1e1 100644 --- a/src/plugins/remotelinux/linuxdevicetester.h +++ b/src/plugins/remotelinux/linuxdevicetester.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/packageuploader.cpp b/src/plugins/remotelinux/packageuploader.cpp index 10a2abf0a88..7d6e220a165 100644 --- a/src/plugins/remotelinux/packageuploader.cpp +++ b/src/plugins/remotelinux/packageuploader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/packageuploader.h b/src/plugins/remotelinux/packageuploader.h index e31e1be93d7..4fe9b275b53 100644 --- a/src/plugins/remotelinux/packageuploader.h +++ b/src/plugins/remotelinux/packageuploader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/publickeydeploymentdialog.cpp b/src/plugins/remotelinux/publickeydeploymentdialog.cpp index 8bc3747a800..89ae2c31f86 100644 --- a/src/plugins/remotelinux/publickeydeploymentdialog.cpp +++ b/src/plugins/remotelinux/publickeydeploymentdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/publickeydeploymentdialog.h b/src/plugins/remotelinux/publickeydeploymentdialog.h index 655bd6e44fa..89194e54eba 100644 --- a/src/plugins/remotelinux/publickeydeploymentdialog.h +++ b/src/plugins/remotelinux/publickeydeploymentdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinux_constants.h b/src/plugins/remotelinux/remotelinux_constants.h index 42041f3ce58..33a64b205b5 100644 --- a/src/plugins/remotelinux/remotelinux_constants.h +++ b/src/plugins/remotelinux/remotelinux_constants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinux_export.h b/src/plugins/remotelinux/remotelinux_export.h index e57bdf0d754..d4dd123a83a 100644 --- a/src/plugins/remotelinux/remotelinux_export.h +++ b/src/plugins/remotelinux/remotelinux_export.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxanalyzesupport.cpp b/src/plugins/remotelinux/remotelinuxanalyzesupport.cpp index cac9d31497e..8cfdebaf3f6 100644 --- a/src/plugins/remotelinux/remotelinuxanalyzesupport.cpp +++ b/src/plugins/remotelinux/remotelinuxanalyzesupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxanalyzesupport.h b/src/plugins/remotelinux/remotelinuxanalyzesupport.h index de9b7ab3971..0d515dba31f 100644 --- a/src/plugins/remotelinux/remotelinuxanalyzesupport.h +++ b/src/plugins/remotelinux/remotelinuxanalyzesupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.cpp b/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.cpp index baf06aaa230..f381f9644f6 100644 --- a/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.cpp +++ b/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.h b/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.h index 0e7bcc16801..221378c9c7c 100644 --- a/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.h +++ b/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxcheckforfreediskspacestep.cpp b/src/plugins/remotelinux/remotelinuxcheckforfreediskspacestep.cpp index 564062db94a..f3e40680803 100644 --- a/src/plugins/remotelinux/remotelinuxcheckforfreediskspacestep.cpp +++ b/src/plugins/remotelinux/remotelinuxcheckforfreediskspacestep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxcheckforfreediskspacestep.h b/src/plugins/remotelinux/remotelinuxcheckforfreediskspacestep.h index ce5abe7560a..c56209f4944 100644 --- a/src/plugins/remotelinux/remotelinuxcheckforfreediskspacestep.h +++ b/src/plugins/remotelinux/remotelinuxcheckforfreediskspacestep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxcustomcommanddeploymentstep.cpp b/src/plugins/remotelinux/remotelinuxcustomcommanddeploymentstep.cpp index 50eb359a383..52f7b739d9b 100644 --- a/src/plugins/remotelinux/remotelinuxcustomcommanddeploymentstep.cpp +++ b/src/plugins/remotelinux/remotelinuxcustomcommanddeploymentstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxcustomcommanddeploymentstep.h b/src/plugins/remotelinux/remotelinuxcustomcommanddeploymentstep.h index dc5ac281730..8ee974450e0 100644 --- a/src/plugins/remotelinux/remotelinuxcustomcommanddeploymentstep.h +++ b/src/plugins/remotelinux/remotelinuxcustomcommanddeploymentstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp index c7f8c46af03..b9afe28dd93 100644 --- a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp +++ b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h index 5b540a4de81..814fd231d08 100644 --- a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h +++ b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdebugsupport.cpp b/src/plugins/remotelinux/remotelinuxdebugsupport.cpp index ab1c0d4150a..6883c141444 100644 --- a/src/plugins/remotelinux/remotelinuxdebugsupport.cpp +++ b/src/plugins/remotelinux/remotelinuxdebugsupport.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdebugsupport.h b/src/plugins/remotelinux/remotelinuxdebugsupport.h index 4be82349328..250daddbce3 100644 --- a/src/plugins/remotelinux/remotelinuxdebugsupport.h +++ b/src/plugins/remotelinux/remotelinuxdebugsupport.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp b/src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp index 6e0146d5d64..2a8ba1a3c66 100644 --- a/src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp +++ b/src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdeployconfiguration.h b/src/plugins/remotelinux/remotelinuxdeployconfiguration.h index dffea2ce6e6..feee34f0652 100644 --- a/src/plugins/remotelinux/remotelinuxdeployconfiguration.h +++ b/src/plugins/remotelinux/remotelinuxdeployconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.cpp b/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.cpp index ede7d7efd91..c4c039bd326 100644 --- a/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.cpp +++ b/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h b/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h index a1cfcf1cc03..798fb80255d 100644 --- a/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h +++ b/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdeployconfigurationwidget.cpp b/src/plugins/remotelinux/remotelinuxdeployconfigurationwidget.cpp index cfc46612221..909978ebb95 100644 --- a/src/plugins/remotelinux/remotelinuxdeployconfigurationwidget.cpp +++ b/src/plugins/remotelinux/remotelinuxdeployconfigurationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdeployconfigurationwidget.h b/src/plugins/remotelinux/remotelinuxdeployconfigurationwidget.h index eade1b8fcb8..13933b338cf 100644 --- a/src/plugins/remotelinux/remotelinuxdeployconfigurationwidget.h +++ b/src/plugins/remotelinux/remotelinuxdeployconfigurationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdeploymentdatamodel.cpp b/src/plugins/remotelinux/remotelinuxdeploymentdatamodel.cpp index 0542fb06d45..3f538e70607 100644 --- a/src/plugins/remotelinux/remotelinuxdeploymentdatamodel.cpp +++ b/src/plugins/remotelinux/remotelinuxdeploymentdatamodel.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxdeploymentdatamodel.h b/src/plugins/remotelinux/remotelinuxdeploymentdatamodel.h index 266d6f5fc34..d563cae913e 100644 --- a/src/plugins/remotelinux/remotelinuxdeploymentdatamodel.h +++ b/src/plugins/remotelinux/remotelinuxdeploymentdatamodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp b/src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp index 11679b42aa3..e9c1935d8fc 100644 --- a/src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp +++ b/src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxenvironmentaspect.h b/src/plugins/remotelinux/remotelinuxenvironmentaspect.h index ae1ac201c78..ec50479adc1 100644 --- a/src/plugins/remotelinux/remotelinuxenvironmentaspect.h +++ b/src/plugins/remotelinux/remotelinuxenvironmentaspect.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxenvironmentaspectwidget.cpp b/src/plugins/remotelinux/remotelinuxenvironmentaspectwidget.cpp index 222c06f9aca..f4e3770c7d6 100644 --- a/src/plugins/remotelinux/remotelinuxenvironmentaspectwidget.cpp +++ b/src/plugins/remotelinux/remotelinuxenvironmentaspectwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxenvironmentaspectwidget.h b/src/plugins/remotelinux/remotelinuxenvironmentaspectwidget.h index 4a1f9c6640e..dff0e868715 100644 --- a/src/plugins/remotelinux/remotelinuxenvironmentaspectwidget.h +++ b/src/plugins/remotelinux/remotelinuxenvironmentaspectwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxenvironmentreader.cpp b/src/plugins/remotelinux/remotelinuxenvironmentreader.cpp index 2ffa21bdac3..978a9cfddd8 100644 --- a/src/plugins/remotelinux/remotelinuxenvironmentreader.cpp +++ b/src/plugins/remotelinux/remotelinuxenvironmentreader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxenvironmentreader.h b/src/plugins/remotelinux/remotelinuxenvironmentreader.h index f8cb02f73fd..d0647cd5c44 100644 --- a/src/plugins/remotelinux/remotelinuxenvironmentreader.h +++ b/src/plugins/remotelinux/remotelinuxenvironmentreader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp b/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp index 4ea4ac8dba8..4a32b374b36 100644 --- a/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp +++ b/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxpackageinstaller.h b/src/plugins/remotelinux/remotelinuxpackageinstaller.h index a6b3e40d8b6..ca4e5f1ece1 100644 --- a/src/plugins/remotelinux/remotelinuxpackageinstaller.h +++ b/src/plugins/remotelinux/remotelinuxpackageinstaller.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxplugin.cpp b/src/plugins/remotelinux/remotelinuxplugin.cpp index 682eebb7b81..0a7db2a423d 100644 --- a/src/plugins/remotelinux/remotelinuxplugin.cpp +++ b/src/plugins/remotelinux/remotelinuxplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxplugin.h b/src/plugins/remotelinux/remotelinuxplugin.h index 68a8ebe1dc4..341858f7745 100644 --- a/src/plugins/remotelinux/remotelinuxplugin.h +++ b/src/plugins/remotelinux/remotelinuxplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxrunconfiguration.cpp b/src/plugins/remotelinux/remotelinuxrunconfiguration.cpp index 7f3bcf15b34..87d555d5179 100644 --- a/src/plugins/remotelinux/remotelinuxrunconfiguration.cpp +++ b/src/plugins/remotelinux/remotelinuxrunconfiguration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxrunconfiguration.h b/src/plugins/remotelinux/remotelinuxrunconfiguration.h index af2fdca6df1..35976137f24 100644 --- a/src/plugins/remotelinux/remotelinuxrunconfiguration.h +++ b/src/plugins/remotelinux/remotelinuxrunconfiguration.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxrunconfigurationfactory.cpp b/src/plugins/remotelinux/remotelinuxrunconfigurationfactory.cpp index a4b26fef313..db83d6b0b0b 100644 --- a/src/plugins/remotelinux/remotelinuxrunconfigurationfactory.cpp +++ b/src/plugins/remotelinux/remotelinuxrunconfigurationfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxrunconfigurationfactory.h b/src/plugins/remotelinux/remotelinuxrunconfigurationfactory.h index 33099be6310..a96679f2b43 100644 --- a/src/plugins/remotelinux/remotelinuxrunconfigurationfactory.h +++ b/src/plugins/remotelinux/remotelinuxrunconfigurationfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxrunconfigurationwidget.cpp b/src/plugins/remotelinux/remotelinuxrunconfigurationwidget.cpp index 964715838ec..aff3358a9cd 100644 --- a/src/plugins/remotelinux/remotelinuxrunconfigurationwidget.cpp +++ b/src/plugins/remotelinux/remotelinuxrunconfigurationwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxrunconfigurationwidget.h b/src/plugins/remotelinux/remotelinuxrunconfigurationwidget.h index c0470d627cb..2056e157a36 100644 --- a/src/plugins/remotelinux/remotelinuxrunconfigurationwidget.h +++ b/src/plugins/remotelinux/remotelinuxrunconfigurationwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxruncontrol.cpp b/src/plugins/remotelinux/remotelinuxruncontrol.cpp index dbeb1290dcf..cae83697547 100644 --- a/src/plugins/remotelinux/remotelinuxruncontrol.cpp +++ b/src/plugins/remotelinux/remotelinuxruncontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxruncontrol.h b/src/plugins/remotelinux/remotelinuxruncontrol.h index 6b806e75904..d8d10d72366 100644 --- a/src/plugins/remotelinux/remotelinuxruncontrol.h +++ b/src/plugins/remotelinux/remotelinuxruncontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp b/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp index 15c46149245..7086c4b2297 100644 --- a/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp +++ b/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxruncontrolfactory.h b/src/plugins/remotelinux/remotelinuxruncontrolfactory.h index 9a34790d129..92b49d42bc7 100644 --- a/src/plugins/remotelinux/remotelinuxruncontrolfactory.h +++ b/src/plugins/remotelinux/remotelinuxruncontrolfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxsignaloperation.cpp b/src/plugins/remotelinux/remotelinuxsignaloperation.cpp index e3f96e27131..a926aafc3cd 100644 --- a/src/plugins/remotelinux/remotelinuxsignaloperation.cpp +++ b/src/plugins/remotelinux/remotelinuxsignaloperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxsignaloperation.h b/src/plugins/remotelinux/remotelinuxsignaloperation.h index 4e2d9da94b6..365bbecbbe3 100644 --- a/src/plugins/remotelinux/remotelinuxsignaloperation.h +++ b/src/plugins/remotelinux/remotelinuxsignaloperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxutils.cpp b/src/plugins/remotelinux/remotelinuxutils.cpp index 9a7c55c9f8e..d49a52a7173 100644 --- a/src/plugins/remotelinux/remotelinuxutils.cpp +++ b/src/plugins/remotelinux/remotelinuxutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/remotelinuxutils.h b/src/plugins/remotelinux/remotelinuxutils.h index 8b73bb95987..c9fe90a6093 100644 --- a/src/plugins/remotelinux/remotelinuxutils.h +++ b/src/plugins/remotelinux/remotelinuxutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/sshkeydeployer.cpp b/src/plugins/remotelinux/sshkeydeployer.cpp index 565da167a92..e7c367b7f15 100644 --- a/src/plugins/remotelinux/sshkeydeployer.cpp +++ b/src/plugins/remotelinux/sshkeydeployer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/sshkeydeployer.h b/src/plugins/remotelinux/sshkeydeployer.h index bd98bcf4f12..d269fb7c4bc 100644 --- a/src/plugins/remotelinux/sshkeydeployer.h +++ b/src/plugins/remotelinux/sshkeydeployer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/tarpackagecreationstep.cpp b/src/plugins/remotelinux/tarpackagecreationstep.cpp index 7f1dc0da5b2..3ec3dc50b98 100644 --- a/src/plugins/remotelinux/tarpackagecreationstep.cpp +++ b/src/plugins/remotelinux/tarpackagecreationstep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/tarpackagecreationstep.h b/src/plugins/remotelinux/tarpackagecreationstep.h index 69bad1a8923..6e82d8505b4 100644 --- a/src/plugins/remotelinux/tarpackagecreationstep.h +++ b/src/plugins/remotelinux/tarpackagecreationstep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/typespecificdeviceconfigurationlistmodel.cpp b/src/plugins/remotelinux/typespecificdeviceconfigurationlistmodel.cpp index 915a3401bf2..50ecb4b63f7 100644 --- a/src/plugins/remotelinux/typespecificdeviceconfigurationlistmodel.cpp +++ b/src/plugins/remotelinux/typespecificdeviceconfigurationlistmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/typespecificdeviceconfigurationlistmodel.h b/src/plugins/remotelinux/typespecificdeviceconfigurationlistmodel.h index 8cf0dc11e45..5438e253cab 100644 --- a/src/plugins/remotelinux/typespecificdeviceconfigurationlistmodel.h +++ b/src/plugins/remotelinux/typespecificdeviceconfigurationlistmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/uploadandinstalltarpackagestep.cpp b/src/plugins/remotelinux/uploadandinstalltarpackagestep.cpp index d1c94e56b88..fa7d4bf8154 100644 --- a/src/plugins/remotelinux/uploadandinstalltarpackagestep.cpp +++ b/src/plugins/remotelinux/uploadandinstalltarpackagestep.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/remotelinux/uploadandinstalltarpackagestep.h b/src/plugins/remotelinux/uploadandinstalltarpackagestep.h index c5ba5247fd8..c30722d9010 100644 --- a/src/plugins/remotelinux/uploadandinstalltarpackagestep.h +++ b/src/plugins/remotelinux/uploadandinstalltarpackagestep.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/ResourceEditor.pluginspec.in b/src/plugins/resourceeditor/ResourceEditor.pluginspec.in index 79f6076c9e6..ca458b403e9 100644 --- a/src/plugins/resourceeditor/ResourceEditor.pluginspec.in +++ b/src/plugins/resourceeditor/ResourceEditor.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"ResourceEditor\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/resourceeditor/qrceditor/qrceditor.cpp b/src/plugins/resourceeditor/qrceditor/qrceditor.cpp index 5fba4a2da86..cd505d24b09 100644 --- a/src/plugins/resourceeditor/qrceditor/qrceditor.cpp +++ b/src/plugins/resourceeditor/qrceditor/qrceditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/qrceditor.h b/src/plugins/resourceeditor/qrceditor/qrceditor.h index 92a6dbe54c7..557f5701987 100644 --- a/src/plugins/resourceeditor/qrceditor/qrceditor.h +++ b/src/plugins/resourceeditor/qrceditor/qrceditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/resourcefile.cpp b/src/plugins/resourceeditor/qrceditor/resourcefile.cpp index 781242124a5..149cee1968b 100644 --- a/src/plugins/resourceeditor/qrceditor/resourcefile.cpp +++ b/src/plugins/resourceeditor/qrceditor/resourcefile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/resourcefile_p.h b/src/plugins/resourceeditor/qrceditor/resourcefile_p.h index 9428d59c6fb..8a3ed578129 100644 --- a/src/plugins/resourceeditor/qrceditor/resourcefile_p.h +++ b/src/plugins/resourceeditor/qrceditor/resourcefile_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/resourceview.cpp b/src/plugins/resourceeditor/qrceditor/resourceview.cpp index ae902b3b7a3..8b868f4f17e 100644 --- a/src/plugins/resourceeditor/qrceditor/resourceview.cpp +++ b/src/plugins/resourceeditor/qrceditor/resourceview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/resourceview.h b/src/plugins/resourceeditor/qrceditor/resourceview.h index 3ce798ae047..4ef0fdc5b4e 100644 --- a/src/plugins/resourceeditor/qrceditor/resourceview.h +++ b/src/plugins/resourceeditor/qrceditor/resourceview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/test/main.cpp b/src/plugins/resourceeditor/qrceditor/test/main.cpp index 0e68ad6adba..996a9bec522 100644 --- a/src/plugins/resourceeditor/qrceditor/test/main.cpp +++ b/src/plugins/resourceeditor/qrceditor/test/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/test/mainwindow.cpp b/src/plugins/resourceeditor/qrceditor/test/mainwindow.cpp index 3bec292e92b..a14ea8f93a3 100644 --- a/src/plugins/resourceeditor/qrceditor/test/mainwindow.cpp +++ b/src/plugins/resourceeditor/qrceditor/test/mainwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/test/mainwindow.h b/src/plugins/resourceeditor/qrceditor/test/mainwindow.h index 3e186f6175f..699cfd563be 100644 --- a/src/plugins/resourceeditor/qrceditor/test/mainwindow.h +++ b/src/plugins/resourceeditor/qrceditor/test/mainwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/undocommands.cpp b/src/plugins/resourceeditor/qrceditor/undocommands.cpp index 2563f7d13b2..f8dfafb262d 100644 --- a/src/plugins/resourceeditor/qrceditor/undocommands.cpp +++ b/src/plugins/resourceeditor/qrceditor/undocommands.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/qrceditor/undocommands_p.h b/src/plugins/resourceeditor/qrceditor/undocommands_p.h index 92a7552e310..6bbdf944f90 100644 --- a/src/plugins/resourceeditor/qrceditor/undocommands_p.h +++ b/src/plugins/resourceeditor/qrceditor/undocommands_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/resourceeditorconstants.h b/src/plugins/resourceeditor/resourceeditorconstants.h index f5eec5526c2..4c27ea44145 100644 --- a/src/plugins/resourceeditor/resourceeditorconstants.h +++ b/src/plugins/resourceeditor/resourceeditorconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/resourceeditorfactory.cpp b/src/plugins/resourceeditor/resourceeditorfactory.cpp index e4dae1909ed..6999022d4f3 100644 --- a/src/plugins/resourceeditor/resourceeditorfactory.cpp +++ b/src/plugins/resourceeditor/resourceeditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/resourceeditorfactory.h b/src/plugins/resourceeditor/resourceeditorfactory.h index f0878be78f0..26ae4ece1e8 100644 --- a/src/plugins/resourceeditor/resourceeditorfactory.h +++ b/src/plugins/resourceeditor/resourceeditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/resourceeditorplugin.cpp b/src/plugins/resourceeditor/resourceeditorplugin.cpp index 4fd92ebeb84..227d69b3ef2 100644 --- a/src/plugins/resourceeditor/resourceeditorplugin.cpp +++ b/src/plugins/resourceeditor/resourceeditorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/resourceeditorplugin.h b/src/plugins/resourceeditor/resourceeditorplugin.h index 990e7ac732d..4f09ba69ab8 100644 --- a/src/plugins/resourceeditor/resourceeditorplugin.h +++ b/src/plugins/resourceeditor/resourceeditorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/resourceeditorw.cpp b/src/plugins/resourceeditor/resourceeditorw.cpp index f81f7b2a824..a05ba174de5 100644 --- a/src/plugins/resourceeditor/resourceeditorw.cpp +++ b/src/plugins/resourceeditor/resourceeditorw.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/resourceeditorw.h b/src/plugins/resourceeditor/resourceeditorw.h index 5c1abbda2bd..60ab4868855 100644 --- a/src/plugins/resourceeditor/resourceeditorw.h +++ b/src/plugins/resourceeditor/resourceeditorw.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/resourcewizard.cpp b/src/plugins/resourceeditor/resourcewizard.cpp index f471dc46ac5..a05c68ab174 100644 --- a/src/plugins/resourceeditor/resourcewizard.cpp +++ b/src/plugins/resourceeditor/resourcewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/resourceeditor/resourcewizard.h b/src/plugins/resourceeditor/resourcewizard.h index af5e33f11cb..25c86fb9c5d 100644 --- a/src/plugins/resourceeditor/resourcewizard.h +++ b/src/plugins/resourceeditor/resourcewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/Subversion.pluginspec.in b/src/plugins/subversion/Subversion.pluginspec.in index 284edc81747..3e83d730cbc 100644 --- a/src/plugins/subversion/Subversion.pluginspec.in +++ b/src/plugins/subversion/Subversion.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Subversion\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/subversion/annotationhighlighter.cpp b/src/plugins/subversion/annotationhighlighter.cpp index f80b9f66acb..f4e8c0a7171 100644 --- a/src/plugins/subversion/annotationhighlighter.cpp +++ b/src/plugins/subversion/annotationhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/annotationhighlighter.h b/src/plugins/subversion/annotationhighlighter.h index 8d1e785dcaf..bdea24192c4 100644 --- a/src/plugins/subversion/annotationhighlighter.h +++ b/src/plugins/subversion/annotationhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/checkoutwizard.cpp b/src/plugins/subversion/checkoutwizard.cpp index ed69c29e375..5495e297412 100644 --- a/src/plugins/subversion/checkoutwizard.cpp +++ b/src/plugins/subversion/checkoutwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/checkoutwizard.h b/src/plugins/subversion/checkoutwizard.h index e5b6f938257..7ed3cc1fef9 100644 --- a/src/plugins/subversion/checkoutwizard.h +++ b/src/plugins/subversion/checkoutwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/checkoutwizardpage.cpp b/src/plugins/subversion/checkoutwizardpage.cpp index 8d40e683c46..35cfce9ddc9 100644 --- a/src/plugins/subversion/checkoutwizardpage.cpp +++ b/src/plugins/subversion/checkoutwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/checkoutwizardpage.h b/src/plugins/subversion/checkoutwizardpage.h index f656463d5c8..e490e625566 100644 --- a/src/plugins/subversion/checkoutwizardpage.h +++ b/src/plugins/subversion/checkoutwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/settingspage.cpp b/src/plugins/subversion/settingspage.cpp index 0ab2608afab..7ae0998938f 100644 --- a/src/plugins/subversion/settingspage.cpp +++ b/src/plugins/subversion/settingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/settingspage.h b/src/plugins/subversion/settingspage.h index 71438eea733..baa6134fa40 100644 --- a/src/plugins/subversion/settingspage.h +++ b/src/plugins/subversion/settingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversionconstants.h b/src/plugins/subversion/subversionconstants.h index ff5adfeb94a..dea1246f62e 100644 --- a/src/plugins/subversion/subversionconstants.h +++ b/src/plugins/subversion/subversionconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversioncontrol.cpp b/src/plugins/subversion/subversioncontrol.cpp index 77e5761b3c4..833e8d939d5 100644 --- a/src/plugins/subversion/subversioncontrol.cpp +++ b/src/plugins/subversion/subversioncontrol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversioncontrol.h b/src/plugins/subversion/subversioncontrol.h index aa11089b4a9..b1ad19248f8 100644 --- a/src/plugins/subversion/subversioncontrol.h +++ b/src/plugins/subversion/subversioncontrol.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversioneditor.cpp b/src/plugins/subversion/subversioneditor.cpp index a64b401486d..b7deb0f5868 100644 --- a/src/plugins/subversion/subversioneditor.cpp +++ b/src/plugins/subversion/subversioneditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversioneditor.h b/src/plugins/subversion/subversioneditor.h index f59e5138fb9..2777eded9a0 100644 --- a/src/plugins/subversion/subversioneditor.h +++ b/src/plugins/subversion/subversioneditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversionplugin.cpp b/src/plugins/subversion/subversionplugin.cpp index 84d107cb6ea..906afd31be4 100644 --- a/src/plugins/subversion/subversionplugin.cpp +++ b/src/plugins/subversion/subversionplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversionplugin.h b/src/plugins/subversion/subversionplugin.h index 82940f1ae6d..e4f321a813c 100644 --- a/src/plugins/subversion/subversionplugin.h +++ b/src/plugins/subversion/subversionplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversionsettings.cpp b/src/plugins/subversion/subversionsettings.cpp index fe17e1c6bf0..3c568e4becd 100644 --- a/src/plugins/subversion/subversionsettings.cpp +++ b/src/plugins/subversion/subversionsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversionsettings.h b/src/plugins/subversion/subversionsettings.h index a91d9c942d9..2c80ce8d5d0 100644 --- a/src/plugins/subversion/subversionsettings.h +++ b/src/plugins/subversion/subversionsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversionsubmiteditor.cpp b/src/plugins/subversion/subversionsubmiteditor.cpp index a7c6c124856..cd84bb88ede 100644 --- a/src/plugins/subversion/subversionsubmiteditor.cpp +++ b/src/plugins/subversion/subversionsubmiteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/subversion/subversionsubmiteditor.h b/src/plugins/subversion/subversionsubmiteditor.h index cc8fbe35c07..a206ad2ffa8 100644 --- a/src/plugins/subversion/subversionsubmiteditor.h +++ b/src/plugins/subversion/subversionsubmiteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/tasklist/TaskList.pluginspec.in b/src/plugins/tasklist/TaskList.pluginspec.in index 5aa48b0c6b0..3ffc8538b94 100644 --- a/src/plugins/tasklist/TaskList.pluginspec.in +++ b/src/plugins/tasklist/TaskList.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"TaskList\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/tasklist/stopmonitoringhandler.cpp b/src/plugins/tasklist/stopmonitoringhandler.cpp index 35a7ec25139..0b5cd6b8dc3 100644 --- a/src/plugins/tasklist/stopmonitoringhandler.cpp +++ b/src/plugins/tasklist/stopmonitoringhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/tasklist/stopmonitoringhandler.h b/src/plugins/tasklist/stopmonitoringhandler.h index b14e1bcf3cb..3029891bdd1 100644 --- a/src/plugins/tasklist/stopmonitoringhandler.h +++ b/src/plugins/tasklist/stopmonitoringhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/tasklist/taskfile.cpp b/src/plugins/tasklist/taskfile.cpp index 53243a814b7..fdc934503a4 100644 --- a/src/plugins/tasklist/taskfile.cpp +++ b/src/plugins/tasklist/taskfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/tasklist/taskfile.h b/src/plugins/tasklist/taskfile.h index 05781d23553..d65920ed84c 100644 --- a/src/plugins/tasklist/taskfile.h +++ b/src/plugins/tasklist/taskfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/tasklist/taskfilefactory.cpp b/src/plugins/tasklist/taskfilefactory.cpp index 08ee6425383..ad8fdb82ea3 100644 --- a/src/plugins/tasklist/taskfilefactory.cpp +++ b/src/plugins/tasklist/taskfilefactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/tasklist/taskfilefactory.h b/src/plugins/tasklist/taskfilefactory.h index 587c53ace0b..2e0248b4e60 100644 --- a/src/plugins/tasklist/taskfilefactory.h +++ b/src/plugins/tasklist/taskfilefactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/tasklist/tasklistconstants.h b/src/plugins/tasklist/tasklistconstants.h index 6dacae4fce1..19a05ad5990 100644 --- a/src/plugins/tasklist/tasklistconstants.h +++ b/src/plugins/tasklist/tasklistconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/tasklist/tasklistplugin.cpp b/src/plugins/tasklist/tasklistplugin.cpp index cc408202b45..8f8c81e7ad1 100644 --- a/src/plugins/tasklist/tasklistplugin.cpp +++ b/src/plugins/tasklist/tasklistplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/tasklist/tasklistplugin.h b/src/plugins/tasklist/tasklistplugin.h index 7439bbfcb36..c2f62141138 100644 --- a/src/plugins/tasklist/tasklistplugin.h +++ b/src/plugins/tasklist/tasklistplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/TextEditor.pluginspec.in b/src/plugins/texteditor/TextEditor.pluginspec.in index ec6cf350ab0..9598315f7b1 100644 --- a/src/plugins/texteditor/TextEditor.pluginspec.in +++ b/src/plugins/texteditor/TextEditor.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"TextEditor\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/texteditor/autocompleter.cpp b/src/plugins/texteditor/autocompleter.cpp index 3b898508684..4f51d734160 100644 --- a/src/plugins/texteditor/autocompleter.cpp +++ b/src/plugins/texteditor/autocompleter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/autocompleter.h b/src/plugins/texteditor/autocompleter.h index f18386adb22..93ce01a414d 100644 --- a/src/plugins/texteditor/autocompleter.h +++ b/src/plugins/texteditor/autocompleter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basefilefind.cpp b/src/plugins/texteditor/basefilefind.cpp index 0dc48d4d971..cb5d71fdd26 100644 --- a/src/plugins/texteditor/basefilefind.cpp +++ b/src/plugins/texteditor/basefilefind.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basefilefind.h b/src/plugins/texteditor/basefilefind.h index f1a5861f7b2..e1d72b73247 100644 --- a/src/plugins/texteditor/basefilefind.h +++ b/src/plugins/texteditor/basefilefind.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basefilefind_p.h b/src/plugins/texteditor/basefilefind_p.h index dff3b96064a..8234a924d64 100644 --- a/src/plugins/texteditor/basefilefind_p.h +++ b/src/plugins/texteditor/basefilefind_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basehoverhandler.cpp b/src/plugins/texteditor/basehoverhandler.cpp index cecb9c1457a..00b21ae7672 100644 --- a/src/plugins/texteditor/basehoverhandler.cpp +++ b/src/plugins/texteditor/basehoverhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basehoverhandler.h b/src/plugins/texteditor/basehoverhandler.h index b0c77f4f275..427a20711ec 100644 --- a/src/plugins/texteditor/basehoverhandler.h +++ b/src/plugins/texteditor/basehoverhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetextdocument.cpp b/src/plugins/texteditor/basetextdocument.cpp index 239041311c6..3d651eca3a4 100644 --- a/src/plugins/texteditor/basetextdocument.cpp +++ b/src/plugins/texteditor/basetextdocument.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetextdocument.h b/src/plugins/texteditor/basetextdocument.h index a8f8f2ca7af..ca3d896d57e 100644 --- a/src/plugins/texteditor/basetextdocument.h +++ b/src/plugins/texteditor/basetextdocument.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetextdocumentlayout.cpp b/src/plugins/texteditor/basetextdocumentlayout.cpp index f8bccb4e4c6..22291bb5849 100644 --- a/src/plugins/texteditor/basetextdocumentlayout.cpp +++ b/src/plugins/texteditor/basetextdocumentlayout.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetextdocumentlayout.h b/src/plugins/texteditor/basetextdocumentlayout.h index 6fc22276d08..2eab6e919a9 100644 --- a/src/plugins/texteditor/basetextdocumentlayout.h +++ b/src/plugins/texteditor/basetextdocumentlayout.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp index 6b9ba965e14..d361997c22b 100644 --- a/src/plugins/texteditor/basetexteditor.cpp +++ b/src/plugins/texteditor/basetexteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetexteditor.h b/src/plugins/texteditor/basetexteditor.h index 6994a90e974..d464d879b67 100644 --- a/src/plugins/texteditor/basetexteditor.h +++ b/src/plugins/texteditor/basetexteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetexteditor_p.h b/src/plugins/texteditor/basetexteditor_p.h index e21677de32c..c6d823b8edc 100644 --- a/src/plugins/texteditor/basetexteditor_p.h +++ b/src/plugins/texteditor/basetexteditor_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetextmark.cpp b/src/plugins/texteditor/basetextmark.cpp index dd5832a7bba..f7ccdb7f4de 100644 --- a/src/plugins/texteditor/basetextmark.cpp +++ b/src/plugins/texteditor/basetextmark.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetextmark.h b/src/plugins/texteditor/basetextmark.h index 7b31e061d5f..3f3f65aaf52 100644 --- a/src/plugins/texteditor/basetextmark.h +++ b/src/plugins/texteditor/basetextmark.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/basetextmarkregistry.h b/src/plugins/texteditor/basetextmarkregistry.h index 0b3978055dd..ad1174fb636 100644 --- a/src/plugins/texteditor/basetextmarkregistry.h +++ b/src/plugins/texteditor/basetextmarkregistry.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/behaviorsettings.cpp b/src/plugins/texteditor/behaviorsettings.cpp index a6f675ff28d..9a08ffe3c13 100644 --- a/src/plugins/texteditor/behaviorsettings.cpp +++ b/src/plugins/texteditor/behaviorsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/behaviorsettings.h b/src/plugins/texteditor/behaviorsettings.h index 06e30d90c64..fda08042989 100644 --- a/src/plugins/texteditor/behaviorsettings.h +++ b/src/plugins/texteditor/behaviorsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/behaviorsettingspage.cpp b/src/plugins/texteditor/behaviorsettingspage.cpp index a5a7001f0a9..c232fc7485c 100644 --- a/src/plugins/texteditor/behaviorsettingspage.cpp +++ b/src/plugins/texteditor/behaviorsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/behaviorsettingspage.h b/src/plugins/texteditor/behaviorsettingspage.h index ccaaaa34ef0..d8126c4e0ff 100644 --- a/src/plugins/texteditor/behaviorsettingspage.h +++ b/src/plugins/texteditor/behaviorsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/behaviorsettingswidget.cpp b/src/plugins/texteditor/behaviorsettingswidget.cpp index 044b2a328db..218f0f8eb4a 100644 --- a/src/plugins/texteditor/behaviorsettingswidget.cpp +++ b/src/plugins/texteditor/behaviorsettingswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/behaviorsettingswidget.h b/src/plugins/texteditor/behaviorsettingswidget.h index 7fe303da225..11aac48594a 100644 --- a/src/plugins/texteditor/behaviorsettingswidget.h +++ b/src/plugins/texteditor/behaviorsettingswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/circularclipboard.cpp b/src/plugins/texteditor/circularclipboard.cpp index d4d5cd27834..d578024c340 100644 --- a/src/plugins/texteditor/circularclipboard.cpp +++ b/src/plugins/texteditor/circularclipboard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/circularclipboard.h b/src/plugins/texteditor/circularclipboard.h index bda2ee314da..9c6608daf10 100644 --- a/src/plugins/texteditor/circularclipboard.h +++ b/src/plugins/texteditor/circularclipboard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/circularclipboardassist.cpp b/src/plugins/texteditor/circularclipboardassist.cpp index 046f1b836d9..45a7e4d3034 100644 --- a/src/plugins/texteditor/circularclipboardassist.cpp +++ b/src/plugins/texteditor/circularclipboardassist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/circularclipboardassist.h b/src/plugins/texteditor/circularclipboardassist.h index 307f9f4ce73..9aa7b2a1224 100644 --- a/src/plugins/texteditor/circularclipboardassist.h +++ b/src/plugins/texteditor/circularclipboardassist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/assistenums.h b/src/plugins/texteditor/codeassist/assistenums.h index b71a96ce467..f6efbc8f756 100644 --- a/src/plugins/texteditor/codeassist/assistenums.h +++ b/src/plugins/texteditor/codeassist/assistenums.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/basicproposalitem.cpp b/src/plugins/texteditor/codeassist/basicproposalitem.cpp index b0c8729f8a4..6b815fe5fe2 100644 --- a/src/plugins/texteditor/codeassist/basicproposalitem.cpp +++ b/src/plugins/texteditor/codeassist/basicproposalitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/basicproposalitem.h b/src/plugins/texteditor/codeassist/basicproposalitem.h index 4191d4979d7..d155799a460 100644 --- a/src/plugins/texteditor/codeassist/basicproposalitem.h +++ b/src/plugins/texteditor/codeassist/basicproposalitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/basicproposalitemlistmodel.cpp b/src/plugins/texteditor/codeassist/basicproposalitemlistmodel.cpp index ae2ece571c2..3cad3bdb9fe 100644 --- a/src/plugins/texteditor/codeassist/basicproposalitemlistmodel.cpp +++ b/src/plugins/texteditor/codeassist/basicproposalitemlistmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/basicproposalitemlistmodel.h b/src/plugins/texteditor/codeassist/basicproposalitemlistmodel.h index 5205c8901ab..333a07e8d47 100644 --- a/src/plugins/texteditor/codeassist/basicproposalitemlistmodel.h +++ b/src/plugins/texteditor/codeassist/basicproposalitemlistmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/codeassistant.cpp b/src/plugins/texteditor/codeassist/codeassistant.cpp index 81d5d2fc3dc..d2618bc5ea3 100644 --- a/src/plugins/texteditor/codeassist/codeassistant.cpp +++ b/src/plugins/texteditor/codeassist/codeassistant.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/codeassistant.h b/src/plugins/texteditor/codeassist/codeassistant.h index 70a588c4782..97c4af7e28d 100644 --- a/src/plugins/texteditor/codeassist/codeassistant.h +++ b/src/plugins/texteditor/codeassist/codeassistant.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/completionassistprovider.cpp b/src/plugins/texteditor/codeassist/completionassistprovider.cpp index 6f5543b2352..89883f204d1 100644 --- a/src/plugins/texteditor/codeassist/completionassistprovider.cpp +++ b/src/plugins/texteditor/codeassist/completionassistprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/completionassistprovider.h b/src/plugins/texteditor/codeassist/completionassistprovider.h index 416f5c79086..59ee45d4b72 100644 --- a/src/plugins/texteditor/codeassist/completionassistprovider.h +++ b/src/plugins/texteditor/codeassist/completionassistprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/defaultassistinterface.cpp b/src/plugins/texteditor/codeassist/defaultassistinterface.cpp index 39bf978d27b..847f995821b 100644 --- a/src/plugins/texteditor/codeassist/defaultassistinterface.cpp +++ b/src/plugins/texteditor/codeassist/defaultassistinterface.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/defaultassistinterface.h b/src/plugins/texteditor/codeassist/defaultassistinterface.h index e7c2e241d25..8cfc4158dbe 100644 --- a/src/plugins/texteditor/codeassist/defaultassistinterface.h +++ b/src/plugins/texteditor/codeassist/defaultassistinterface.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/functionhintproposal.cpp b/src/plugins/texteditor/codeassist/functionhintproposal.cpp index 226d50308b7..dd3490a08d3 100644 --- a/src/plugins/texteditor/codeassist/functionhintproposal.cpp +++ b/src/plugins/texteditor/codeassist/functionhintproposal.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/functionhintproposal.h b/src/plugins/texteditor/codeassist/functionhintproposal.h index b85b563ec73..4326ffd8469 100644 --- a/src/plugins/texteditor/codeassist/functionhintproposal.h +++ b/src/plugins/texteditor/codeassist/functionhintproposal.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/functionhintproposalwidget.cpp b/src/plugins/texteditor/codeassist/functionhintproposalwidget.cpp index d74878f2f21..76184ef8122 100644 --- a/src/plugins/texteditor/codeassist/functionhintproposalwidget.cpp +++ b/src/plugins/texteditor/codeassist/functionhintproposalwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/functionhintproposalwidget.h b/src/plugins/texteditor/codeassist/functionhintproposalwidget.h index d5aafa78514..401e0257af8 100644 --- a/src/plugins/texteditor/codeassist/functionhintproposalwidget.h +++ b/src/plugins/texteditor/codeassist/functionhintproposalwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/genericproposal.cpp b/src/plugins/texteditor/codeassist/genericproposal.cpp index 83c996d4dad..ba030bd478c 100644 --- a/src/plugins/texteditor/codeassist/genericproposal.cpp +++ b/src/plugins/texteditor/codeassist/genericproposal.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/genericproposal.h b/src/plugins/texteditor/codeassist/genericproposal.h index b462576be55..c0ed0390562 100644 --- a/src/plugins/texteditor/codeassist/genericproposal.h +++ b/src/plugins/texteditor/codeassist/genericproposal.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/genericproposalwidget.cpp b/src/plugins/texteditor/codeassist/genericproposalwidget.cpp index 4e0ada05dd2..bf096098e8f 100644 --- a/src/plugins/texteditor/codeassist/genericproposalwidget.cpp +++ b/src/plugins/texteditor/codeassist/genericproposalwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/genericproposalwidget.h b/src/plugins/texteditor/codeassist/genericproposalwidget.h index f1f5f5a61ec..0d625dc478f 100644 --- a/src/plugins/texteditor/codeassist/genericproposalwidget.h +++ b/src/plugins/texteditor/codeassist/genericproposalwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistinterface.cpp b/src/plugins/texteditor/codeassist/iassistinterface.cpp index 2f3ec8d9231..e92a31d2173 100644 --- a/src/plugins/texteditor/codeassist/iassistinterface.cpp +++ b/src/plugins/texteditor/codeassist/iassistinterface.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistinterface.h b/src/plugins/texteditor/codeassist/iassistinterface.h index 67c30be2cf4..51c501f0b80 100644 --- a/src/plugins/texteditor/codeassist/iassistinterface.h +++ b/src/plugins/texteditor/codeassist/iassistinterface.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistprocessor.cpp b/src/plugins/texteditor/codeassist/iassistprocessor.cpp index 4e477fd8d79..c7fe156a1af 100644 --- a/src/plugins/texteditor/codeassist/iassistprocessor.cpp +++ b/src/plugins/texteditor/codeassist/iassistprocessor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistprocessor.h b/src/plugins/texteditor/codeassist/iassistprocessor.h index 1bcefc29acf..1149b7ec5c7 100644 --- a/src/plugins/texteditor/codeassist/iassistprocessor.h +++ b/src/plugins/texteditor/codeassist/iassistprocessor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistproposal.cpp b/src/plugins/texteditor/codeassist/iassistproposal.cpp index b4da8306a4b..140775dc6f7 100644 --- a/src/plugins/texteditor/codeassist/iassistproposal.cpp +++ b/src/plugins/texteditor/codeassist/iassistproposal.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistproposal.h b/src/plugins/texteditor/codeassist/iassistproposal.h index 099f6eeb3a0..bc72a87d4c8 100644 --- a/src/plugins/texteditor/codeassist/iassistproposal.h +++ b/src/plugins/texteditor/codeassist/iassistproposal.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistproposalitem.cpp b/src/plugins/texteditor/codeassist/iassistproposalitem.cpp index ec4f7fd0dce..0095bb4cb61 100644 --- a/src/plugins/texteditor/codeassist/iassistproposalitem.cpp +++ b/src/plugins/texteditor/codeassist/iassistproposalitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistproposalitem.h b/src/plugins/texteditor/codeassist/iassistproposalitem.h index 5f62c660aa7..3bc33beed4f 100644 --- a/src/plugins/texteditor/codeassist/iassistproposalitem.h +++ b/src/plugins/texteditor/codeassist/iassistproposalitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistproposalmodel.cpp b/src/plugins/texteditor/codeassist/iassistproposalmodel.cpp index 994055e5aa0..90df390e47f 100644 --- a/src/plugins/texteditor/codeassist/iassistproposalmodel.cpp +++ b/src/plugins/texteditor/codeassist/iassistproposalmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistproposalmodel.h b/src/plugins/texteditor/codeassist/iassistproposalmodel.h index d1031c6ed65..d0dcf14c215 100644 --- a/src/plugins/texteditor/codeassist/iassistproposalmodel.h +++ b/src/plugins/texteditor/codeassist/iassistproposalmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistproposalwidget.cpp b/src/plugins/texteditor/codeassist/iassistproposalwidget.cpp index 6f68661fb2e..417c6d3936e 100644 --- a/src/plugins/texteditor/codeassist/iassistproposalwidget.cpp +++ b/src/plugins/texteditor/codeassist/iassistproposalwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistproposalwidget.h b/src/plugins/texteditor/codeassist/iassistproposalwidget.h index e97ac8062af..93a5961b309 100644 --- a/src/plugins/texteditor/codeassist/iassistproposalwidget.h +++ b/src/plugins/texteditor/codeassist/iassistproposalwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistprovider.cpp b/src/plugins/texteditor/codeassist/iassistprovider.cpp index 935cda9bf6f..5b36f39e85e 100644 --- a/src/plugins/texteditor/codeassist/iassistprovider.cpp +++ b/src/plugins/texteditor/codeassist/iassistprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/iassistprovider.h b/src/plugins/texteditor/codeassist/iassistprovider.h index 11a074273d2..0a867e26722 100644 --- a/src/plugins/texteditor/codeassist/iassistprovider.h +++ b/src/plugins/texteditor/codeassist/iassistprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/ifunctionhintproposalmodel.cpp b/src/plugins/texteditor/codeassist/ifunctionhintproposalmodel.cpp index 99d6b454e46..1ea6edfa9fa 100644 --- a/src/plugins/texteditor/codeassist/ifunctionhintproposalmodel.cpp +++ b/src/plugins/texteditor/codeassist/ifunctionhintproposalmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/ifunctionhintproposalmodel.h b/src/plugins/texteditor/codeassist/ifunctionhintproposalmodel.h index 663b878acdf..1c08ae48988 100644 --- a/src/plugins/texteditor/codeassist/ifunctionhintproposalmodel.h +++ b/src/plugins/texteditor/codeassist/ifunctionhintproposalmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/igenericproposalmodel.cpp b/src/plugins/texteditor/codeassist/igenericproposalmodel.cpp index 005059db991..a55dc3837eb 100644 --- a/src/plugins/texteditor/codeassist/igenericproposalmodel.cpp +++ b/src/plugins/texteditor/codeassist/igenericproposalmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/igenericproposalmodel.h b/src/plugins/texteditor/codeassist/igenericproposalmodel.h index 71a4bfde317..82ea71553c3 100644 --- a/src/plugins/texteditor/codeassist/igenericproposalmodel.h +++ b/src/plugins/texteditor/codeassist/igenericproposalmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/keywordscompletionassist.cpp b/src/plugins/texteditor/codeassist/keywordscompletionassist.cpp index e58f395f1b2..67b5a0bae5d 100644 --- a/src/plugins/texteditor/codeassist/keywordscompletionassist.cpp +++ b/src/plugins/texteditor/codeassist/keywordscompletionassist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/keywordscompletionassist.h b/src/plugins/texteditor/codeassist/keywordscompletionassist.h index 80aa1c8e04c..65dbad5b92f 100644 --- a/src/plugins/texteditor/codeassist/keywordscompletionassist.h +++ b/src/plugins/texteditor/codeassist/keywordscompletionassist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/quickfixassistprocessor.cpp b/src/plugins/texteditor/codeassist/quickfixassistprocessor.cpp index db90f5d4d1b..9472afc6c0d 100644 --- a/src/plugins/texteditor/codeassist/quickfixassistprocessor.cpp +++ b/src/plugins/texteditor/codeassist/quickfixassistprocessor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/quickfixassistprocessor.h b/src/plugins/texteditor/codeassist/quickfixassistprocessor.h index 96737a1a4df..11976b1bdd5 100644 --- a/src/plugins/texteditor/codeassist/quickfixassistprocessor.h +++ b/src/plugins/texteditor/codeassist/quickfixassistprocessor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/quickfixassistprovider.cpp b/src/plugins/texteditor/codeassist/quickfixassistprovider.cpp index 76642208917..a83d8aa4c37 100644 --- a/src/plugins/texteditor/codeassist/quickfixassistprovider.cpp +++ b/src/plugins/texteditor/codeassist/quickfixassistprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/quickfixassistprovider.h b/src/plugins/texteditor/codeassist/quickfixassistprovider.h index 3faff10b125..91e52954170 100644 --- a/src/plugins/texteditor/codeassist/quickfixassistprovider.h +++ b/src/plugins/texteditor/codeassist/quickfixassistprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/runner.cpp b/src/plugins/texteditor/codeassist/runner.cpp index b8d9dbfa4a9..de693f8bf4c 100644 --- a/src/plugins/texteditor/codeassist/runner.cpp +++ b/src/plugins/texteditor/codeassist/runner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codeassist/runner.h b/src/plugins/texteditor/codeassist/runner.h index a8f0e1c6937..9c434d37972 100644 --- a/src/plugins/texteditor/codeassist/runner.h +++ b/src/plugins/texteditor/codeassist/runner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codecselector.cpp b/src/plugins/texteditor/codecselector.cpp index dd4ab7f02e4..4f195df1e40 100644 --- a/src/plugins/texteditor/codecselector.cpp +++ b/src/plugins/texteditor/codecselector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codecselector.h b/src/plugins/texteditor/codecselector.h index 5f0ed4d7b25..05be98f1657 100644 --- a/src/plugins/texteditor/codecselector.h +++ b/src/plugins/texteditor/codecselector.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codestyleeditor.cpp b/src/plugins/texteditor/codestyleeditor.cpp index 101eb6f4ced..838562b9043 100644 --- a/src/plugins/texteditor/codestyleeditor.cpp +++ b/src/plugins/texteditor/codestyleeditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codestyleeditor.h b/src/plugins/texteditor/codestyleeditor.h index 2b5cd2ee143..4dcc3a81f32 100644 --- a/src/plugins/texteditor/codestyleeditor.h +++ b/src/plugins/texteditor/codestyleeditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codestylepool.cpp b/src/plugins/texteditor/codestylepool.cpp index 5b5a7132d38..7d799b13357 100644 --- a/src/plugins/texteditor/codestylepool.cpp +++ b/src/plugins/texteditor/codestylepool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codestylepool.h b/src/plugins/texteditor/codestylepool.h index ef6dff460d3..b449163d75c 100644 --- a/src/plugins/texteditor/codestylepool.h +++ b/src/plugins/texteditor/codestylepool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codestyleselectorwidget.cpp b/src/plugins/texteditor/codestyleselectorwidget.cpp index 87ffeb38bc0..65c17aa2365 100644 --- a/src/plugins/texteditor/codestyleselectorwidget.cpp +++ b/src/plugins/texteditor/codestyleselectorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/codestyleselectorwidget.h b/src/plugins/texteditor/codestyleselectorwidget.h index 1252508bc7c..f9ba7ce2360 100644 --- a/src/plugins/texteditor/codestyleselectorwidget.h +++ b/src/plugins/texteditor/codestyleselectorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/colorscheme.cpp b/src/plugins/texteditor/colorscheme.cpp index 1ac40cdfdf8..d04ae1544ed 100644 --- a/src/plugins/texteditor/colorscheme.cpp +++ b/src/plugins/texteditor/colorscheme.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/colorscheme.h b/src/plugins/texteditor/colorscheme.h index 12317fef981..c24ddc8c4a2 100644 --- a/src/plugins/texteditor/colorscheme.h +++ b/src/plugins/texteditor/colorscheme.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/colorschemeedit.cpp b/src/plugins/texteditor/colorschemeedit.cpp index b85bdf35a45..7c113b37b63 100644 --- a/src/plugins/texteditor/colorschemeedit.cpp +++ b/src/plugins/texteditor/colorschemeedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/colorschemeedit.h b/src/plugins/texteditor/colorschemeedit.h index f85a86c145a..fd7000d1ee3 100644 --- a/src/plugins/texteditor/colorschemeedit.h +++ b/src/plugins/texteditor/colorschemeedit.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/completionsettings.cpp b/src/plugins/texteditor/completionsettings.cpp index 6e4e3d33352..0b571df19ae 100644 --- a/src/plugins/texteditor/completionsettings.cpp +++ b/src/plugins/texteditor/completionsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/completionsettings.h b/src/plugins/texteditor/completionsettings.h index ea8fd14b85e..6bb41ea9824 100644 --- a/src/plugins/texteditor/completionsettings.h +++ b/src/plugins/texteditor/completionsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/convenience.cpp b/src/plugins/texteditor/convenience.cpp index 38d2252a06b..a3b4ac4dc84 100644 --- a/src/plugins/texteditor/convenience.cpp +++ b/src/plugins/texteditor/convenience.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/convenience.h b/src/plugins/texteditor/convenience.h index 99c296e1dbd..1496bebb674 100644 --- a/src/plugins/texteditor/convenience.h +++ b/src/plugins/texteditor/convenience.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/displaysettings.cpp b/src/plugins/texteditor/displaysettings.cpp index 4a1328d4dfa..e54e1082bff 100644 --- a/src/plugins/texteditor/displaysettings.cpp +++ b/src/plugins/texteditor/displaysettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/displaysettings.h b/src/plugins/texteditor/displaysettings.h index f800e74856e..0ed9a0f0314 100644 --- a/src/plugins/texteditor/displaysettings.h +++ b/src/plugins/texteditor/displaysettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/displaysettingspage.cpp b/src/plugins/texteditor/displaysettingspage.cpp index b5470e8ea08..9f3adbef4ed 100644 --- a/src/plugins/texteditor/displaysettingspage.cpp +++ b/src/plugins/texteditor/displaysettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/displaysettingspage.h b/src/plugins/texteditor/displaysettingspage.h index 802e303277d..7c0483406e6 100644 --- a/src/plugins/texteditor/displaysettingspage.h +++ b/src/plugins/texteditor/displaysettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/extraencodingsettings.cpp b/src/plugins/texteditor/extraencodingsettings.cpp index fe5d20dc9e3..1bd08d08a8a 100644 --- a/src/plugins/texteditor/extraencodingsettings.cpp +++ b/src/plugins/texteditor/extraencodingsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/extraencodingsettings.h b/src/plugins/texteditor/extraencodingsettings.h index d1b4933aa27..cd74b2efe62 100644 --- a/src/plugins/texteditor/extraencodingsettings.h +++ b/src/plugins/texteditor/extraencodingsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/findincurrentfile.cpp b/src/plugins/texteditor/findincurrentfile.cpp index ca7fdadea31..c8a93106da6 100644 --- a/src/plugins/texteditor/findincurrentfile.cpp +++ b/src/plugins/texteditor/findincurrentfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/findincurrentfile.h b/src/plugins/texteditor/findincurrentfile.h index 5e1cee5c81c..3c35d197363 100644 --- a/src/plugins/texteditor/findincurrentfile.h +++ b/src/plugins/texteditor/findincurrentfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/findinfiles.cpp b/src/plugins/texteditor/findinfiles.cpp index 81837ee2839..9fc036e60aa 100644 --- a/src/plugins/texteditor/findinfiles.cpp +++ b/src/plugins/texteditor/findinfiles.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/findinfiles.h b/src/plugins/texteditor/findinfiles.h index ac95f4fb505..0038dd75bfb 100644 --- a/src/plugins/texteditor/findinfiles.h +++ b/src/plugins/texteditor/findinfiles.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/findinopenfiles.cpp b/src/plugins/texteditor/findinopenfiles.cpp index 7a882056d36..dec1e278a80 100644 --- a/src/plugins/texteditor/findinopenfiles.cpp +++ b/src/plugins/texteditor/findinopenfiles.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/findinopenfiles.h b/src/plugins/texteditor/findinopenfiles.h index a9071d11a45..c8c5878b61c 100644 --- a/src/plugins/texteditor/findinopenfiles.h +++ b/src/plugins/texteditor/findinopenfiles.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/fontsettings.cpp b/src/plugins/texteditor/fontsettings.cpp index 6f9843c5c3e..fd43fe3a10a 100644 --- a/src/plugins/texteditor/fontsettings.cpp +++ b/src/plugins/texteditor/fontsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/fontsettings.h b/src/plugins/texteditor/fontsettings.h index 58c2b02bdd7..23e746f4e5b 100644 --- a/src/plugins/texteditor/fontsettings.h +++ b/src/plugins/texteditor/fontsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/fontsettingspage.cpp b/src/plugins/texteditor/fontsettingspage.cpp index e3cd7e496aa..58ff3ed36c7 100644 --- a/src/plugins/texteditor/fontsettingspage.cpp +++ b/src/plugins/texteditor/fontsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/fontsettingspage.h b/src/plugins/texteditor/fontsettingspage.h index 3870904cd27..f358652c09e 100644 --- a/src/plugins/texteditor/fontsettingspage.h +++ b/src/plugins/texteditor/fontsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/context.cpp b/src/plugins/texteditor/generichighlighter/context.cpp index 9be3b9f1f2a..e38a4785fc1 100644 --- a/src/plugins/texteditor/generichighlighter/context.cpp +++ b/src/plugins/texteditor/generichighlighter/context.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/context.h b/src/plugins/texteditor/generichighlighter/context.h index 3d9c21c52b0..e7bc524c527 100644 --- a/src/plugins/texteditor/generichighlighter/context.h +++ b/src/plugins/texteditor/generichighlighter/context.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/definitiondownloader.cpp b/src/plugins/texteditor/generichighlighter/definitiondownloader.cpp index 950a489d0c8..b051e8caaac 100644 --- a/src/plugins/texteditor/generichighlighter/definitiondownloader.cpp +++ b/src/plugins/texteditor/generichighlighter/definitiondownloader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/definitiondownloader.h b/src/plugins/texteditor/generichighlighter/definitiondownloader.h index dcaf64fbb20..35e97681b7d 100644 --- a/src/plugins/texteditor/generichighlighter/definitiondownloader.h +++ b/src/plugins/texteditor/generichighlighter/definitiondownloader.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/dynamicrule.cpp b/src/plugins/texteditor/generichighlighter/dynamicrule.cpp index 8a330326b94..1812f452c8a 100644 --- a/src/plugins/texteditor/generichighlighter/dynamicrule.cpp +++ b/src/plugins/texteditor/generichighlighter/dynamicrule.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/dynamicrule.h b/src/plugins/texteditor/generichighlighter/dynamicrule.h index 1a7170bea8b..10a18e6621c 100644 --- a/src/plugins/texteditor/generichighlighter/dynamicrule.h +++ b/src/plugins/texteditor/generichighlighter/dynamicrule.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinition.cpp b/src/plugins/texteditor/generichighlighter/highlightdefinition.cpp index 696fb921c60..8757d6dfd43 100644 --- a/src/plugins/texteditor/generichighlighter/highlightdefinition.cpp +++ b/src/plugins/texteditor/generichighlighter/highlightdefinition.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinition.h b/src/plugins/texteditor/generichighlighter/highlightdefinition.h index 5d3cd137672..2b34b042265 100644 --- a/src/plugins/texteditor/generichighlighter/highlightdefinition.h +++ b/src/plugins/texteditor/generichighlighter/highlightdefinition.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.cpp b/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.cpp index aa311b540cc..fdb0eaab859 100644 --- a/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.cpp +++ b/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.h b/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.h index e9cfcd57951..3f5c90f059f 100644 --- a/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.h +++ b/src/plugins/texteditor/generichighlighter/highlightdefinitionhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.h b/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.h index a641fa5df2b..4a0f09414bb 100644 --- a/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.h +++ b/src/plugins/texteditor/generichighlighter/highlightdefinitionmetadata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlighter.cpp b/src/plugins/texteditor/generichighlighter/highlighter.cpp index 3a195d37e2f..7094c5bee2f 100644 --- a/src/plugins/texteditor/generichighlighter/highlighter.cpp +++ b/src/plugins/texteditor/generichighlighter/highlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlighter.h b/src/plugins/texteditor/generichighlighter/highlighter.h index caf72754496..856310ee8c8 100644 --- a/src/plugins/texteditor/generichighlighter/highlighter.h +++ b/src/plugins/texteditor/generichighlighter/highlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlighterexception.h b/src/plugins/texteditor/generichighlighter/highlighterexception.h index 438e5744b0a..c674dd7c0af 100644 --- a/src/plugins/texteditor/generichighlighter/highlighterexception.h +++ b/src/plugins/texteditor/generichighlighter/highlighterexception.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlightersettings.cpp b/src/plugins/texteditor/generichighlighter/highlightersettings.cpp index 023e960b009..5942482fcf0 100644 --- a/src/plugins/texteditor/generichighlighter/highlightersettings.cpp +++ b/src/plugins/texteditor/generichighlighter/highlightersettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlightersettings.h b/src/plugins/texteditor/generichighlighter/highlightersettings.h index 9a2f5bdefee..5cfa59ffbac 100644 --- a/src/plugins/texteditor/generichighlighter/highlightersettings.h +++ b/src/plugins/texteditor/generichighlighter/highlightersettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlightersettingspage.cpp b/src/plugins/texteditor/generichighlighter/highlightersettingspage.cpp index c04a5d72e96..4271d0f0979 100644 --- a/src/plugins/texteditor/generichighlighter/highlightersettingspage.cpp +++ b/src/plugins/texteditor/generichighlighter/highlightersettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/highlightersettingspage.h b/src/plugins/texteditor/generichighlighter/highlightersettingspage.h index 770ef4c4cf1..18c632ba14e 100644 --- a/src/plugins/texteditor/generichighlighter/highlightersettingspage.h +++ b/src/plugins/texteditor/generichighlighter/highlightersettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/includerulesinstruction.cpp b/src/plugins/texteditor/generichighlighter/includerulesinstruction.cpp index 00e627c552c..8d589269264 100644 --- a/src/plugins/texteditor/generichighlighter/includerulesinstruction.cpp +++ b/src/plugins/texteditor/generichighlighter/includerulesinstruction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/includerulesinstruction.h b/src/plugins/texteditor/generichighlighter/includerulesinstruction.h index 34ebd38652d..64beea315b2 100644 --- a/src/plugins/texteditor/generichighlighter/includerulesinstruction.h +++ b/src/plugins/texteditor/generichighlighter/includerulesinstruction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/itemdata.cpp b/src/plugins/texteditor/generichighlighter/itemdata.cpp index c0f3422d21f..a2212b7f06a 100644 --- a/src/plugins/texteditor/generichighlighter/itemdata.cpp +++ b/src/plugins/texteditor/generichighlighter/itemdata.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/itemdata.h b/src/plugins/texteditor/generichighlighter/itemdata.h index b1164115a6f..8e75c26df98 100644 --- a/src/plugins/texteditor/generichighlighter/itemdata.h +++ b/src/plugins/texteditor/generichighlighter/itemdata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/keywordlist.cpp b/src/plugins/texteditor/generichighlighter/keywordlist.cpp index 486d1cb5e0b..a5059a02f34 100644 --- a/src/plugins/texteditor/generichighlighter/keywordlist.cpp +++ b/src/plugins/texteditor/generichighlighter/keywordlist.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/keywordlist.h b/src/plugins/texteditor/generichighlighter/keywordlist.h index 1154fcf4f7d..63bb8d8fecf 100644 --- a/src/plugins/texteditor/generichighlighter/keywordlist.h +++ b/src/plugins/texteditor/generichighlighter/keywordlist.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp b/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp index d1e8ef6ac7f..211ae160470 100644 --- a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp +++ b/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.h b/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.h index 054c4eb7c77..da8d2a98fd0 100644 --- a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.h +++ b/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/manager.cpp b/src/plugins/texteditor/generichighlighter/manager.cpp index 05dcdcf06f0..6914788cbeb 100644 --- a/src/plugins/texteditor/generichighlighter/manager.cpp +++ b/src/plugins/texteditor/generichighlighter/manager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/manager.h b/src/plugins/texteditor/generichighlighter/manager.h index 9c39d194ecb..226e431475d 100644 --- a/src/plugins/texteditor/generichighlighter/manager.h +++ b/src/plugins/texteditor/generichighlighter/manager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/progressdata.cpp b/src/plugins/texteditor/generichighlighter/progressdata.cpp index 246d8462216..2de3a30e69a 100644 --- a/src/plugins/texteditor/generichighlighter/progressdata.cpp +++ b/src/plugins/texteditor/generichighlighter/progressdata.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/progressdata.h b/src/plugins/texteditor/generichighlighter/progressdata.h index 38e9fa273d7..bc155eb956c 100644 --- a/src/plugins/texteditor/generichighlighter/progressdata.h +++ b/src/plugins/texteditor/generichighlighter/progressdata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/reuse.h b/src/plugins/texteditor/generichighlighter/reuse.h index e02d16ef945..30e1512fd11 100644 --- a/src/plugins/texteditor/generichighlighter/reuse.h +++ b/src/plugins/texteditor/generichighlighter/reuse.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/rule.cpp b/src/plugins/texteditor/generichighlighter/rule.cpp index 09955f93f4f..bba07397219 100644 --- a/src/plugins/texteditor/generichighlighter/rule.cpp +++ b/src/plugins/texteditor/generichighlighter/rule.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/rule.h b/src/plugins/texteditor/generichighlighter/rule.h index 002e56e0b60..00161b7f0b9 100644 --- a/src/plugins/texteditor/generichighlighter/rule.h +++ b/src/plugins/texteditor/generichighlighter/rule.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/specificrules.cpp b/src/plugins/texteditor/generichighlighter/specificrules.cpp index 6fb845e0915..b683ccbe605 100644 --- a/src/plugins/texteditor/generichighlighter/specificrules.cpp +++ b/src/plugins/texteditor/generichighlighter/specificrules.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/generichighlighter/specificrules.h b/src/plugins/texteditor/generichighlighter/specificrules.h index 25e4e42195b..7dbefb84f1f 100644 --- a/src/plugins/texteditor/generichighlighter/specificrules.h +++ b/src/plugins/texteditor/generichighlighter/specificrules.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/helpitem.cpp b/src/plugins/texteditor/helpitem.cpp index eca956d29b9..c5b79a38bc5 100644 --- a/src/plugins/texteditor/helpitem.cpp +++ b/src/plugins/texteditor/helpitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/helpitem.h b/src/plugins/texteditor/helpitem.h index ea48f7da3d4..22ee62abcd8 100644 --- a/src/plugins/texteditor/helpitem.h +++ b/src/plugins/texteditor/helpitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/highlighterutils.cpp b/src/plugins/texteditor/highlighterutils.cpp index beeef36c754..6ee5caac95d 100644 --- a/src/plugins/texteditor/highlighterutils.cpp +++ b/src/plugins/texteditor/highlighterutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/highlighterutils.h b/src/plugins/texteditor/highlighterutils.h index 8e9fba0f442..ead98544038 100644 --- a/src/plugins/texteditor/highlighterutils.h +++ b/src/plugins/texteditor/highlighterutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/icodestylepreferences.cpp b/src/plugins/texteditor/icodestylepreferences.cpp index 0db62335c7c..dcda446b321 100644 --- a/src/plugins/texteditor/icodestylepreferences.cpp +++ b/src/plugins/texteditor/icodestylepreferences.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/icodestylepreferences.h b/src/plugins/texteditor/icodestylepreferences.h index 1e635896080..ca19586018d 100644 --- a/src/plugins/texteditor/icodestylepreferences.h +++ b/src/plugins/texteditor/icodestylepreferences.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/icodestylepreferencesfactory.cpp b/src/plugins/texteditor/icodestylepreferencesfactory.cpp index 06e36146c2e..dccd880e966 100644 --- a/src/plugins/texteditor/icodestylepreferencesfactory.cpp +++ b/src/plugins/texteditor/icodestylepreferencesfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/icodestylepreferencesfactory.h b/src/plugins/texteditor/icodestylepreferencesfactory.h index d4fd82fb310..064b9d16d46 100644 --- a/src/plugins/texteditor/icodestylepreferencesfactory.h +++ b/src/plugins/texteditor/icodestylepreferencesfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/ihighlighterfactory.h b/src/plugins/texteditor/ihighlighterfactory.h index 0909d72898e..a3c39e635b4 100644 --- a/src/plugins/texteditor/ihighlighterfactory.h +++ b/src/plugins/texteditor/ihighlighterfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/indenter.cpp b/src/plugins/texteditor/indenter.cpp index 8ec32520837..7f84fcb8c4d 100644 --- a/src/plugins/texteditor/indenter.cpp +++ b/src/plugins/texteditor/indenter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/indenter.h b/src/plugins/texteditor/indenter.h index 5f364b43d9d..db25c171f3f 100644 --- a/src/plugins/texteditor/indenter.h +++ b/src/plugins/texteditor/indenter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/ioutlinewidget.h b/src/plugins/texteditor/ioutlinewidget.h index 083ca2c20c3..e6f27da1063 100644 --- a/src/plugins/texteditor/ioutlinewidget.h +++ b/src/plugins/texteditor/ioutlinewidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/itexteditor.cpp b/src/plugins/texteditor/itexteditor.cpp index ab2b80b9b28..f325627c2bc 100644 --- a/src/plugins/texteditor/itexteditor.cpp +++ b/src/plugins/texteditor/itexteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/itexteditor.h b/src/plugins/texteditor/itexteditor.h index 2fa63d34c16..69e724fe79b 100644 --- a/src/plugins/texteditor/itexteditor.h +++ b/src/plugins/texteditor/itexteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/itextmark.cpp b/src/plugins/texteditor/itextmark.cpp index 7582739da4a..7102a9b5b30 100644 --- a/src/plugins/texteditor/itextmark.cpp +++ b/src/plugins/texteditor/itextmark.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/itextmark.h b/src/plugins/texteditor/itextmark.h index 61cf6c1ed62..f02c5813623 100644 --- a/src/plugins/texteditor/itextmark.h +++ b/src/plugins/texteditor/itextmark.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/linenumberfilter.cpp b/src/plugins/texteditor/linenumberfilter.cpp index 1247f96d025..21e9576bfe7 100644 --- a/src/plugins/texteditor/linenumberfilter.cpp +++ b/src/plugins/texteditor/linenumberfilter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/linenumberfilter.h b/src/plugins/texteditor/linenumberfilter.h index f5539ca4012..304877812a0 100644 --- a/src/plugins/texteditor/linenumberfilter.h +++ b/src/plugins/texteditor/linenumberfilter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/normalindenter.cpp b/src/plugins/texteditor/normalindenter.cpp index 5f3d0811c2e..da8894a070d 100644 --- a/src/plugins/texteditor/normalindenter.cpp +++ b/src/plugins/texteditor/normalindenter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/normalindenter.h b/src/plugins/texteditor/normalindenter.h index caed266d8fd..2e06709e109 100644 --- a/src/plugins/texteditor/normalindenter.h +++ b/src/plugins/texteditor/normalindenter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/outlinefactory.cpp b/src/plugins/texteditor/outlinefactory.cpp index 4df0013e44a..9ad3d0aa853 100644 --- a/src/plugins/texteditor/outlinefactory.cpp +++ b/src/plugins/texteditor/outlinefactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/outlinefactory.h b/src/plugins/texteditor/outlinefactory.h index aaab8463576..de2b9ddd87c 100644 --- a/src/plugins/texteditor/outlinefactory.h +++ b/src/plugins/texteditor/outlinefactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/plaintexteditor.cpp b/src/plugins/texteditor/plaintexteditor.cpp index c664cdbafa8..27846929d67 100644 --- a/src/plugins/texteditor/plaintexteditor.cpp +++ b/src/plugins/texteditor/plaintexteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/plaintexteditor.h b/src/plugins/texteditor/plaintexteditor.h index 35850625a49..d9f1452ab93 100644 --- a/src/plugins/texteditor/plaintexteditor.h +++ b/src/plugins/texteditor/plaintexteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/plaintexteditorfactory.cpp b/src/plugins/texteditor/plaintexteditorfactory.cpp index c31d411e582..408b159a817 100644 --- a/src/plugins/texteditor/plaintexteditorfactory.cpp +++ b/src/plugins/texteditor/plaintexteditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/plaintexteditorfactory.h b/src/plugins/texteditor/plaintexteditorfactory.h index facf43fa9b7..5c5393b425d 100644 --- a/src/plugins/texteditor/plaintexteditorfactory.h +++ b/src/plugins/texteditor/plaintexteditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/quickfix.cpp b/src/plugins/texteditor/quickfix.cpp index c9cb2ad0065..d8cbf1a4430 100644 --- a/src/plugins/texteditor/quickfix.cpp +++ b/src/plugins/texteditor/quickfix.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/quickfix.h b/src/plugins/texteditor/quickfix.h index 349c003f2ed..14db01ee53b 100644 --- a/src/plugins/texteditor/quickfix.h +++ b/src/plugins/texteditor/quickfix.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/refactoringchanges.cpp b/src/plugins/texteditor/refactoringchanges.cpp index 57dd3a9a81b..482c3af0175 100644 --- a/src/plugins/texteditor/refactoringchanges.cpp +++ b/src/plugins/texteditor/refactoringchanges.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/refactoringchanges.h b/src/plugins/texteditor/refactoringchanges.h index f97056777e1..431a995ef1e 100644 --- a/src/plugins/texteditor/refactoringchanges.h +++ b/src/plugins/texteditor/refactoringchanges.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/refactoroverlay.cpp b/src/plugins/texteditor/refactoroverlay.cpp index 0c31724c14a..6127166cc1c 100644 --- a/src/plugins/texteditor/refactoroverlay.cpp +++ b/src/plugins/texteditor/refactoroverlay.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/refactoroverlay.h b/src/plugins/texteditor/refactoroverlay.h index 4105ee17de2..b4e6aaabe7a 100644 --- a/src/plugins/texteditor/refactoroverlay.h +++ b/src/plugins/texteditor/refactoroverlay.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/semantichighlighter.cpp b/src/plugins/texteditor/semantichighlighter.cpp index 0b480db6eed..ee6d1cbc316 100644 --- a/src/plugins/texteditor/semantichighlighter.cpp +++ b/src/plugins/texteditor/semantichighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/semantichighlighter.h b/src/plugins/texteditor/semantichighlighter.h index 8a48aed95bb..4179e14a8ab 100644 --- a/src/plugins/texteditor/semantichighlighter.h +++ b/src/plugins/texteditor/semantichighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/simplecodestylepreferences.cpp b/src/plugins/texteditor/simplecodestylepreferences.cpp index 1e183c1123d..c6289cb8a1c 100644 --- a/src/plugins/texteditor/simplecodestylepreferences.cpp +++ b/src/plugins/texteditor/simplecodestylepreferences.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/simplecodestylepreferences.h b/src/plugins/texteditor/simplecodestylepreferences.h index 30e9f0d5172..274a667e648 100644 --- a/src/plugins/texteditor/simplecodestylepreferences.h +++ b/src/plugins/texteditor/simplecodestylepreferences.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/simplecodestylepreferenceswidget.cpp b/src/plugins/texteditor/simplecodestylepreferenceswidget.cpp index 072a8a25f4b..b0d6725403d 100644 --- a/src/plugins/texteditor/simplecodestylepreferenceswidget.cpp +++ b/src/plugins/texteditor/simplecodestylepreferenceswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/simplecodestylepreferenceswidget.h b/src/plugins/texteditor/simplecodestylepreferenceswidget.h index 2ba5a38d36c..1f8dad7c4c0 100644 --- a/src/plugins/texteditor/simplecodestylepreferenceswidget.h +++ b/src/plugins/texteditor/simplecodestylepreferenceswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/isnippetprovider.cpp b/src/plugins/texteditor/snippets/isnippetprovider.cpp index 6f398cd43c3..c522c07c8e4 100644 --- a/src/plugins/texteditor/snippets/isnippetprovider.cpp +++ b/src/plugins/texteditor/snippets/isnippetprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/isnippetprovider.h b/src/plugins/texteditor/snippets/isnippetprovider.h index da89edede29..5bd143e9d8d 100644 --- a/src/plugins/texteditor/snippets/isnippetprovider.h +++ b/src/plugins/texteditor/snippets/isnippetprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/plaintextsnippetprovider.cpp b/src/plugins/texteditor/snippets/plaintextsnippetprovider.cpp index 37bd7abe810..abdef784ac0 100644 --- a/src/plugins/texteditor/snippets/plaintextsnippetprovider.cpp +++ b/src/plugins/texteditor/snippets/plaintextsnippetprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/plaintextsnippetprovider.h b/src/plugins/texteditor/snippets/plaintextsnippetprovider.h index 131cd94042a..8008cac7547 100644 --- a/src/plugins/texteditor/snippets/plaintextsnippetprovider.h +++ b/src/plugins/texteditor/snippets/plaintextsnippetprovider.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/reuse.h b/src/plugins/texteditor/snippets/reuse.h index 92c7afec386..bbe75823e5b 100644 --- a/src/plugins/texteditor/snippets/reuse.h +++ b/src/plugins/texteditor/snippets/reuse.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippet.cpp b/src/plugins/texteditor/snippets/snippet.cpp index 45bf15fe95e..d7f8a4296a2 100644 --- a/src/plugins/texteditor/snippets/snippet.cpp +++ b/src/plugins/texteditor/snippets/snippet.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippet.h b/src/plugins/texteditor/snippets/snippet.h index 8163f31a47a..33464d5a95f 100644 --- a/src/plugins/texteditor/snippets/snippet.h +++ b/src/plugins/texteditor/snippets/snippet.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippetassistcollector.cpp b/src/plugins/texteditor/snippets/snippetassistcollector.cpp index f4ffeefb88b..c8d02c297b8 100644 --- a/src/plugins/texteditor/snippets/snippetassistcollector.cpp +++ b/src/plugins/texteditor/snippets/snippetassistcollector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippetassistcollector.h b/src/plugins/texteditor/snippets/snippetassistcollector.h index c96886fd406..4622cb38303 100644 --- a/src/plugins/texteditor/snippets/snippetassistcollector.h +++ b/src/plugins/texteditor/snippets/snippetassistcollector.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippeteditor.cpp b/src/plugins/texteditor/snippets/snippeteditor.cpp index a179942783f..ed815d969d8 100644 --- a/src/plugins/texteditor/snippets/snippeteditor.cpp +++ b/src/plugins/texteditor/snippets/snippeteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippeteditor.h b/src/plugins/texteditor/snippets/snippeteditor.h index 6e4e49f1cea..33229ef3d07 100644 --- a/src/plugins/texteditor/snippets/snippeteditor.h +++ b/src/plugins/texteditor/snippets/snippeteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippetscollection.cpp b/src/plugins/texteditor/snippets/snippetscollection.cpp index aebb2aaf644..3fea0ba23ae 100644 --- a/src/plugins/texteditor/snippets/snippetscollection.cpp +++ b/src/plugins/texteditor/snippets/snippetscollection.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippetscollection.h b/src/plugins/texteditor/snippets/snippetscollection.h index 7db8a09e99a..42b6cf0058a 100644 --- a/src/plugins/texteditor/snippets/snippetscollection.h +++ b/src/plugins/texteditor/snippets/snippetscollection.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippetssettings.cpp b/src/plugins/texteditor/snippets/snippetssettings.cpp index b7dfa9eb5f1..6ac91e85c73 100644 --- a/src/plugins/texteditor/snippets/snippetssettings.cpp +++ b/src/plugins/texteditor/snippets/snippetssettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippetssettings.h b/src/plugins/texteditor/snippets/snippetssettings.h index b7ed9566243..1ab384c6c31 100644 --- a/src/plugins/texteditor/snippets/snippetssettings.h +++ b/src/plugins/texteditor/snippets/snippetssettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippetssettingspage.cpp b/src/plugins/texteditor/snippets/snippetssettingspage.cpp index c59d510f325..7062880ccfc 100644 --- a/src/plugins/texteditor/snippets/snippetssettingspage.cpp +++ b/src/plugins/texteditor/snippets/snippetssettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/snippets/snippetssettingspage.h b/src/plugins/texteditor/snippets/snippetssettingspage.h index 04737b71d3b..32e03e5cee2 100644 --- a/src/plugins/texteditor/snippets/snippetssettingspage.h +++ b/src/plugins/texteditor/snippets/snippetssettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/storagesettings.cpp b/src/plugins/texteditor/storagesettings.cpp index 0616d805285..c3b14ab8a79 100644 --- a/src/plugins/texteditor/storagesettings.cpp +++ b/src/plugins/texteditor/storagesettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/storagesettings.h b/src/plugins/texteditor/storagesettings.h index 17df4f23895..ada9b024fe3 100644 --- a/src/plugins/texteditor/storagesettings.h +++ b/src/plugins/texteditor/storagesettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/syntaxhighlighter.cpp b/src/plugins/texteditor/syntaxhighlighter.cpp index 8066f8d7f7c..0f54d2f01c4 100644 --- a/src/plugins/texteditor/syntaxhighlighter.cpp +++ b/src/plugins/texteditor/syntaxhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/syntaxhighlighter.h b/src/plugins/texteditor/syntaxhighlighter.h index e66fa86f729..4f7292d13ec 100644 --- a/src/plugins/texteditor/syntaxhighlighter.h +++ b/src/plugins/texteditor/syntaxhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/tabsettings.cpp b/src/plugins/texteditor/tabsettings.cpp index c134fdb2bc8..be09d8cbdeb 100644 --- a/src/plugins/texteditor/tabsettings.cpp +++ b/src/plugins/texteditor/tabsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/tabsettings.h b/src/plugins/texteditor/tabsettings.h index 644937bf306..c8836a25ef3 100644 --- a/src/plugins/texteditor/tabsettings.h +++ b/src/plugins/texteditor/tabsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/tabsettingswidget.cpp b/src/plugins/texteditor/tabsettingswidget.cpp index 2ce5756437e..4b37a56a011 100644 --- a/src/plugins/texteditor/tabsettingswidget.cpp +++ b/src/plugins/texteditor/tabsettingswidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/tabsettingswidget.h b/src/plugins/texteditor/tabsettingswidget.h index 802a7933ca9..b3ebf43255c 100644 --- a/src/plugins/texteditor/tabsettingswidget.h +++ b/src/plugins/texteditor/tabsettingswidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditor_global.h b/src/plugins/texteditor/texteditor_global.h index 0cc0964661e..f0843e8db76 100644 --- a/src/plugins/texteditor/texteditor_global.h +++ b/src/plugins/texteditor/texteditor_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditoractionhandler.cpp b/src/plugins/texteditor/texteditoractionhandler.cpp index 70d6ff508c2..a8a95378f33 100644 --- a/src/plugins/texteditor/texteditoractionhandler.cpp +++ b/src/plugins/texteditor/texteditoractionhandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditoractionhandler.h b/src/plugins/texteditor/texteditoractionhandler.h index a09e6a3a84e..d365d3247c5 100644 --- a/src/plugins/texteditor/texteditoractionhandler.h +++ b/src/plugins/texteditor/texteditoractionhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditorconstants.cpp b/src/plugins/texteditor/texteditorconstants.cpp index 9444a7d098b..cd2e81aa0a3 100644 --- a/src/plugins/texteditor/texteditorconstants.cpp +++ b/src/plugins/texteditor/texteditorconstants.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditorconstants.h b/src/plugins/texteditor/texteditorconstants.h index 99370a26a5d..e927ae81910 100644 --- a/src/plugins/texteditor/texteditorconstants.h +++ b/src/plugins/texteditor/texteditorconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditoroptionspage.cpp b/src/plugins/texteditor/texteditoroptionspage.cpp index 3aa3dd43fdd..4a1bd5ac2db 100644 --- a/src/plugins/texteditor/texteditoroptionspage.cpp +++ b/src/plugins/texteditor/texteditoroptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditoroptionspage.h b/src/plugins/texteditor/texteditoroptionspage.h index 87a2c285193..fa7aa2fb0cc 100644 --- a/src/plugins/texteditor/texteditoroptionspage.h +++ b/src/plugins/texteditor/texteditoroptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditoroverlay.cpp b/src/plugins/texteditor/texteditoroverlay.cpp index 102e917c9c0..4bfbaf97741 100644 --- a/src/plugins/texteditor/texteditoroverlay.cpp +++ b/src/plugins/texteditor/texteditoroverlay.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditoroverlay.h b/src/plugins/texteditor/texteditoroverlay.h index 0b9391faf0e..7115d4498d0 100644 --- a/src/plugins/texteditor/texteditoroverlay.h +++ b/src/plugins/texteditor/texteditoroverlay.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditorplugin.cpp b/src/plugins/texteditor/texteditorplugin.cpp index a61e82f02a7..53495e78820 100644 --- a/src/plugins/texteditor/texteditorplugin.cpp +++ b/src/plugins/texteditor/texteditorplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditorplugin.h b/src/plugins/texteditor/texteditorplugin.h index 3d19745a645..1dd5ea71233 100644 --- a/src/plugins/texteditor/texteditorplugin.h +++ b/src/plugins/texteditor/texteditorplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditorsettings.cpp b/src/plugins/texteditor/texteditorsettings.cpp index 3a98d51e607..1b067cbb8ba 100644 --- a/src/plugins/texteditor/texteditorsettings.cpp +++ b/src/plugins/texteditor/texteditorsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/texteditorsettings.h b/src/plugins/texteditor/texteditorsettings.h index 5a170247a7f..7758e35e47b 100644 --- a/src/plugins/texteditor/texteditorsettings.h +++ b/src/plugins/texteditor/texteditorsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/textfilewizard.cpp b/src/plugins/texteditor/textfilewizard.cpp index 737c761d254..c460b97190d 100644 --- a/src/plugins/texteditor/textfilewizard.cpp +++ b/src/plugins/texteditor/textfilewizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/textfilewizard.h b/src/plugins/texteditor/textfilewizard.h index 753061f0e4c..f4f72e5ec6b 100644 --- a/src/plugins/texteditor/textfilewizard.h +++ b/src/plugins/texteditor/textfilewizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/typingsettings.cpp b/src/plugins/texteditor/typingsettings.cpp index 6653ce35c5a..4b7ddcfb826 100644 --- a/src/plugins/texteditor/typingsettings.cpp +++ b/src/plugins/texteditor/typingsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/texteditor/typingsettings.h b/src/plugins/texteditor/typingsettings.h index 10c51781889..c79cb1e169e 100644 --- a/src/plugins/texteditor/typingsettings.h +++ b/src/plugins/texteditor/typingsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/Todo.pluginspec.in b/src/plugins/todo/Todo.pluginspec.in index a24d2062d39..32391347d0e 100644 --- a/src/plugins/todo/Todo.pluginspec.in +++ b/src/plugins/todo/Todo.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Todo\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\" experimental=\"true\"> <vendor>Dmitry Savchenko</vendor> - <copyright>(C) 2013 Dmitry Savchenko, (C) 2013 Vasiliy Sorokin</copyright> + <copyright>(C) 2014 Dmitry Savchenko, (C) 2014 Vasiliy Sorokin</copyright> <license> Commercial Usage diff --git a/src/plugins/todo/constants.h b/src/plugins/todo/constants.h index 9534ac2b29f..dd242967cb6 100644 --- a/src/plugins/todo/constants.h +++ b/src/plugins/todo/constants.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/cpptodoitemsscanner.cpp b/src/plugins/todo/cpptodoitemsscanner.cpp index 14124c16125..d4282efca2f 100644 --- a/src/plugins/todo/cpptodoitemsscanner.cpp +++ b/src/plugins/todo/cpptodoitemsscanner.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/cpptodoitemsscanner.h b/src/plugins/todo/cpptodoitemsscanner.h index 8b74469805d..aba7414b758 100644 --- a/src/plugins/todo/cpptodoitemsscanner.h +++ b/src/plugins/todo/cpptodoitemsscanner.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/keyword.cpp b/src/plugins/todo/keyword.cpp index 598a4fda57f..7dea0c64de2 100644 --- a/src/plugins/todo/keyword.cpp +++ b/src/plugins/todo/keyword.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/keyword.h b/src/plugins/todo/keyword.h index f02208d29fa..bd0b23e2b9a 100644 --- a/src/plugins/todo/keyword.h +++ b/src/plugins/todo/keyword.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/keyworddialog.cpp b/src/plugins/todo/keyworddialog.cpp index 2f8c367408e..bd346296598 100644 --- a/src/plugins/todo/keyworddialog.cpp +++ b/src/plugins/todo/keyworddialog.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/keyworddialog.h b/src/plugins/todo/keyworddialog.h index 3d73af1143a..a644661086a 100644 --- a/src/plugins/todo/keyworddialog.h +++ b/src/plugins/todo/keyworddialog.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/lineparser.cpp b/src/plugins/todo/lineparser.cpp index 6dc90af7d5f..f0832664599 100644 --- a/src/plugins/todo/lineparser.cpp +++ b/src/plugins/todo/lineparser.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/lineparser.h b/src/plugins/todo/lineparser.h index bbe27cf5417..abde4cd0c35 100644 --- a/src/plugins/todo/lineparser.h +++ b/src/plugins/todo/lineparser.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/optionsdialog.cpp b/src/plugins/todo/optionsdialog.cpp index a2be2067eac..3db2ee7296b 100644 --- a/src/plugins/todo/optionsdialog.cpp +++ b/src/plugins/todo/optionsdialog.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/optionsdialog.h b/src/plugins/todo/optionsdialog.h index d070ec0c703..d271f71ed10 100644 --- a/src/plugins/todo/optionsdialog.h +++ b/src/plugins/todo/optionsdialog.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/optionspage.cpp b/src/plugins/todo/optionspage.cpp index 5200853756d..37248955240 100644 --- a/src/plugins/todo/optionspage.cpp +++ b/src/plugins/todo/optionspage.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/optionspage.h b/src/plugins/todo/optionspage.h index 601a15642ad..bec23546204 100644 --- a/src/plugins/todo/optionspage.h +++ b/src/plugins/todo/optionspage.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/qmljstodoitemsscanner.cpp b/src/plugins/todo/qmljstodoitemsscanner.cpp index 8276207323a..fd35fd51e60 100644 --- a/src/plugins/todo/qmljstodoitemsscanner.cpp +++ b/src/plugins/todo/qmljstodoitemsscanner.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/qmljstodoitemsscanner.h b/src/plugins/todo/qmljstodoitemsscanner.h index d06d263e93f..4980b3c59ff 100644 --- a/src/plugins/todo/qmljstodoitemsscanner.h +++ b/src/plugins/todo/qmljstodoitemsscanner.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/settings.cpp b/src/plugins/todo/settings.cpp index 7fb24ce67af..5b5026c7cc5 100644 --- a/src/plugins/todo/settings.cpp +++ b/src/plugins/todo/settings.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/settings.h b/src/plugins/todo/settings.h index dff535e79b1..7ddab404cf7 100644 --- a/src/plugins/todo/settings.h +++ b/src/plugins/todo/settings.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todoitem.h b/src/plugins/todo/todoitem.h index 5d6372a4deb..2049079baa7 100644 --- a/src/plugins/todo/todoitem.h +++ b/src/plugins/todo/todoitem.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todoitemsmodel.cpp b/src/plugins/todo/todoitemsmodel.cpp index 5c72a8219d3..606d9635b30 100644 --- a/src/plugins/todo/todoitemsmodel.cpp +++ b/src/plugins/todo/todoitemsmodel.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todoitemsmodel.h b/src/plugins/todo/todoitemsmodel.h index c25652e0db7..f56f660821e 100644 --- a/src/plugins/todo/todoitemsmodel.h +++ b/src/plugins/todo/todoitemsmodel.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todoitemsprovider.cpp b/src/plugins/todo/todoitemsprovider.cpp index d1fcf4dc41b..e2d260b8a19 100644 --- a/src/plugins/todo/todoitemsprovider.cpp +++ b/src/plugins/todo/todoitemsprovider.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todoitemsprovider.h b/src/plugins/todo/todoitemsprovider.h index 31207b91fc7..4821e61a535 100644 --- a/src/plugins/todo/todoitemsprovider.h +++ b/src/plugins/todo/todoitemsprovider.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todoitemsscanner.cpp b/src/plugins/todo/todoitemsscanner.cpp index d4fe381c439..acfa6afe948 100644 --- a/src/plugins/todo/todoitemsscanner.cpp +++ b/src/plugins/todo/todoitemsscanner.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todoitemsscanner.h b/src/plugins/todo/todoitemsscanner.h index cc2a39cf4d1..c507dca287f 100644 --- a/src/plugins/todo/todoitemsscanner.h +++ b/src/plugins/todo/todoitemsscanner.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todooutputpane.cpp b/src/plugins/todo/todooutputpane.cpp index da5bb925e1a..2e90342145f 100755 --- a/src/plugins/todo/todooutputpane.cpp +++ b/src/plugins/todo/todooutputpane.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todooutputpane.h b/src/plugins/todo/todooutputpane.h index 091cd5fb34b..1a51c99a6b6 100755 --- a/src/plugins/todo/todooutputpane.h +++ b/src/plugins/todo/todooutputpane.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todooutputtreeview.cpp b/src/plugins/todo/todooutputtreeview.cpp index 1475284b3d0..86cbe494295 100644 --- a/src/plugins/todo/todooutputtreeview.cpp +++ b/src/plugins/todo/todooutputtreeview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todooutputtreeview.h b/src/plugins/todo/todooutputtreeview.h index 123cd967ad3..4b4d9a40f59 100644 --- a/src/plugins/todo/todooutputtreeview.h +++ b/src/plugins/todo/todooutputtreeview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todoplugin.cpp b/src/plugins/todo/todoplugin.cpp index d19f8d3c90c..a495dc09ee9 100755 --- a/src/plugins/todo/todoplugin.cpp +++ b/src/plugins/todo/todoplugin.cpp @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/todo/todoplugin.h b/src/plugins/todo/todoplugin.h index df57bad7ae8..a959e18455e 100755 --- a/src/plugins/todo/todoplugin.h +++ b/src/plugins/todo/todoplugin.h @@ -1,7 +1,7 @@ /************************************************************************** ** -** Copyright (c) 2013 Dmitry Savchenko -** Copyright (c) 2013 Vasiliy Sorokin +** Copyright (c) 2014 Dmitry Savchenko +** Copyright (c) 2014 Vasiliy Sorokin ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/updateinfo/UpdateInfo.pluginspec.in b/src/plugins/updateinfo/UpdateInfo.pluginspec.in index 862c62ceb3f..8e51b9f75fd 100644 --- a/src/plugins/updateinfo/UpdateInfo.pluginspec.in +++ b/src/plugins/updateinfo/UpdateInfo.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"UpdateInfo\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\" experimental=\"$$UPDATEINFO_EXPERIMENTAL_STR\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/updateinfo/settingspage.cpp b/src/plugins/updateinfo/settingspage.cpp index 2125baad617..80ad3c95008 100644 --- a/src/plugins/updateinfo/settingspage.cpp +++ b/src/plugins/updateinfo/settingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/updateinfo/settingspage.h b/src/plugins/updateinfo/settingspage.h index 9806eafb431..4c7c65b02a6 100644 --- a/src/plugins/updateinfo/settingspage.h +++ b/src/plugins/updateinfo/settingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/updateinfo/updateinfobutton.cpp b/src/plugins/updateinfo/updateinfobutton.cpp index 955d0da0ca3..9b875361c66 100644 --- a/src/plugins/updateinfo/updateinfobutton.cpp +++ b/src/plugins/updateinfo/updateinfobutton.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/updateinfo/updateinfobutton.h b/src/plugins/updateinfo/updateinfobutton.h index 83a9333e2d7..f6e51fc71c9 100644 --- a/src/plugins/updateinfo/updateinfobutton.h +++ b/src/plugins/updateinfo/updateinfobutton.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/updateinfo/updateinfoplugin.cpp b/src/plugins/updateinfo/updateinfoplugin.cpp index 2882cf8bb06..a586f423935 100644 --- a/src/plugins/updateinfo/updateinfoplugin.cpp +++ b/src/plugins/updateinfo/updateinfoplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/updateinfo/updateinfoplugin.h b/src/plugins/updateinfo/updateinfoplugin.h index 84081d1d3a4..ce26deacbe7 100644 --- a/src/plugins/updateinfo/updateinfoplugin.h +++ b/src/plugins/updateinfo/updateinfoplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/Valgrind.pluginspec.in b/src/plugins/valgrind/Valgrind.pluginspec.in index 6fc15f3832e..c494295dd65 100644 --- a/src/plugins/valgrind/Valgrind.pluginspec.in +++ b/src/plugins/valgrind/Valgrind.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Valgrind\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/valgrind/callgrind/callgrindabstractmodel.h b/src/plugins/valgrind/callgrind/callgrindabstractmodel.h index 7a65fa3797f..8840afedf95 100644 --- a/src/plugins/valgrind/callgrind/callgrindabstractmodel.h +++ b/src/plugins/valgrind/callgrind/callgrindabstractmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindcallmodel.cpp b/src/plugins/valgrind/callgrind/callgrindcallmodel.cpp index 641eb9bd855..9e8155d44e9 100644 --- a/src/plugins/valgrind/callgrind/callgrindcallmodel.cpp +++ b/src/plugins/valgrind/callgrind/callgrindcallmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindcallmodel.h b/src/plugins/valgrind/callgrind/callgrindcallmodel.h index d3084f9d0ab..75b285f6147 100644 --- a/src/plugins/valgrind/callgrind/callgrindcallmodel.h +++ b/src/plugins/valgrind/callgrind/callgrindcallmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindcontroller.cpp b/src/plugins/valgrind/callgrind/callgrindcontroller.cpp index 095de6eca43..5a4e4675d41 100644 --- a/src/plugins/valgrind/callgrind/callgrindcontroller.cpp +++ b/src/plugins/valgrind/callgrind/callgrindcontroller.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindcontroller.h b/src/plugins/valgrind/callgrind/callgrindcontroller.h index 3dcb1f208dc..91539f2d04e 100644 --- a/src/plugins/valgrind/callgrind/callgrindcontroller.h +++ b/src/plugins/valgrind/callgrind/callgrindcontroller.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindcostitem.cpp b/src/plugins/valgrind/callgrind/callgrindcostitem.cpp index 77e380cf687..ed1c9976c89 100644 --- a/src/plugins/valgrind/callgrind/callgrindcostitem.cpp +++ b/src/plugins/valgrind/callgrind/callgrindcostitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindcostitem.h b/src/plugins/valgrind/callgrind/callgrindcostitem.h index 9b990498088..9c64a5d67b8 100644 --- a/src/plugins/valgrind/callgrind/callgrindcostitem.h +++ b/src/plugins/valgrind/callgrind/callgrindcostitem.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindcycledetection.cpp b/src/plugins/valgrind/callgrind/callgrindcycledetection.cpp index 3ebd6aefa13..94f6b6d09fe 100644 --- a/src/plugins/valgrind/callgrind/callgrindcycledetection.cpp +++ b/src/plugins/valgrind/callgrind/callgrindcycledetection.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindcycledetection.h b/src/plugins/valgrind/callgrind/callgrindcycledetection.h index b3cc97dd6b9..e255447cbf8 100644 --- a/src/plugins/valgrind/callgrind/callgrindcycledetection.h +++ b/src/plugins/valgrind/callgrind/callgrindcycledetection.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp b/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp index 66f52d06dad..42152eecc87 100644 --- a/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp +++ b/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrinddatamodel.h b/src/plugins/valgrind/callgrind/callgrinddatamodel.h index b2a0de9f9ba..ed30d6129cc 100644 --- a/src/plugins/valgrind/callgrind/callgrinddatamodel.h +++ b/src/plugins/valgrind/callgrind/callgrinddatamodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindfunction.cpp b/src/plugins/valgrind/callgrind/callgrindfunction.cpp index ba2bcbac9d1..8ef76344ad1 100644 --- a/src/plugins/valgrind/callgrind/callgrindfunction.cpp +++ b/src/plugins/valgrind/callgrind/callgrindfunction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindfunction.h b/src/plugins/valgrind/callgrind/callgrindfunction.h index 67a5b8ea20a..9e3ad5cdc5d 100644 --- a/src/plugins/valgrind/callgrind/callgrindfunction.h +++ b/src/plugins/valgrind/callgrind/callgrindfunction.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindfunction_p.h b/src/plugins/valgrind/callgrind/callgrindfunction_p.h index 91422bd6cc1..ebd9d0455e1 100644 --- a/src/plugins/valgrind/callgrind/callgrindfunction_p.h +++ b/src/plugins/valgrind/callgrind/callgrindfunction_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindfunctioncall.cpp b/src/plugins/valgrind/callgrind/callgrindfunctioncall.cpp index 49d4eb0dc90..33593546250 100644 --- a/src/plugins/valgrind/callgrind/callgrindfunctioncall.cpp +++ b/src/plugins/valgrind/callgrind/callgrindfunctioncall.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindfunctioncall.h b/src/plugins/valgrind/callgrind/callgrindfunctioncall.h index 1fc64e6fb71..bb518001438 100644 --- a/src/plugins/valgrind/callgrind/callgrindfunctioncall.h +++ b/src/plugins/valgrind/callgrind/callgrindfunctioncall.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindfunctioncycle.cpp b/src/plugins/valgrind/callgrind/callgrindfunctioncycle.cpp index 8644f188faa..72db30dd2c6 100644 --- a/src/plugins/valgrind/callgrind/callgrindfunctioncycle.cpp +++ b/src/plugins/valgrind/callgrind/callgrindfunctioncycle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindfunctioncycle.h b/src/plugins/valgrind/callgrind/callgrindfunctioncycle.h index e9cd9b301de..39b92e5ae78 100644 --- a/src/plugins/valgrind/callgrind/callgrindfunctioncycle.h +++ b/src/plugins/valgrind/callgrind/callgrindfunctioncycle.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindparsedata.cpp b/src/plugins/valgrind/callgrind/callgrindparsedata.cpp index f7c69dcf647..58be435cf72 100644 --- a/src/plugins/valgrind/callgrind/callgrindparsedata.cpp +++ b/src/plugins/valgrind/callgrind/callgrindparsedata.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindparsedata.h b/src/plugins/valgrind/callgrind/callgrindparsedata.h index 932a3f9c925..4090505ae16 100644 --- a/src/plugins/valgrind/callgrind/callgrindparsedata.h +++ b/src/plugins/valgrind/callgrind/callgrindparsedata.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindparser.cpp b/src/plugins/valgrind/callgrind/callgrindparser.cpp index ff2125c4719..a8d54c1cca4 100644 --- a/src/plugins/valgrind/callgrind/callgrindparser.cpp +++ b/src/plugins/valgrind/callgrind/callgrindparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindparser.h b/src/plugins/valgrind/callgrind/callgrindparser.h index 275eaa2481d..dd9d29307a3 100644 --- a/src/plugins/valgrind/callgrind/callgrindparser.h +++ b/src/plugins/valgrind/callgrind/callgrindparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindproxymodel.cpp b/src/plugins/valgrind/callgrind/callgrindproxymodel.cpp index 85b46f59be6..dd92bc44fb4 100644 --- a/src/plugins/valgrind/callgrind/callgrindproxymodel.cpp +++ b/src/plugins/valgrind/callgrind/callgrindproxymodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindproxymodel.h b/src/plugins/valgrind/callgrind/callgrindproxymodel.h index 1dd2b6ced33..7c932ad168e 100644 --- a/src/plugins/valgrind/callgrind/callgrindproxymodel.h +++ b/src/plugins/valgrind/callgrind/callgrindproxymodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindrunner.cpp b/src/plugins/valgrind/callgrind/callgrindrunner.cpp index b5e48228683..6b42097d85b 100644 --- a/src/plugins/valgrind/callgrind/callgrindrunner.cpp +++ b/src/plugins/valgrind/callgrind/callgrindrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindrunner.h b/src/plugins/valgrind/callgrind/callgrindrunner.h index 0479cf1964e..979a2630bd8 100644 --- a/src/plugins/valgrind/callgrind/callgrindrunner.h +++ b/src/plugins/valgrind/callgrind/callgrindrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindstackbrowser.cpp b/src/plugins/valgrind/callgrind/callgrindstackbrowser.cpp index f517ab52d67..23762492d76 100644 --- a/src/plugins/valgrind/callgrind/callgrindstackbrowser.cpp +++ b/src/plugins/valgrind/callgrind/callgrindstackbrowser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrind/callgrindstackbrowser.h b/src/plugins/valgrind/callgrind/callgrindstackbrowser.h index 1f11a0fe4d1..0aa7e78784c 100644 --- a/src/plugins/valgrind/callgrind/callgrindstackbrowser.h +++ b/src/plugins/valgrind/callgrind/callgrindstackbrowser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindcostdelegate.cpp b/src/plugins/valgrind/callgrindcostdelegate.cpp index b967f18f506..82f8828d665 100644 --- a/src/plugins/valgrind/callgrindcostdelegate.cpp +++ b/src/plugins/valgrind/callgrindcostdelegate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindcostdelegate.h b/src/plugins/valgrind/callgrindcostdelegate.h index c1252eddee6..1fdfdbe4f51 100644 --- a/src/plugins/valgrind/callgrindcostdelegate.h +++ b/src/plugins/valgrind/callgrindcostdelegate.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindcostview.cpp b/src/plugins/valgrind/callgrindcostview.cpp index 0896f9f8ea6..76be1749e84 100644 --- a/src/plugins/valgrind/callgrindcostview.cpp +++ b/src/plugins/valgrind/callgrindcostview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindcostview.h b/src/plugins/valgrind/callgrindcostview.h index 4988366e6a6..8da909d110d 100644 --- a/src/plugins/valgrind/callgrindcostview.h +++ b/src/plugins/valgrind/callgrindcostview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindengine.cpp b/src/plugins/valgrind/callgrindengine.cpp index 574f286370a..08047f815bd 100644 --- a/src/plugins/valgrind/callgrindengine.cpp +++ b/src/plugins/valgrind/callgrindengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindengine.h b/src/plugins/valgrind/callgrindengine.h index ef77d575c9b..ab53e5f1b52 100644 --- a/src/plugins/valgrind/callgrindengine.h +++ b/src/plugins/valgrind/callgrindengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindhelper.cpp b/src/plugins/valgrind/callgrindhelper.cpp index ab6651ee660..3f758964ebd 100644 --- a/src/plugins/valgrind/callgrindhelper.cpp +++ b/src/plugins/valgrind/callgrindhelper.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindhelper.h b/src/plugins/valgrind/callgrindhelper.h index 04c926e89f8..fbce1bce264 100644 --- a/src/plugins/valgrind/callgrindhelper.h +++ b/src/plugins/valgrind/callgrindhelper.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindnamedelegate.cpp b/src/plugins/valgrind/callgrindnamedelegate.cpp index dd1aaaa2c57..1dc56bb4137 100644 --- a/src/plugins/valgrind/callgrindnamedelegate.cpp +++ b/src/plugins/valgrind/callgrindnamedelegate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindnamedelegate.h b/src/plugins/valgrind/callgrindnamedelegate.h index 0577db3084c..a5a5e955d41 100644 --- a/src/plugins/valgrind/callgrindnamedelegate.h +++ b/src/plugins/valgrind/callgrindnamedelegate.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindtextmark.cpp b/src/plugins/valgrind/callgrindtextmark.cpp index 5258330fce9..8470d50327c 100644 --- a/src/plugins/valgrind/callgrindtextmark.cpp +++ b/src/plugins/valgrind/callgrindtextmark.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindtextmark.h b/src/plugins/valgrind/callgrindtextmark.h index bf852d6e17d..0107bebee4f 100644 --- a/src/plugins/valgrind/callgrindtextmark.h +++ b/src/plugins/valgrind/callgrindtextmark.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindtool.cpp b/src/plugins/valgrind/callgrindtool.cpp index d39eb819749..7dd2c4a5456 100644 --- a/src/plugins/valgrind/callgrindtool.cpp +++ b/src/plugins/valgrind/callgrindtool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindtool.h b/src/plugins/valgrind/callgrindtool.h index 68a6c54e86d..8aa5b85972b 100644 --- a/src/plugins/valgrind/callgrindtool.h +++ b/src/plugins/valgrind/callgrindtool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindvisualisation.cpp b/src/plugins/valgrind/callgrindvisualisation.cpp index b70eee9528f..f3c0923afeb 100644 --- a/src/plugins/valgrind/callgrindvisualisation.cpp +++ b/src/plugins/valgrind/callgrindvisualisation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/callgrindvisualisation.h b/src/plugins/valgrind/callgrindvisualisation.h index ae01d488524..d501a6cd454 100644 --- a/src/plugins/valgrind/callgrindvisualisation.h +++ b/src/plugins/valgrind/callgrindvisualisation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/memcheck/memcheckrunner.cpp b/src/plugins/valgrind/memcheck/memcheckrunner.cpp index 91033203f6d..e0ab359ce94 100644 --- a/src/plugins/valgrind/memcheck/memcheckrunner.cpp +++ b/src/plugins/valgrind/memcheck/memcheckrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/memcheck/memcheckrunner.h b/src/plugins/valgrind/memcheck/memcheckrunner.h index 251be84c400..cbf4998af48 100644 --- a/src/plugins/valgrind/memcheck/memcheckrunner.h +++ b/src/plugins/valgrind/memcheck/memcheckrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/memcheckengine.cpp b/src/plugins/valgrind/memcheckengine.cpp index b416dddc0ee..2d89f42a7c8 100644 --- a/src/plugins/valgrind/memcheckengine.cpp +++ b/src/plugins/valgrind/memcheckengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/valgrind/memcheckengine.h b/src/plugins/valgrind/memcheckengine.h index f8a2387b029..b9f0b279755 100644 --- a/src/plugins/valgrind/memcheckengine.h +++ b/src/plugins/valgrind/memcheckengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/valgrind/memcheckerrorview.cpp b/src/plugins/valgrind/memcheckerrorview.cpp index 331a116f2ba..db305eaea34 100644 --- a/src/plugins/valgrind/memcheckerrorview.cpp +++ b/src/plugins/valgrind/memcheckerrorview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** diff --git a/src/plugins/valgrind/memcheckerrorview.h b/src/plugins/valgrind/memcheckerrorview.h index f22a6e5e90e..2525848d570 100644 --- a/src/plugins/valgrind/memcheckerrorview.h +++ b/src/plugins/valgrind/memcheckerrorview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** diff --git a/src/plugins/valgrind/memchecktool.cpp b/src/plugins/valgrind/memchecktool.cpp index 2ed52c0745b..292157a1292 100644 --- a/src/plugins/valgrind/memchecktool.cpp +++ b/src/plugins/valgrind/memchecktool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/valgrind/memchecktool.h b/src/plugins/valgrind/memchecktool.h index 93d913477af..615e9b95155 100644 --- a/src/plugins/valgrind/memchecktool.h +++ b/src/plugins/valgrind/memchecktool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/valgrind/suppressiondialog.cpp b/src/plugins/valgrind/suppressiondialog.cpp index cd19cd6e336..14fabc5f0ce 100644 --- a/src/plugins/valgrind/suppressiondialog.cpp +++ b/src/plugins/valgrind/suppressiondialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/suppressiondialog.h b/src/plugins/valgrind/suppressiondialog.h index 5c0c25535d3..abe1abecf76 100644 --- a/src/plugins/valgrind/suppressiondialog.h +++ b/src/plugins/valgrind/suppressiondialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindconfigwidget.cpp b/src/plugins/valgrind/valgrindconfigwidget.cpp index d4f3a99dcd8..56b391b1c8e 100644 --- a/src/plugins/valgrind/valgrindconfigwidget.cpp +++ b/src/plugins/valgrind/valgrindconfigwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindconfigwidget.h b/src/plugins/valgrind/valgrindconfigwidget.h index 216d4c061d0..c897dd21e74 100644 --- a/src/plugins/valgrind/valgrindconfigwidget.h +++ b/src/plugins/valgrind/valgrindconfigwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindengine.cpp b/src/plugins/valgrind/valgrindengine.cpp index 7f5cb77edf0..a5e8336f97c 100644 --- a/src/plugins/valgrind/valgrindengine.cpp +++ b/src/plugins/valgrind/valgrindengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindengine.h b/src/plugins/valgrind/valgrindengine.h index 335b5879477..e66f3ed5f44 100644 --- a/src/plugins/valgrind/valgrindengine.h +++ b/src/plugins/valgrind/valgrindengine.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindplugin.cpp b/src/plugins/valgrind/valgrindplugin.cpp index 3cef9593ea4..9ec9523048a 100644 --- a/src/plugins/valgrind/valgrindplugin.cpp +++ b/src/plugins/valgrind/valgrindplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindplugin.h b/src/plugins/valgrind/valgrindplugin.h index 0ee4138c0a2..5878b59db17 100644 --- a/src/plugins/valgrind/valgrindplugin.h +++ b/src/plugins/valgrind/valgrindplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindprocess.cpp b/src/plugins/valgrind/valgrindprocess.cpp index d112044e6ce..cb0e9e62349 100644 --- a/src/plugins/valgrind/valgrindprocess.cpp +++ b/src/plugins/valgrind/valgrindprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindprocess.h b/src/plugins/valgrind/valgrindprocess.h index 319c4fa14a6..baec1b9d230 100644 --- a/src/plugins/valgrind/valgrindprocess.h +++ b/src/plugins/valgrind/valgrindprocess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindruncontrolfactory.cpp b/src/plugins/valgrind/valgrindruncontrolfactory.cpp index fc2335bb0fe..fe4f62b573d 100644 --- a/src/plugins/valgrind/valgrindruncontrolfactory.cpp +++ b/src/plugins/valgrind/valgrindruncontrolfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Kläralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +** Copyright (C) 2014 Kläralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/valgrindruncontrolfactory.h b/src/plugins/valgrind/valgrindruncontrolfactory.h index 90b67290e46..dfdb3cbad32 100644 --- a/src/plugins/valgrind/valgrindruncontrolfactory.h +++ b/src/plugins/valgrind/valgrindruncontrolfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Kläralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com +** Copyright (C) 2014 Kläralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/valgrindrunner.cpp b/src/plugins/valgrind/valgrindrunner.cpp index dfc63924459..594e669b7f4 100644 --- a/src/plugins/valgrind/valgrindrunner.cpp +++ b/src/plugins/valgrind/valgrindrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindrunner.h b/src/plugins/valgrind/valgrindrunner.h index 3172784b822..48ce4cfa6c9 100644 --- a/src/plugins/valgrind/valgrindrunner.h +++ b/src/plugins/valgrind/valgrindrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindsettings.cpp b/src/plugins/valgrind/valgrindsettings.cpp index 8a33ce1b264..d65cfd42bd7 100644 --- a/src/plugins/valgrind/valgrindsettings.cpp +++ b/src/plugins/valgrind/valgrindsettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindsettings.h b/src/plugins/valgrind/valgrindsettings.h index df03c173f5c..5a68507d785 100644 --- a/src/plugins/valgrind/valgrindsettings.h +++ b/src/plugins/valgrind/valgrindsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindtool.cpp b/src/plugins/valgrind/valgrindtool.cpp index 83c60b5b3d8..8b0c6f5e6af 100644 --- a/src/plugins/valgrind/valgrindtool.cpp +++ b/src/plugins/valgrind/valgrindtool.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/valgrind/valgrindtool.h b/src/plugins/valgrind/valgrindtool.h index 24aacfb72f2..f4c33bd28eb 100644 --- a/src/plugins/valgrind/valgrindtool.h +++ b/src/plugins/valgrind/valgrindtool.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com) ** diff --git a/src/plugins/valgrind/workarounds.cpp b/src/plugins/valgrind/workarounds.cpp index 785fdcbf470..6d332de091e 100644 --- a/src/plugins/valgrind/workarounds.cpp +++ b/src/plugins/valgrind/workarounds.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/workarounds.h b/src/plugins/valgrind/workarounds.h index 457e5944752..805ec293fd0 100644 --- a/src/plugins/valgrind/workarounds.h +++ b/src/plugins/valgrind/workarounds.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/valgrind/xmlprotocol/announcethread.cpp b/src/plugins/valgrind/xmlprotocol/announcethread.cpp index d6dc8b63697..09cf0a9d385 100644 --- a/src/plugins/valgrind/xmlprotocol/announcethread.cpp +++ b/src/plugins/valgrind/xmlprotocol/announcethread.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/announcethread.h b/src/plugins/valgrind/xmlprotocol/announcethread.h index 4292e3c5443..5b056dcc618 100644 --- a/src/plugins/valgrind/xmlprotocol/announcethread.h +++ b/src/plugins/valgrind/xmlprotocol/announcethread.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/error.cpp b/src/plugins/valgrind/xmlprotocol/error.cpp index f7c8cbca35d..c5da6e4c50a 100644 --- a/src/plugins/valgrind/xmlprotocol/error.cpp +++ b/src/plugins/valgrind/xmlprotocol/error.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/error.h b/src/plugins/valgrind/xmlprotocol/error.h index 939b650398b..da6e17b3913 100644 --- a/src/plugins/valgrind/xmlprotocol/error.h +++ b/src/plugins/valgrind/xmlprotocol/error.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/errorlistmodel.cpp b/src/plugins/valgrind/xmlprotocol/errorlistmodel.cpp index 717b77953e5..280b2aec49f 100644 --- a/src/plugins/valgrind/xmlprotocol/errorlistmodel.cpp +++ b/src/plugins/valgrind/xmlprotocol/errorlistmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/errorlistmodel.h b/src/plugins/valgrind/xmlprotocol/errorlistmodel.h index ee311fe5b31..387dac99581 100644 --- a/src/plugins/valgrind/xmlprotocol/errorlistmodel.h +++ b/src/plugins/valgrind/xmlprotocol/errorlistmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/frame.cpp b/src/plugins/valgrind/xmlprotocol/frame.cpp index f259300ac64..611aaf30beb 100644 --- a/src/plugins/valgrind/xmlprotocol/frame.cpp +++ b/src/plugins/valgrind/xmlprotocol/frame.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/frame.h b/src/plugins/valgrind/xmlprotocol/frame.h index 50900853324..c8ea3cd9837 100644 --- a/src/plugins/valgrind/xmlprotocol/frame.h +++ b/src/plugins/valgrind/xmlprotocol/frame.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/modelhelpers.cpp b/src/plugins/valgrind/xmlprotocol/modelhelpers.cpp index 78e5982a254..5b1864787f9 100644 --- a/src/plugins/valgrind/xmlprotocol/modelhelpers.cpp +++ b/src/plugins/valgrind/xmlprotocol/modelhelpers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/modelhelpers.h b/src/plugins/valgrind/xmlprotocol/modelhelpers.h index ee927104360..d7b82710728 100644 --- a/src/plugins/valgrind/xmlprotocol/modelhelpers.h +++ b/src/plugins/valgrind/xmlprotocol/modelhelpers.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/parser.cpp b/src/plugins/valgrind/xmlprotocol/parser.cpp index d029009b6d6..f0fc0263363 100644 --- a/src/plugins/valgrind/xmlprotocol/parser.cpp +++ b/src/plugins/valgrind/xmlprotocol/parser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/parser.h b/src/plugins/valgrind/xmlprotocol/parser.h index ab675a4fa76..65acaba639c 100644 --- a/src/plugins/valgrind/xmlprotocol/parser.h +++ b/src/plugins/valgrind/xmlprotocol/parser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/stack.cpp b/src/plugins/valgrind/xmlprotocol/stack.cpp index 66a8c4063f0..fee59205515 100644 --- a/src/plugins/valgrind/xmlprotocol/stack.cpp +++ b/src/plugins/valgrind/xmlprotocol/stack.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/stack.h b/src/plugins/valgrind/xmlprotocol/stack.h index a976d11dd32..d08f392aac8 100644 --- a/src/plugins/valgrind/xmlprotocol/stack.h +++ b/src/plugins/valgrind/xmlprotocol/stack.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/stackmodel.cpp b/src/plugins/valgrind/xmlprotocol/stackmodel.cpp index cdabdc16654..8aeb9de79fc 100644 --- a/src/plugins/valgrind/xmlprotocol/stackmodel.cpp +++ b/src/plugins/valgrind/xmlprotocol/stackmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/stackmodel.h b/src/plugins/valgrind/xmlprotocol/stackmodel.h index aef0f561fe3..e017d3e3419 100644 --- a/src/plugins/valgrind/xmlprotocol/stackmodel.h +++ b/src/plugins/valgrind/xmlprotocol/stackmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/status.cpp b/src/plugins/valgrind/xmlprotocol/status.cpp index 3c236238afc..4fa83641c0b 100644 --- a/src/plugins/valgrind/xmlprotocol/status.cpp +++ b/src/plugins/valgrind/xmlprotocol/status.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/status.h b/src/plugins/valgrind/xmlprotocol/status.h index 08910f49474..853408f1f4a 100644 --- a/src/plugins/valgrind/xmlprotocol/status.h +++ b/src/plugins/valgrind/xmlprotocol/status.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/suppression.cpp b/src/plugins/valgrind/xmlprotocol/suppression.cpp index e55b9e0ff78..8f76bb6e32b 100644 --- a/src/plugins/valgrind/xmlprotocol/suppression.cpp +++ b/src/plugins/valgrind/xmlprotocol/suppression.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/suppression.h b/src/plugins/valgrind/xmlprotocol/suppression.h index bed86c838e4..ad5890c958f 100644 --- a/src/plugins/valgrind/xmlprotocol/suppression.h +++ b/src/plugins/valgrind/xmlprotocol/suppression.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/threadedparser.cpp b/src/plugins/valgrind/xmlprotocol/threadedparser.cpp index 991a1564d98..a44f082f365 100644 --- a/src/plugins/valgrind/xmlprotocol/threadedparser.cpp +++ b/src/plugins/valgrind/xmlprotocol/threadedparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** diff --git a/src/plugins/valgrind/xmlprotocol/threadedparser.h b/src/plugins/valgrind/xmlprotocol/threadedparser.h index c9e95e4a819..37cc78741cc 100644 --- a/src/plugins/valgrind/xmlprotocol/threadedparser.h +++ b/src/plugins/valgrind/xmlprotocol/threadedparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** diff --git a/src/plugins/vcsbase/VcsBase.pluginspec.in b/src/plugins/vcsbase/VcsBase.pluginspec.in index 2ea0c5ffcd4..6c248203076 100644 --- a/src/plugins/vcsbase/VcsBase.pluginspec.in +++ b/src/plugins/vcsbase/VcsBase.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"VcsBase\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/vcsbase/baseannotationhighlighter.cpp b/src/plugins/vcsbase/baseannotationhighlighter.cpp index 841b7ed479d..1213f2d215b 100644 --- a/src/plugins/vcsbase/baseannotationhighlighter.cpp +++ b/src/plugins/vcsbase/baseannotationhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/baseannotationhighlighter.h b/src/plugins/vcsbase/baseannotationhighlighter.h index ff5fdfb1a41..4897e54c158 100644 --- a/src/plugins/vcsbase/baseannotationhighlighter.h +++ b/src/plugins/vcsbase/baseannotationhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/basecheckoutwizard.cpp b/src/plugins/vcsbase/basecheckoutwizard.cpp index cbb0cf1eb2f..3916b53701c 100644 --- a/src/plugins/vcsbase/basecheckoutwizard.cpp +++ b/src/plugins/vcsbase/basecheckoutwizard.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/basecheckoutwizard.h b/src/plugins/vcsbase/basecheckoutwizard.h index 08f7e105558..600199a5aa0 100644 --- a/src/plugins/vcsbase/basecheckoutwizard.h +++ b/src/plugins/vcsbase/basecheckoutwizard.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/basecheckoutwizardpage.cpp b/src/plugins/vcsbase/basecheckoutwizardpage.cpp index ec212d9caae..5c2e60882b6 100644 --- a/src/plugins/vcsbase/basecheckoutwizardpage.cpp +++ b/src/plugins/vcsbase/basecheckoutwizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/basecheckoutwizardpage.h b/src/plugins/vcsbase/basecheckoutwizardpage.h index d68293d4ac9..bb4ca62c8e4 100644 --- a/src/plugins/vcsbase/basecheckoutwizardpage.h +++ b/src/plugins/vcsbase/basecheckoutwizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/basevcseditorfactory.cpp b/src/plugins/vcsbase/basevcseditorfactory.cpp index 9d085ab639e..ad27f666632 100644 --- a/src/plugins/vcsbase/basevcseditorfactory.cpp +++ b/src/plugins/vcsbase/basevcseditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/basevcseditorfactory.h b/src/plugins/vcsbase/basevcseditorfactory.h index 727ac353cae..a58cb20e43a 100644 --- a/src/plugins/vcsbase/basevcseditorfactory.h +++ b/src/plugins/vcsbase/basevcseditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/basevcssubmiteditorfactory.cpp b/src/plugins/vcsbase/basevcssubmiteditorfactory.cpp index 8ceed8177e1..15a1f1eb3d1 100644 --- a/src/plugins/vcsbase/basevcssubmiteditorfactory.cpp +++ b/src/plugins/vcsbase/basevcssubmiteditorfactory.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/basevcssubmiteditorfactory.h b/src/plugins/vcsbase/basevcssubmiteditorfactory.h index 95280ca34b9..fa6dbff0bfd 100644 --- a/src/plugins/vcsbase/basevcssubmiteditorfactory.h +++ b/src/plugins/vcsbase/basevcssubmiteditorfactory.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/checkoutprogresswizardpage.cpp b/src/plugins/vcsbase/checkoutprogresswizardpage.cpp index d427a01f7fa..f3fe049c2a6 100644 --- a/src/plugins/vcsbase/checkoutprogresswizardpage.cpp +++ b/src/plugins/vcsbase/checkoutprogresswizardpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/checkoutprogresswizardpage.h b/src/plugins/vcsbase/checkoutprogresswizardpage.h index 567b7052ac5..f59782e9796 100644 --- a/src/plugins/vcsbase/checkoutprogresswizardpage.h +++ b/src/plugins/vcsbase/checkoutprogresswizardpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/checkoutwizarddialog.cpp b/src/plugins/vcsbase/checkoutwizarddialog.cpp index 091624aec3b..6ba37f96384 100644 --- a/src/plugins/vcsbase/checkoutwizarddialog.cpp +++ b/src/plugins/vcsbase/checkoutwizarddialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/checkoutwizarddialog.h b/src/plugins/vcsbase/checkoutwizarddialog.h index bbecc82f782..484fb0d990d 100644 --- a/src/plugins/vcsbase/checkoutwizarddialog.h +++ b/src/plugins/vcsbase/checkoutwizarddialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/cleandialog.cpp b/src/plugins/vcsbase/cleandialog.cpp index 20a4dd7b140..6d5183aaccb 100644 --- a/src/plugins/vcsbase/cleandialog.cpp +++ b/src/plugins/vcsbase/cleandialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/cleandialog.h b/src/plugins/vcsbase/cleandialog.h index 4078030c8f6..321c50c32fd 100644 --- a/src/plugins/vcsbase/cleandialog.h +++ b/src/plugins/vcsbase/cleandialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/command.cpp b/src/plugins/vcsbase/command.cpp index 8de2984172e..94b3705bdfd 100644 --- a/src/plugins/vcsbase/command.cpp +++ b/src/plugins/vcsbase/command.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion and Hugues Delorme +** Copyright (c) 2014 Brian McGillion and Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/command.h b/src/plugins/vcsbase/command.h index b44dc3e57a6..ae4c6be5601 100644 --- a/src/plugins/vcsbase/command.h +++ b/src/plugins/vcsbase/command.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion and Hugues Delorme +** Copyright (c) 2014 Brian McGillion and Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/commonsettingspage.cpp b/src/plugins/vcsbase/commonsettingspage.cpp index 16ac3600cdd..ccb423df128 100644 --- a/src/plugins/vcsbase/commonsettingspage.cpp +++ b/src/plugins/vcsbase/commonsettingspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/commonsettingspage.h b/src/plugins/vcsbase/commonsettingspage.h index e0d0b1e45bd..ebd8b5aac41 100644 --- a/src/plugins/vcsbase/commonsettingspage.h +++ b/src/plugins/vcsbase/commonsettingspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/commonvcssettings.cpp b/src/plugins/vcsbase/commonvcssettings.cpp index 4d06c661ccc..a93cd7827cc 100644 --- a/src/plugins/vcsbase/commonvcssettings.cpp +++ b/src/plugins/vcsbase/commonvcssettings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/commonvcssettings.h b/src/plugins/vcsbase/commonvcssettings.h index 4b010df7fa5..380711acd2d 100644 --- a/src/plugins/vcsbase/commonvcssettings.h +++ b/src/plugins/vcsbase/commonvcssettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/corelistener.cpp b/src/plugins/vcsbase/corelistener.cpp index e1252e79755..e53caf6e5ed 100644 --- a/src/plugins/vcsbase/corelistener.cpp +++ b/src/plugins/vcsbase/corelistener.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/corelistener.h b/src/plugins/vcsbase/corelistener.h index 7dd203d26f2..ee8111685c4 100644 --- a/src/plugins/vcsbase/corelistener.h +++ b/src/plugins/vcsbase/corelistener.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/diffhighlighter.cpp b/src/plugins/vcsbase/diffhighlighter.cpp index 5798c30a73c..f0a628d0fbf 100644 --- a/src/plugins/vcsbase/diffhighlighter.cpp +++ b/src/plugins/vcsbase/diffhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/diffhighlighter.h b/src/plugins/vcsbase/diffhighlighter.h index 6ce2692e182..15377a85c8c 100644 --- a/src/plugins/vcsbase/diffhighlighter.h +++ b/src/plugins/vcsbase/diffhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/nicknamedialog.cpp b/src/plugins/vcsbase/nicknamedialog.cpp index 8d64b29701c..68e57993a47 100644 --- a/src/plugins/vcsbase/nicknamedialog.cpp +++ b/src/plugins/vcsbase/nicknamedialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/nicknamedialog.h b/src/plugins/vcsbase/nicknamedialog.h index cfd827bf04c..c1af9ed2c94 100644 --- a/src/plugins/vcsbase/nicknamedialog.h +++ b/src/plugins/vcsbase/nicknamedialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/submiteditorfile.cpp b/src/plugins/vcsbase/submiteditorfile.cpp index 1d107262d4b..033f58b606d 100644 --- a/src/plugins/vcsbase/submiteditorfile.cpp +++ b/src/plugins/vcsbase/submiteditorfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/submiteditorfile.h b/src/plugins/vcsbase/submiteditorfile.h index 4623a211d35..0923e1b8840 100644 --- a/src/plugins/vcsbase/submiteditorfile.h +++ b/src/plugins/vcsbase/submiteditorfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/submiteditorwidget.cpp b/src/plugins/vcsbase/submiteditorwidget.cpp index 473bb108627..da3745dfbc3 100644 --- a/src/plugins/vcsbase/submiteditorwidget.cpp +++ b/src/plugins/vcsbase/submiteditorwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/submiteditorwidget.h b/src/plugins/vcsbase/submiteditorwidget.h index 8cec7a0c5d1..3293e56d00e 100644 --- a/src/plugins/vcsbase/submiteditorwidget.h +++ b/src/plugins/vcsbase/submiteditorwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/submitfieldwidget.cpp b/src/plugins/vcsbase/submitfieldwidget.cpp index 4dd0052198d..3a27c369626 100644 --- a/src/plugins/vcsbase/submitfieldwidget.cpp +++ b/src/plugins/vcsbase/submitfieldwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/submitfieldwidget.h b/src/plugins/vcsbase/submitfieldwidget.h index 1c194e3d3f4..2bd74847a5f 100644 --- a/src/plugins/vcsbase/submitfieldwidget.h +++ b/src/plugins/vcsbase/submitfieldwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/submitfilemodel.cpp b/src/plugins/vcsbase/submitfilemodel.cpp index 933fcc59f25..5ff088a14f8 100644 --- a/src/plugins/vcsbase/submitfilemodel.cpp +++ b/src/plugins/vcsbase/submitfilemodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/submitfilemodel.h b/src/plugins/vcsbase/submitfilemodel.h index aa523335cf0..d10e65873cd 100644 --- a/src/plugins/vcsbase/submitfilemodel.h +++ b/src/plugins/vcsbase/submitfilemodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbase_global.h b/src/plugins/vcsbase/vcsbase_global.h index f68c39a48e3..976aacdd83e 100644 --- a/src/plugins/vcsbase/vcsbase_global.h +++ b/src/plugins/vcsbase/vcsbase_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseclient.cpp b/src/plugins/vcsbase/vcsbaseclient.cpp index 551209eaf25..31ab75cd64f 100644 --- a/src/plugins/vcsbase/vcsbaseclient.cpp +++ b/src/plugins/vcsbase/vcsbaseclient.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion and Hugues Delorme +** Copyright (c) 2014 Brian McGillion and Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseclient.h b/src/plugins/vcsbase/vcsbaseclient.h index 9734e4829cc..cc7dc03ad6d 100644 --- a/src/plugins/vcsbase/vcsbaseclient.h +++ b/src/plugins/vcsbase/vcsbaseclient.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion and Hugues Delorme +** Copyright (c) 2014 Brian McGillion and Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseclientsettings.cpp b/src/plugins/vcsbase/vcsbaseclientsettings.cpp index 783f082e48a..952b99c758d 100644 --- a/src/plugins/vcsbase/vcsbaseclientsettings.cpp +++ b/src/plugins/vcsbase/vcsbaseclientsettings.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion and Hugues Delorme +** Copyright (c) 2014 Brian McGillion and Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseclientsettings.h b/src/plugins/vcsbase/vcsbaseclientsettings.h index 66df6626a1b..61b364eac56 100644 --- a/src/plugins/vcsbase/vcsbaseclientsettings.h +++ b/src/plugins/vcsbase/vcsbaseclientsettings.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (c) 2013 Brian McGillion and Hugues Delorme +** Copyright (c) 2014 Brian McGillion and Hugues Delorme ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseconstants.h b/src/plugins/vcsbase/vcsbaseconstants.h index af6bccddc51..01356cda9ae 100644 --- a/src/plugins/vcsbase/vcsbaseconstants.h +++ b/src/plugins/vcsbase/vcsbaseconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseeditor.cpp b/src/plugins/vcsbase/vcsbaseeditor.cpp index f31cf7419a4..7f42d12ada4 100644 --- a/src/plugins/vcsbase/vcsbaseeditor.cpp +++ b/src/plugins/vcsbase/vcsbaseeditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseeditor.h b/src/plugins/vcsbase/vcsbaseeditor.h index 7c0654dae64..db5fef8825c 100644 --- a/src/plugins/vcsbase/vcsbaseeditor.h +++ b/src/plugins/vcsbase/vcsbaseeditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseeditorparameterwidget.cpp b/src/plugins/vcsbase/vcsbaseeditorparameterwidget.cpp index 743feb2cf38..ea7b074b599 100644 --- a/src/plugins/vcsbase/vcsbaseeditorparameterwidget.cpp +++ b/src/plugins/vcsbase/vcsbaseeditorparameterwidget.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseeditorparameterwidget.h b/src/plugins/vcsbase/vcsbaseeditorparameterwidget.h index f81291012ac..46329325c14 100644 --- a/src/plugins/vcsbase/vcsbaseeditorparameterwidget.h +++ b/src/plugins/vcsbase/vcsbaseeditorparameterwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseoptionspage.cpp b/src/plugins/vcsbase/vcsbaseoptionspage.cpp index f6256d0b493..0269b52435d 100644 --- a/src/plugins/vcsbase/vcsbaseoptionspage.cpp +++ b/src/plugins/vcsbase/vcsbaseoptionspage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseoptionspage.h b/src/plugins/vcsbase/vcsbaseoptionspage.h index 863854c2d42..fa611957d6c 100644 --- a/src/plugins/vcsbase/vcsbaseoptionspage.h +++ b/src/plugins/vcsbase/vcsbaseoptionspage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseoutputwindow.cpp b/src/plugins/vcsbase/vcsbaseoutputwindow.cpp index 9fbfe75548b..2e66cb10640 100644 --- a/src/plugins/vcsbase/vcsbaseoutputwindow.cpp +++ b/src/plugins/vcsbase/vcsbaseoutputwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseoutputwindow.h b/src/plugins/vcsbase/vcsbaseoutputwindow.h index a1ce87586e0..5213d95da08 100644 --- a/src/plugins/vcsbase/vcsbaseoutputwindow.h +++ b/src/plugins/vcsbase/vcsbaseoutputwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseplugin.cpp b/src/plugins/vcsbase/vcsbaseplugin.cpp index fc73d89c677..732349e0f6d 100644 --- a/src/plugins/vcsbase/vcsbaseplugin.cpp +++ b/src/plugins/vcsbase/vcsbaseplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbaseplugin.h b/src/plugins/vcsbase/vcsbaseplugin.h index a620452ae59..03d18b687b0 100644 --- a/src/plugins/vcsbase/vcsbaseplugin.h +++ b/src/plugins/vcsbase/vcsbaseplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbasesubmiteditor.cpp b/src/plugins/vcsbase/vcsbasesubmiteditor.cpp index 322f64c2ba3..069b867ad11 100644 --- a/src/plugins/vcsbase/vcsbasesubmiteditor.cpp +++ b/src/plugins/vcsbase/vcsbasesubmiteditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsbasesubmiteditor.h b/src/plugins/vcsbase/vcsbasesubmiteditor.h index 504629523bb..8468af0078d 100644 --- a/src/plugins/vcsbase/vcsbasesubmiteditor.h +++ b/src/plugins/vcsbase/vcsbasesubmiteditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsconfigurationpage.cpp b/src/plugins/vcsbase/vcsconfigurationpage.cpp index eff1dee121f..2ecce32ea45 100644 --- a/src/plugins/vcsbase/vcsconfigurationpage.cpp +++ b/src/plugins/vcsbase/vcsconfigurationpage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsconfigurationpage.h b/src/plugins/vcsbase/vcsconfigurationpage.h index 72f1370dae3..519d1a5772b 100644 --- a/src/plugins/vcsbase/vcsconfigurationpage.h +++ b/src/plugins/vcsbase/vcsconfigurationpage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsplugin.cpp b/src/plugins/vcsbase/vcsplugin.cpp index 08612e9709d..bcd28297b3a 100644 --- a/src/plugins/vcsbase/vcsplugin.cpp +++ b/src/plugins/vcsbase/vcsplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/vcsbase/vcsplugin.h b/src/plugins/vcsbase/vcsplugin.h index a111f27b1c2..fd73b0d89a3 100644 --- a/src/plugins/vcsbase/vcsplugin.h +++ b/src/plugins/vcsbase/vcsplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/welcome/Welcome.pluginspec.in b/src/plugins/welcome/Welcome.pluginspec.in index e6301d7861f..062cca73282 100644 --- a/src/plugins/welcome/Welcome.pluginspec.in +++ b/src/plugins/welcome/Welcome.pluginspec.in @@ -1,6 +1,6 @@ <plugin name=\"Welcome\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> Commercial Usage diff --git a/src/plugins/welcome/communitywelcomepage.h b/src/plugins/welcome/communitywelcomepage.h index bf40d02a41d..89585564d81 100644 --- a/src/plugins/welcome/communitywelcomepage.h +++ b/src/plugins/welcome/communitywelcomepage.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/welcome/welcomeplugin.cpp b/src/plugins/welcome/welcomeplugin.cpp index 013b0661f8c..989649757ee 100644 --- a/src/plugins/welcome/welcomeplugin.cpp +++ b/src/plugins/welcome/welcomeplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/plugins/welcome/welcomeplugin.h b/src/plugins/welcome/welcomeplugin.h index c69eff7f385..d386c037743 100644 --- a/src/plugins/welcome/welcomeplugin.h +++ b/src/plugins/welcome/welcomeplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/share/qtcreator/externaltools/lrelease.xml b/src/share/qtcreator/externaltools/lrelease.xml index 567eacb50ab..8acb1b874ae 100644 --- a/src/share/qtcreator/externaltools/lrelease.xml +++ b/src/share/qtcreator/externaltools/lrelease.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/share/qtcreator/externaltools/lupdate.xml b/src/share/qtcreator/externaltools/lupdate.xml index be4e22f0d73..7be14556b43 100644 --- a/src/share/qtcreator/externaltools/lupdate.xml +++ b/src/share/qtcreator/externaltools/lupdate.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/share/qtcreator/externaltools/notepad_win.xml b/src/share/qtcreator/externaltools/notepad_win.xml index 742391ecb03..c764905ed6b 100644 --- a/src/share/qtcreator/externaltools/notepad_win.xml +++ b/src/share/qtcreator/externaltools/notepad_win.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/share/qtcreator/externaltools/qmlscene.xml b/src/share/qtcreator/externaltools/qmlscene.xml index c5ea7faddcb..95a2468a535 100644 --- a/src/share/qtcreator/externaltools/qmlscene.xml +++ b/src/share/qtcreator/externaltools/qmlscene.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/share/qtcreator/externaltools/qmlviewer.xml b/src/share/qtcreator/externaltools/qmlviewer.xml index d87a903f85c..6816ab1498d 100644 --- a/src/share/qtcreator/externaltools/qmlviewer.xml +++ b/src/share/qtcreator/externaltools/qmlviewer.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/share/qtcreator/externaltools/sort.xml b/src/share/qtcreator/externaltools/sort.xml index 246c2dfa513..f92c476e573 100644 --- a/src/share/qtcreator/externaltools/sort.xml +++ b/src/share/qtcreator/externaltools/sort.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/share/qtcreator/externaltools/vi.xml b/src/share/qtcreator/externaltools/vi.xml index 5cb88d4e4db..3ec699ec793 100644 --- a/src/share/qtcreator/externaltools/vi.xml +++ b/src/share/qtcreator/externaltools/vi.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/share/qtcreator/externaltools/vi_mac.xml b/src/share/qtcreator/externaltools/vi_mac.xml index 3ce868578f1..8056f66ef0f 100644 --- a/src/share/qtcreator/externaltools/vi_mac.xml +++ b/src/share/qtcreator/externaltools/vi_mac.xml @@ -2,7 +2,7 @@ <!-- /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/cpaster/cgi.cpp b/src/shared/cpaster/cgi.cpp index 6bee94682ea..7e88168d1dd 100644 --- a/src/shared/cpaster/cgi.cpp +++ b/src/shared/cpaster/cgi.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/cpaster/cgi.h b/src/shared/cpaster/cgi.h index 1a80e6578b8..e1e7c89145f 100644 --- a/src/shared/cpaster/cgi.h +++ b/src/shared/cpaster/cgi.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/cpaster/splitter.cpp b/src/shared/cpaster/splitter.cpp index ccf85ccfdfa..d1544c48bc0 100644 --- a/src/shared/cpaster/splitter.cpp +++ b/src/shared/cpaster/splitter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/cpaster/splitter.h b/src/shared/cpaster/splitter.h index 1fc054406c9..6fe558b165c 100644 --- a/src/shared/cpaster/splitter.h +++ b/src/shared/cpaster/splitter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/designerintegrationv2/formresizer.cpp b/src/shared/designerintegrationv2/formresizer.cpp index 3c7300f38dc..080ee200c22 100644 --- a/src/shared/designerintegrationv2/formresizer.cpp +++ b/src/shared/designerintegrationv2/formresizer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/designerintegrationv2/formresizer.h b/src/shared/designerintegrationv2/formresizer.h index 49d7278551a..c2450177f63 100644 --- a/src/shared/designerintegrationv2/formresizer.h +++ b/src/shared/designerintegrationv2/formresizer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/designerintegrationv2/sizehandlerect.cpp b/src/shared/designerintegrationv2/sizehandlerect.cpp index 46428958906..fec6c14edac 100644 --- a/src/shared/designerintegrationv2/sizehandlerect.cpp +++ b/src/shared/designerintegrationv2/sizehandlerect.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/designerintegrationv2/sizehandlerect.h b/src/shared/designerintegrationv2/sizehandlerect.h index ed0091012ed..836150467d5 100644 --- a/src/shared/designerintegrationv2/sizehandlerect.h +++ b/src/shared/designerintegrationv2/sizehandlerect.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/designerintegrationv2/widgethost.cpp b/src/shared/designerintegrationv2/widgethost.cpp index abb87e31c98..48b2f7e329c 100644 --- a/src/shared/designerintegrationv2/widgethost.cpp +++ b/src/shared/designerintegrationv2/widgethost.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/designerintegrationv2/widgethost.h b/src/shared/designerintegrationv2/widgethost.h index 01117a44607..863d0ba0610 100644 --- a/src/shared/designerintegrationv2/widgethost.h +++ b/src/shared/designerintegrationv2/widgethost.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/designerintegrationv2/widgethostconstants.h b/src/shared/designerintegrationv2/widgethostconstants.h index 9d3ad3f1e42..9294ec36139 100644 --- a/src/shared/designerintegrationv2/widgethostconstants.h +++ b/src/shared/designerintegrationv2/widgethostconstants.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/bookmarkmanager.cpp b/src/shared/help/bookmarkmanager.cpp index 4e43a2ddd0e..ff1170ce5aa 100644 --- a/src/shared/help/bookmarkmanager.cpp +++ b/src/shared/help/bookmarkmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/bookmarkmanager.h b/src/shared/help/bookmarkmanager.h index 962ff67157a..f069a9d0210 100644 --- a/src/shared/help/bookmarkmanager.h +++ b/src/shared/help/bookmarkmanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/contentwindow.cpp b/src/shared/help/contentwindow.cpp index 768c818af8c..b29e6480052 100644 --- a/src/shared/help/contentwindow.cpp +++ b/src/shared/help/contentwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/contentwindow.h b/src/shared/help/contentwindow.h index fd413832c77..659dfc26346 100644 --- a/src/shared/help/contentwindow.h +++ b/src/shared/help/contentwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/filternamedialog.cpp b/src/shared/help/filternamedialog.cpp index 271b496b522..e91a26c5faa 100644 --- a/src/shared/help/filternamedialog.cpp +++ b/src/shared/help/filternamedialog.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/filternamedialog.h b/src/shared/help/filternamedialog.h index a4a48d25162..6e03eebf703 100644 --- a/src/shared/help/filternamedialog.h +++ b/src/shared/help/filternamedialog.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/indexwindow.cpp b/src/shared/help/indexwindow.cpp index 34a6721c771..39ead89708c 100644 --- a/src/shared/help/indexwindow.cpp +++ b/src/shared/help/indexwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/indexwindow.h b/src/shared/help/indexwindow.h index 98dcbc0d784..3ca06868951 100644 --- a/src/shared/help/indexwindow.h +++ b/src/shared/help/indexwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/topicchooser.cpp b/src/shared/help/topicchooser.cpp index fae93bab5c9..308a316f272 100644 --- a/src/shared/help/topicchooser.cpp +++ b/src/shared/help/topicchooser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/help/topicchooser.h b/src/shared/help/topicchooser.h index 4b3e07502b9..772bad4a9b7 100644 --- a/src/shared/help/topicchooser.h +++ b/src/shared/help/topicchooser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/modeltest/modeltest.cpp b/src/shared/modeltest/modeltest.cpp index 7f64089800e..6c90bf7819e 100644 --- a/src/shared/modeltest/modeltest.cpp +++ b/src/shared/modeltest/modeltest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/modeltest/modeltest.h b/src/shared/modeltest/modeltest.h index 47212bb7c75..e68a0be85de 100644 --- a/src/shared/modeltest/modeltest.h +++ b/src/shared/modeltest/modeltest.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/ioutils.cpp b/src/shared/proparser/ioutils.cpp index 79a336fa1d7..ff61e481905 100644 --- a/src/shared/proparser/ioutils.cpp +++ b/src/shared/proparser/ioutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/ioutils.h b/src/shared/proparser/ioutils.h index e4773ca50db..39adf4fc967 100644 --- a/src/shared/proparser/ioutils.h +++ b/src/shared/proparser/ioutils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/profileevaluator.cpp b/src/shared/proparser/profileevaluator.cpp index c9558519281..bb781a50a5a 100644 --- a/src/shared/proparser/profileevaluator.cpp +++ b/src/shared/proparser/profileevaluator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/profileevaluator.h b/src/shared/proparser/profileevaluator.h index 8d6fec86c3d..0248f69b9e9 100644 --- a/src/shared/proparser/profileevaluator.h +++ b/src/shared/proparser/profileevaluator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/proitems.cpp b/src/shared/proparser/proitems.cpp index db1ad8384c1..050924ed6e3 100644 --- a/src/shared/proparser/proitems.cpp +++ b/src/shared/proparser/proitems.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/proitems.h b/src/shared/proparser/proitems.h index bd1e5df543d..391a4ef361e 100644 --- a/src/shared/proparser/proitems.h +++ b/src/shared/proparser/proitems.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/prowriter.cpp b/src/shared/proparser/prowriter.cpp index f71d600663a..4ac401eacbd 100644 --- a/src/shared/proparser/prowriter.cpp +++ b/src/shared/proparser/prowriter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/prowriter.h b/src/shared/proparser/prowriter.h index ec575fb8f38..d48e1008a20 100644 --- a/src/shared/proparser/prowriter.h +++ b/src/shared/proparser/prowriter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmake_global.h b/src/shared/proparser/qmake_global.h index 5354b838a44..1172642068f 100644 --- a/src/shared/proparser/qmake_global.h +++ b/src/shared/proparser/qmake_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakebuiltins.cpp b/src/shared/proparser/qmakebuiltins.cpp index 955b7e6cf6c..3b881b44855 100644 --- a/src/shared/proparser/qmakebuiltins.cpp +++ b/src/shared/proparser/qmakebuiltins.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakeevaluator.cpp b/src/shared/proparser/qmakeevaluator.cpp index f2f45b06c64..efc018f7dbe 100644 --- a/src/shared/proparser/qmakeevaluator.cpp +++ b/src/shared/proparser/qmakeevaluator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakeevaluator.h b/src/shared/proparser/qmakeevaluator.h index 9f1811a6158..7205e3b9046 100644 --- a/src/shared/proparser/qmakeevaluator.h +++ b/src/shared/proparser/qmakeevaluator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakeevaluator_p.h b/src/shared/proparser/qmakeevaluator_p.h index 078c1cd89cd..e815e396712 100644 --- a/src/shared/proparser/qmakeevaluator_p.h +++ b/src/shared/proparser/qmakeevaluator_p.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakeglobals.cpp b/src/shared/proparser/qmakeglobals.cpp index d34d7ba4e65..e6f12d28cca 100644 --- a/src/shared/proparser/qmakeglobals.cpp +++ b/src/shared/proparser/qmakeglobals.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakeglobals.h b/src/shared/proparser/qmakeglobals.h index d633e94d4e4..2cb7fb72efa 100644 --- a/src/shared/proparser/qmakeglobals.h +++ b/src/shared/proparser/qmakeglobals.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakeparser.cpp b/src/shared/proparser/qmakeparser.cpp index 7f447541d4f..3da191120bd 100644 --- a/src/shared/proparser/qmakeparser.cpp +++ b/src/shared/proparser/qmakeparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakeparser.h b/src/shared/proparser/qmakeparser.h index 1475a79e8cd..888125fb6b9 100644 --- a/src/shared/proparser/qmakeparser.h +++ b/src/shared/proparser/qmakeparser.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakevfs.cpp b/src/shared/proparser/qmakevfs.cpp index 8dbcc4297c9..92738964b53 100644 --- a/src/shared/proparser/qmakevfs.cpp +++ b/src/shared/proparser/qmakevfs.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/proparser/qmakevfs.h b/src/shared/proparser/qmakevfs.h index 87f39ecbd5c..80330b145c5 100644 --- a/src/shared/proparser/qmakevfs.h +++ b/src/shared/proparser/qmakevfs.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtcreator_gui_pch.h b/src/shared/qtcreator_gui_pch.h index 2d742bbca33..49a514d2053 100644 --- a/src/shared/qtcreator_gui_pch.h +++ b/src/shared/qtcreator_gui_pch.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtcreator_pch.h b/src/shared/qtcreator_pch.h index c4578104c2a..58ae531baaa 100644 --- a/src/shared/qtcreator_pch.h +++ b/src/shared/qtcreator_pch.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtlockedfile/qtlockedfile.cpp b/src/shared/qtlockedfile/qtlockedfile.cpp index b3ac96888c1..f833ca0d321 100644 --- a/src/shared/qtlockedfile/qtlockedfile.cpp +++ b/src/shared/qtlockedfile/qtlockedfile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtlockedfile/qtlockedfile.h b/src/shared/qtlockedfile/qtlockedfile.h index 0bbaac9785e..fcfb8cc24f7 100644 --- a/src/shared/qtlockedfile/qtlockedfile.h +++ b/src/shared/qtlockedfile/qtlockedfile.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtlockedfile/qtlockedfile_unix.cpp b/src/shared/qtlockedfile/qtlockedfile_unix.cpp index 02e65a8126c..171178b5f11 100644 --- a/src/shared/qtlockedfile/qtlockedfile_unix.cpp +++ b/src/shared/qtlockedfile/qtlockedfile_unix.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtlockedfile/qtlockedfile_win.cpp b/src/shared/qtlockedfile/qtlockedfile_win.cpp index d384094b93e..ae6286fce6c 100644 --- a/src/shared/qtlockedfile/qtlockedfile_win.cpp +++ b/src/shared/qtlockedfile/qtlockedfile_win.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtsingleapplication/qtlocalpeer.cpp b/src/shared/qtsingleapplication/qtlocalpeer.cpp index 43e6bf42685..09c69ce5252 100644 --- a/src/shared/qtsingleapplication/qtlocalpeer.cpp +++ b/src/shared/qtsingleapplication/qtlocalpeer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtsingleapplication/qtlocalpeer.h b/src/shared/qtsingleapplication/qtlocalpeer.h index ba202430572..36193631912 100644 --- a/src/shared/qtsingleapplication/qtlocalpeer.h +++ b/src/shared/qtsingleapplication/qtlocalpeer.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtsingleapplication/qtsingleapplication.cpp b/src/shared/qtsingleapplication/qtsingleapplication.cpp index 692dd844412..9610937ded7 100644 --- a/src/shared/qtsingleapplication/qtsingleapplication.cpp +++ b/src/shared/qtsingleapplication/qtsingleapplication.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtsingleapplication/qtsingleapplication.h b/src/shared/qtsingleapplication/qtsingleapplication.h index 7ba2f1ea340..7b97a686359 100644 --- a/src/shared/qtsingleapplication/qtsingleapplication.h +++ b/src/shared/qtsingleapplication/qtsingleapplication.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtsingleapplication/qtsinglecoreapplication.cpp b/src/shared/qtsingleapplication/qtsinglecoreapplication.cpp index ff22fdba742..d28cb33ea30 100644 --- a/src/shared/qtsingleapplication/qtsinglecoreapplication.cpp +++ b/src/shared/qtsingleapplication/qtsinglecoreapplication.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/qtsingleapplication/qtsinglecoreapplication.h b/src/shared/qtsingleapplication/qtsinglecoreapplication.h index 5b8886811c8..6a6ee63a516 100644 --- a/src/shared/qtsingleapplication/qtsinglecoreapplication.h +++ b/src/shared/qtsingleapplication/qtsinglecoreapplication.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/registryaccess/registryaccess.cpp b/src/shared/registryaccess/registryaccess.cpp index 849d8ecebde..f371297baa1 100644 --- a/src/shared/registryaccess/registryaccess.cpp +++ b/src/shared/registryaccess/registryaccess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/registryaccess/registryaccess.h b/src/shared/registryaccess/registryaccess.h index a7a31fc71f9..049ea2224ae 100644 --- a/src/shared/registryaccess/registryaccess.h +++ b/src/shared/registryaccess/registryaccess.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/scriptwrapper/interface_wrap_helpers.h b/src/shared/scriptwrapper/interface_wrap_helpers.h index 76e75f89ba3..c298b6f9bdf 100644 --- a/src/shared/scriptwrapper/interface_wrap_helpers.h +++ b/src/shared/scriptwrapper/interface_wrap_helpers.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/shared/scriptwrapper/wrap_helpers.h b/src/shared/scriptwrapper/wrap_helpers.h index 509b26f5156..592a3f86204 100644 --- a/src/shared/scriptwrapper/wrap_helpers.h +++ b/src/shared/scriptwrapper/wrap_helpers.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/cplusplus-mkvisitor/cplusplus-mkvisitor.cpp b/src/tools/cplusplus-mkvisitor/cplusplus-mkvisitor.cpp index 5f31c27d7ee..5599217ce0b 100644 --- a/src/tools/cplusplus-mkvisitor/cplusplus-mkvisitor.cpp +++ b/src/tools/cplusplus-mkvisitor/cplusplus-mkvisitor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/cplusplus-tools-utils/cplusplus-tools-utils.cpp b/src/tools/cplusplus-tools-utils/cplusplus-tools-utils.cpp index 31af2a84d40..2f986a4bd5f 100644 --- a/src/tools/cplusplus-tools-utils/cplusplus-tools-utils.cpp +++ b/src/tools/cplusplus-tools-utils/cplusplus-tools-utils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/cplusplus-tools-utils/cplusplus-tools-utils.h b/src/tools/cplusplus-tools-utils/cplusplus-tools-utils.h index a4f3db27ad8..b768c3a201c 100644 --- a/src/tools/cplusplus-tools-utils/cplusplus-tools-utils.h +++ b/src/tools/cplusplus-tools-utils/cplusplus-tools-utils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/cplusplus-update-frontend/cplusplus-update-frontend.cpp b/src/tools/cplusplus-update-frontend/cplusplus-update-frontend.cpp index 48890d16db5..eccf1eb4cf4 100644 --- a/src/tools/cplusplus-update-frontend/cplusplus-update-frontend.cpp +++ b/src/tools/cplusplus-update-frontend/cplusplus-update-frontend.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/iostool/iosdevicemanager.cpp b/src/tools/iostool/iosdevicemanager.cpp index 88815ff8fd7..3bc83bb0274 100644 --- a/src/tools/iostool/iosdevicemanager.cpp +++ b/src/tools/iostool/iosdevicemanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/iostool/iosdevicemanager.h b/src/tools/iostool/iosdevicemanager.h index 4616d461261..e5c5aacc4a7 100644 --- a/src/tools/iostool/iosdevicemanager.h +++ b/src/tools/iostool/iosdevicemanager.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/iostool/main.cpp b/src/tools/iostool/main.cpp index 323e31c79ab..bfec66e07ac 100644 --- a/src/tools/iostool/main.cpp +++ b/src/tools/iostool/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/makespy/main.cpp b/src/tools/makespy/main.cpp index 630243abc6b..174372dc74e 100644 --- a/src/tools/makespy/main.cpp +++ b/src/tools/makespy/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qmlprofilertool/qmlprofilerapplication.cpp b/src/tools/qmlprofilertool/qmlprofilerapplication.cpp index cad7f9f4e1d..194f4d5a32e 100644 --- a/src/tools/qmlprofilertool/qmlprofilerapplication.cpp +++ b/src/tools/qmlprofilertool/qmlprofilerapplication.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcdebugger/main.cpp b/src/tools/qtcdebugger/main.cpp index 5123ce9fb31..496446ac5a1 100644 --- a/src/tools/qtcdebugger/main.cpp +++ b/src/tools/qtcdebugger/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/backtracecollector.cpp b/src/tools/qtcreatorcrashhandler/backtracecollector.cpp index 13e29f49868..b80ed9647f5 100644 --- a/src/tools/qtcreatorcrashhandler/backtracecollector.cpp +++ b/src/tools/qtcreatorcrashhandler/backtracecollector.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/backtracecollector.h b/src/tools/qtcreatorcrashhandler/backtracecollector.h index f19cb22de85..31af02a7c92 100644 --- a/src/tools/qtcreatorcrashhandler/backtracecollector.h +++ b/src/tools/qtcreatorcrashhandler/backtracecollector.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/crashhandler.cpp b/src/tools/qtcreatorcrashhandler/crashhandler.cpp index b757d11a1aa..81f67b365f7 100644 --- a/src/tools/qtcreatorcrashhandler/crashhandler.cpp +++ b/src/tools/qtcreatorcrashhandler/crashhandler.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/crashhandler.h b/src/tools/qtcreatorcrashhandler/crashhandler.h index e390581bd20..394dbe51a84 100644 --- a/src/tools/qtcreatorcrashhandler/crashhandler.h +++ b/src/tools/qtcreatorcrashhandler/crashhandler.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/crashhandlerdialog.cpp b/src/tools/qtcreatorcrashhandler/crashhandlerdialog.cpp index f95755bbdd2..e65fc3827ad 100644 --- a/src/tools/qtcreatorcrashhandler/crashhandlerdialog.cpp +++ b/src/tools/qtcreatorcrashhandler/crashhandlerdialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/crashhandlerdialog.h b/src/tools/qtcreatorcrashhandler/crashhandlerdialog.h index 35333506f33..216473fb6a3 100644 --- a/src/tools/qtcreatorcrashhandler/crashhandlerdialog.h +++ b/src/tools/qtcreatorcrashhandler/crashhandlerdialog.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/crashhandlersetup.cpp b/src/tools/qtcreatorcrashhandler/crashhandlersetup.cpp index 0ad5b837410..da8cb28cd51 100644 --- a/src/tools/qtcreatorcrashhandler/crashhandlersetup.cpp +++ b/src/tools/qtcreatorcrashhandler/crashhandlersetup.cpp @@ -1,6 +1,6 @@ /************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/crashhandlersetup.h b/src/tools/qtcreatorcrashhandler/crashhandlersetup.h index 5f9868e07f1..d42d4367866 100644 --- a/src/tools/qtcreatorcrashhandler/crashhandlersetup.h +++ b/src/tools/qtcreatorcrashhandler/crashhandlersetup.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/main.cpp b/src/tools/qtcreatorcrashhandler/main.cpp index 5f4002a19f8..f505700c7a5 100644 --- a/src/tools/qtcreatorcrashhandler/main.cpp +++ b/src/tools/qtcreatorcrashhandler/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/utils.cpp b/src/tools/qtcreatorcrashhandler/utils.cpp index bb885e3ce98..9f4f0fcdc40 100644 --- a/src/tools/qtcreatorcrashhandler/utils.cpp +++ b/src/tools/qtcreatorcrashhandler/utils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorcrashhandler/utils.h b/src/tools/qtcreatorcrashhandler/utils.h index e136a276e85..4ce0ea4bcb4 100644 --- a/src/tools/qtcreatorcrashhandler/utils.h +++ b/src/tools/qtcreatorcrashhandler/utils.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorwidgets/customwidget.h b/src/tools/qtcreatorwidgets/customwidget.h index 5bb154a05fb..d8bf88b483f 100644 --- a/src/tools/qtcreatorwidgets/customwidget.h +++ b/src/tools/qtcreatorwidgets/customwidget.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorwidgets/customwidgets.cpp b/src/tools/qtcreatorwidgets/customwidgets.cpp index 56dc7f7314e..653487f4664 100644 --- a/src/tools/qtcreatorwidgets/customwidgets.cpp +++ b/src/tools/qtcreatorwidgets/customwidgets.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtcreatorwidgets/customwidgets.h b/src/tools/qtcreatorwidgets/customwidgets.h index dee0d964fdf..b43846162d0 100644 --- a/src/tools/qtcreatorwidgets/customwidgets.h +++ b/src/tools/qtcreatorwidgets/customwidgets.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/qtpromaker/main.cpp b/src/tools/qtpromaker/main.cpp index 622466df03b..d26a29e9ee6 100644 --- a/src/tools/qtpromaker/main.cpp +++ b/src/tools/qtpromaker/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/screenshotcropper/cropimageview.cpp b/src/tools/screenshotcropper/cropimageview.cpp index e95ab5cd9dc..2678d5f4072 100644 --- a/src/tools/screenshotcropper/cropimageview.cpp +++ b/src/tools/screenshotcropper/cropimageview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/screenshotcropper/cropimageview.h b/src/tools/screenshotcropper/cropimageview.h index ca77dd82384..5d6cf02b36f 100644 --- a/src/tools/screenshotcropper/cropimageview.h +++ b/src/tools/screenshotcropper/cropimageview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/screenshotcropper/main.cpp b/src/tools/screenshotcropper/main.cpp index fb25d161bb3..60ac05afd0a 100644 --- a/src/tools/screenshotcropper/main.cpp +++ b/src/tools/screenshotcropper/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/screenshotcropper/screenshotcropperwindow.cpp b/src/tools/screenshotcropper/screenshotcropperwindow.cpp index f87f1183682..bb89acadfc8 100644 --- a/src/tools/screenshotcropper/screenshotcropperwindow.cpp +++ b/src/tools/screenshotcropper/screenshotcropperwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/screenshotcropper/screenshotcropperwindow.h b/src/tools/screenshotcropper/screenshotcropperwindow.h index 54facd16574..aa842e88746 100644 --- a/src/tools/screenshotcropper/screenshotcropperwindow.h +++ b/src/tools/screenshotcropper/screenshotcropperwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/adddebuggeroperation.cpp b/src/tools/sdktool/adddebuggeroperation.cpp index e7f7436102f..70183d7c42e 100644 --- a/src/tools/sdktool/adddebuggeroperation.cpp +++ b/src/tools/sdktool/adddebuggeroperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/adddebuggeroperation.h b/src/tools/sdktool/adddebuggeroperation.h index 622155a4f4e..be66fd0cbde 100644 --- a/src/tools/sdktool/adddebuggeroperation.h +++ b/src/tools/sdktool/adddebuggeroperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/addkeysoperation.cpp b/src/tools/sdktool/addkeysoperation.cpp index c10b53870b0..114b366e9ba 100644 --- a/src/tools/sdktool/addkeysoperation.cpp +++ b/src/tools/sdktool/addkeysoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/addkeysoperation.h b/src/tools/sdktool/addkeysoperation.h index d038f73422a..9fb3065cb54 100644 --- a/src/tools/sdktool/addkeysoperation.h +++ b/src/tools/sdktool/addkeysoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/addkitoperation.cpp b/src/tools/sdktool/addkitoperation.cpp index 7e2a34a4984..dee14c52908 100644 --- a/src/tools/sdktool/addkitoperation.cpp +++ b/src/tools/sdktool/addkitoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/addkitoperation.h b/src/tools/sdktool/addkitoperation.h index f7db866735f..98ae4bbc5c4 100644 --- a/src/tools/sdktool/addkitoperation.h +++ b/src/tools/sdktool/addkitoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/addqtoperation.cpp b/src/tools/sdktool/addqtoperation.cpp index 692c46e68c6..505f5810525 100644 --- a/src/tools/sdktool/addqtoperation.cpp +++ b/src/tools/sdktool/addqtoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/addqtoperation.h b/src/tools/sdktool/addqtoperation.h index df7bd512126..9a85e1688e9 100644 --- a/src/tools/sdktool/addqtoperation.h +++ b/src/tools/sdktool/addqtoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/addtoolchainoperation.cpp b/src/tools/sdktool/addtoolchainoperation.cpp index bfafd54b570..426d354b42c 100644 --- a/src/tools/sdktool/addtoolchainoperation.cpp +++ b/src/tools/sdktool/addtoolchainoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/addtoolchainoperation.h b/src/tools/sdktool/addtoolchainoperation.h index 49cd0eda434..2beb83c2f63 100644 --- a/src/tools/sdktool/addtoolchainoperation.h +++ b/src/tools/sdktool/addtoolchainoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/findkeyoperation.cpp b/src/tools/sdktool/findkeyoperation.cpp index b6ac1314c33..ac2b61648f1 100644 --- a/src/tools/sdktool/findkeyoperation.cpp +++ b/src/tools/sdktool/findkeyoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/findkeyoperation.h b/src/tools/sdktool/findkeyoperation.h index a7c49d30d00..2c210e2b9dd 100644 --- a/src/tools/sdktool/findkeyoperation.h +++ b/src/tools/sdktool/findkeyoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/findvalueoperation.cpp b/src/tools/sdktool/findvalueoperation.cpp index e1c4297bbf5..48947ee37b7 100644 --- a/src/tools/sdktool/findvalueoperation.cpp +++ b/src/tools/sdktool/findvalueoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/findvalueoperation.h b/src/tools/sdktool/findvalueoperation.h index a23d947365d..de86d7d9855 100644 --- a/src/tools/sdktool/findvalueoperation.h +++ b/src/tools/sdktool/findvalueoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/getoperation.cpp b/src/tools/sdktool/getoperation.cpp index e4ffd8c777d..1899cefa1ce 100644 --- a/src/tools/sdktool/getoperation.cpp +++ b/src/tools/sdktool/getoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/getoperation.h b/src/tools/sdktool/getoperation.h index 247d521c8bb..b19e35180a9 100644 --- a/src/tools/sdktool/getoperation.h +++ b/src/tools/sdktool/getoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/main.cpp b/src/tools/sdktool/main.cpp index 6ad6b609478..04bfff6ef27 100644 --- a/src/tools/sdktool/main.cpp +++ b/src/tools/sdktool/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/operation.cpp b/src/tools/sdktool/operation.cpp index 51c7dde8953..5a13215d0e9 100644 --- a/src/tools/sdktool/operation.cpp +++ b/src/tools/sdktool/operation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/operation.h b/src/tools/sdktool/operation.h index 187985c8105..bf69cc11361 100644 --- a/src/tools/sdktool/operation.h +++ b/src/tools/sdktool/operation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmdebuggeroperation.cpp b/src/tools/sdktool/rmdebuggeroperation.cpp index aae8572beed..e4b1e73ca2e 100644 --- a/src/tools/sdktool/rmdebuggeroperation.cpp +++ b/src/tools/sdktool/rmdebuggeroperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmdebuggeroperation.h b/src/tools/sdktool/rmdebuggeroperation.h index a4bc61e545c..aedbd8a0260 100644 --- a/src/tools/sdktool/rmdebuggeroperation.h +++ b/src/tools/sdktool/rmdebuggeroperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmkeysoperation.cpp b/src/tools/sdktool/rmkeysoperation.cpp index bd49b4df5bf..b8c621014a3 100644 --- a/src/tools/sdktool/rmkeysoperation.cpp +++ b/src/tools/sdktool/rmkeysoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmkeysoperation.h b/src/tools/sdktool/rmkeysoperation.h index 4d4f7560bee..a42d37b2b70 100644 --- a/src/tools/sdktool/rmkeysoperation.h +++ b/src/tools/sdktool/rmkeysoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmkitoperation.cpp b/src/tools/sdktool/rmkitoperation.cpp index 92bdf5cee67..164426cf716 100644 --- a/src/tools/sdktool/rmkitoperation.cpp +++ b/src/tools/sdktool/rmkitoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmkitoperation.h b/src/tools/sdktool/rmkitoperation.h index f4a6ccfc652..9581e833f1a 100644 --- a/src/tools/sdktool/rmkitoperation.h +++ b/src/tools/sdktool/rmkitoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmqtoperation.cpp b/src/tools/sdktool/rmqtoperation.cpp index f3ffcb324b1..20f74ccc474 100644 --- a/src/tools/sdktool/rmqtoperation.cpp +++ b/src/tools/sdktool/rmqtoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmqtoperation.h b/src/tools/sdktool/rmqtoperation.h index 1230613fa09..15a9af96678 100644 --- a/src/tools/sdktool/rmqtoperation.h +++ b/src/tools/sdktool/rmqtoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmtoolchainoperation.cpp b/src/tools/sdktool/rmtoolchainoperation.cpp index 2f7d532480a..be71a283c3f 100644 --- a/src/tools/sdktool/rmtoolchainoperation.cpp +++ b/src/tools/sdktool/rmtoolchainoperation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/rmtoolchainoperation.h b/src/tools/sdktool/rmtoolchainoperation.h index 71660f7b3b8..42320761843 100644 --- a/src/tools/sdktool/rmtoolchainoperation.h +++ b/src/tools/sdktool/rmtoolchainoperation.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/settings.cpp b/src/tools/sdktool/settings.cpp index f04e309179a..74b5d18d6cd 100644 --- a/src/tools/sdktool/settings.cpp +++ b/src/tools/sdktool/settings.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/sdktool/settings.h b/src/tools/sdktool/settings.h index 921900295b7..17046563775 100644 --- a/src/tools/sdktool/settings.h +++ b/src/tools/sdktool/settings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/src/tools/valgrindfake/main.cpp b/src/tools/valgrindfake/main.cpp index ea2fc188b35..f8de7c1f7e7 100644 --- a/src/tools/valgrindfake/main.cpp +++ b/src/tools/valgrindfake/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/tools/valgrindfake/outputgenerator.cpp b/src/tools/valgrindfake/outputgenerator.cpp index dd7f836e44b..d8a0238fa2f 100644 --- a/src/tools/valgrindfake/outputgenerator.cpp +++ b/src/tools/valgrindfake/outputgenerator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/tools/valgrindfake/outputgenerator.h b/src/tools/valgrindfake/outputgenerator.h index 4d56a220e58..99cdfa0612d 100644 --- a/src/tools/valgrindfake/outputgenerator.h +++ b/src/tools/valgrindfake/outputgenerator.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/src/tools/wininterrupt/wininterrupt.c b/src/tools/wininterrupt/wininterrupt.c index f2327f8a1cc..33dd9e40e3f 100644 --- a/src/tools/wininterrupt/wininterrupt.c +++ b/src/tools/wininterrupt/wininterrupt.c @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/aggregation/tst_aggregate.cpp b/tests/auto/aggregation/tst_aggregate.cpp index 7539c31a08b..7c0fd99da12 100644 --- a/tests/auto/aggregation/tst_aggregate.cpp +++ b/tests/auto/aggregation/tst_aggregate.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/changeset/tst_changeset.cpp b/tests/auto/changeset/tst_changeset.cpp index 499403afcbb..753b95239e3 100644 --- a/tests/auto/changeset/tst_changeset.cpp +++ b/tests/auto/changeset/tst_changeset.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/ast/tst_ast.cpp b/tests/auto/cplusplus/ast/tst_ast.cpp index b7474ae874c..c1f7c914562 100644 --- a/tests/auto/cplusplus/ast/tst_ast.cpp +++ b/tests/auto/cplusplus/ast/tst_ast.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp b/tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp index 3b891e78cb9..efad13c5c8b 100644 --- a/tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp +++ b/tests/auto/cplusplus/checksymbols/tst_checksymbols.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/codeformatter/tst_codeformatter.cpp b/tests/auto/cplusplus/codeformatter/tst_codeformatter.cpp index b132e3c9ba7..0704fbc8af5 100644 --- a/tests/auto/cplusplus/codeformatter/tst_codeformatter.cpp +++ b/tests/auto/cplusplus/codeformatter/tst_codeformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/cxx11/tst_cxx11.cpp b/tests/auto/cplusplus/cxx11/tst_cxx11.cpp index 9320ab24e3e..35475b6583e 100644 --- a/tests/auto/cplusplus/cxx11/tst_cxx11.cpp +++ b/tests/auto/cplusplus/cxx11/tst_cxx11.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/findusages/tst_findusages.cpp b/tests/auto/cplusplus/findusages/tst_findusages.cpp index afc8ba35bb2..7287cd154b6 100644 --- a/tests/auto/cplusplus/findusages/tst_findusages.cpp +++ b/tests/auto/cplusplus/findusages/tst_findusages.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/lexer/tst_lexer.cpp b/tests/auto/cplusplus/lexer/tst_lexer.cpp index 1dc7383d721..54fee84ccf0 100644 --- a/tests/auto/cplusplus/lexer/tst_lexer.cpp +++ b/tests/auto/cplusplus/lexer/tst_lexer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/lookup/tst_lookup.cpp b/tests/auto/cplusplus/lookup/tst_lookup.cpp index c1d448b62bd..4793de5bfdf 100644 --- a/tests/auto/cplusplus/lookup/tst_lookup.cpp +++ b/tests/auto/cplusplus/lookup/tst_lookup.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/misc/tst_misc.cpp b/tests/auto/cplusplus/misc/tst_misc.cpp index 458431312b3..5cd608bbadf 100644 --- a/tests/auto/cplusplus/misc/tst_misc.cpp +++ b/tests/auto/cplusplus/misc/tst_misc.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/preprocessor/tst_preprocessor.cpp b/tests/auto/cplusplus/preprocessor/tst_preprocessor.cpp index 2594bc692f6..1d692496e49 100644 --- a/tests/auto/cplusplus/preprocessor/tst_preprocessor.cpp +++ b/tests/auto/cplusplus/preprocessor/tst_preprocessor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/semantic/tst_semantic.cpp b/tests/auto/cplusplus/semantic/tst_semantic.cpp index bfeb09dd1b9..4b373a2f8a6 100644 --- a/tests/auto/cplusplus/semantic/tst_semantic.cpp +++ b/tests/auto/cplusplus/semantic/tst_semantic.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/simplifytypes/tst_simplifytypestest.cpp b/tests/auto/cplusplus/simplifytypes/tst_simplifytypestest.cpp index 3ce2958bbcd..0cbbe312fb4 100644 --- a/tests/auto/cplusplus/simplifytypes/tst_simplifytypestest.cpp +++ b/tests/auto/cplusplus/simplifytypes/tst_simplifytypestest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/cplusplus/typeprettyprinter/tst_typeprettyprinter.cpp b/tests/auto/cplusplus/typeprettyprinter/tst_typeprettyprinter.cpp index 4f3c430a961..4e3864f9940 100644 --- a/tests/auto/cplusplus/typeprettyprinter/tst_typeprettyprinter.cpp +++ b/tests/auto/cplusplus/typeprettyprinter/tst_typeprettyprinter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/debugger/fixme.cpp b/tests/auto/debugger/fixme.cpp index a95fb551f54..4741e5b1e40 100644 --- a/tests/auto/debugger/fixme.cpp +++ b/tests/auto/debugger/fixme.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/debugger/temporarydir.h b/tests/auto/debugger/temporarydir.h index a6f632eee93..fd640d62617 100644 --- a/tests/auto/debugger/temporarydir.h +++ b/tests/auto/debugger/temporarydir.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index fe87b9fc4f1..a499dd9014c 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/debugger/tst_gdb.cpp b/tests/auto/debugger/tst_gdb.cpp index 2d1b059ac65..7ea54baa482 100644 --- a/tests/auto/debugger/tst_gdb.cpp +++ b/tests/auto/debugger/tst_gdb.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/debugger/tst_namedemangler.cpp b/tests/auto/debugger/tst_namedemangler.cpp index 7873812e834..13d26261cf7 100644 --- a/tests/auto/debugger/tst_namedemangler.cpp +++ b/tests/auto/debugger/tst_namedemangler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/diff/differ/tst_differ.cpp b/tests/auto/diff/differ/tst_differ.cpp index 6b5ae079f88..e223a11926f 100644 --- a/tests/auto/diff/differ/tst_differ.cpp +++ b/tests/auto/diff/differ/tst_differ.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/environment/tst_environment.cpp b/tests/auto/environment/tst_environment.cpp index 35c65345b04..19e11743d85 100644 --- a/tests/auto/environment/tst_environment.cpp +++ b/tests/auto/environment/tst_environment.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin1/plugin1.cpp b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin1/plugin1.cpp index 4d787dbc547..34312fd8c40 100644 --- a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin1/plugin1.cpp +++ b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin1/plugin1.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin1/plugin1.h b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin1/plugin1.h index 875322014dd..a39dc0ea69a 100644 --- a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin1/plugin1.h +++ b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin1/plugin1.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin2/plugin2.cpp b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin2/plugin2.cpp index 5b8c3c1a2f4..12de9298052 100644 --- a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin2/plugin2.cpp +++ b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin2/plugin2.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin2/plugin2.h b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin2/plugin2.h index 0c761b2e75e..6e74e32e0aa 100644 --- a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin2/plugin2.h +++ b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin2/plugin2.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin3/plugin3.cpp b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin3/plugin3.cpp index 4e9b938d00d..42153521883 100644 --- a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin3/plugin3.cpp +++ b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin3/plugin3.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin3/plugin3.h b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin3/plugin3.h index 604f182cd0b..634395aed6d 100644 --- a/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin3/plugin3.h +++ b/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin3/plugin3.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin1/plugin1.cpp b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin1/plugin1.cpp index 2e2b36ff953..da9d7536dd7 100644 --- a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin1/plugin1.cpp +++ b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin1/plugin1.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin1/plugin1.h b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin1/plugin1.h index 41f518d2acd..700c1d84b28 100644 --- a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin1/plugin1.h +++ b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin1/plugin1.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin2/plugin2.cpp b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin2/plugin2.cpp index 302fc5886f4..5860f58253f 100644 --- a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin2/plugin2.cpp +++ b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin2/plugin2.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin2/plugin2.h b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin2/plugin2.h index 5f2143909b9..c6b6694a10a 100644 --- a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin2/plugin2.h +++ b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin2/plugin2.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin3/plugin3.cpp b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin3/plugin3.cpp index b80a85f942a..48c8154ed43 100644 --- a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin3/plugin3.cpp +++ b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin3/plugin3.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin3/plugin3.h b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin3/plugin3.h index 7de6bbeccc9..477122ca161 100644 --- a/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin3/plugin3.h +++ b/tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin3/plugin3.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginmanager/tst_pluginmanager.cpp b/tests/auto/extensionsystem/pluginmanager/tst_pluginmanager.cpp index 74cf6c7343a..05238db0ad5 100644 --- a/tests/auto/extensionsystem/pluginmanager/tst_pluginmanager.cpp +++ b/tests/auto/extensionsystem/pluginmanager/tst_pluginmanager.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginspec/testplugin/testplugin.cpp b/tests/auto/extensionsystem/pluginspec/testplugin/testplugin.cpp index 9bc87a37490..e1f8983365b 100644 --- a/tests/auto/extensionsystem/pluginspec/testplugin/testplugin.cpp +++ b/tests/auto/extensionsystem/pluginspec/testplugin/testplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginspec/testplugin/testplugin.h b/tests/auto/extensionsystem/pluginspec/testplugin/testplugin.h index 547dd4ad18a..122a5304321 100644 --- a/tests/auto/extensionsystem/pluginspec/testplugin/testplugin.h +++ b/tests/auto/extensionsystem/pluginspec/testplugin/testplugin.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginspec/testplugin/testplugin_global.h b/tests/auto/extensionsystem/pluginspec/testplugin/testplugin_global.h index 96c784551ba..9b2ae4157a4 100644 --- a/tests/auto/extensionsystem/pluginspec/testplugin/testplugin_global.h +++ b/tests/auto/extensionsystem/pluginspec/testplugin/testplugin_global.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/extensionsystem/pluginspec/testspecs/spec1.xml b/tests/auto/extensionsystem/pluginspec/testspecs/spec1.xml index 3affe7d2c39..f1d801495e4 100644 --- a/tests/auto/extensionsystem/pluginspec/testspecs/spec1.xml +++ b/tests/auto/extensionsystem/pluginspec/testspecs/spec1.xml @@ -1,6 +1,6 @@ <plugin name="test" version="1.0.1" compatVersion="1.0.0"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> This is a default license bla blubbblubb diff --git a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong1.xml b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong1.xml index a1ff56ae5eb..561c36c633c 100644 --- a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong1.xml +++ b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong1.xml @@ -1,6 +1,6 @@ <something name="test" version="1.0.1" compatVersion="1.0.0"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> This is a default license bla blubbblubb diff --git a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong2.xml b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong2.xml index ada60253637..03c12acc20b 100644 --- a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong2.xml +++ b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong2.xml @@ -1,6 +1,6 @@ <plugin version="1.0.1" compatVersion="1.0.0"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> This is a default license bla blubbblubb diff --git a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong3.xml b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong3.xml index f28f68ea216..95567f8671e 100644 --- a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong3.xml +++ b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong3.xml @@ -1,6 +1,6 @@ <plugin name="test" compatVersion="1.0.0"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> This is a default license bla blubbblubb diff --git a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong4.xml b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong4.xml index e01802b92f2..2ea33e31e89 100644 --- a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong4.xml +++ b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong4.xml @@ -1,6 +1,6 @@ <plugin name="test" version="1.0.1" compatVersion="1.0.0"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> This is a default license bla blubbblubb diff --git a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong5.xml b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong5.xml index ee43848d672..b9aaf18190b 100644 --- a/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong5.xml +++ b/tests/auto/extensionsystem/pluginspec/testspecs/spec_wrong5.xml @@ -1,6 +1,6 @@ <plugin name="test" version="1.0.1" compatVersion="1.0.0"> <vendor>Digia Plc</vendor> - <copyright>(C) 2013 Digia Plc</copyright> + <copyright>(C) 2014 Digia Plc</copyright> <license> This is a default license bla blubbblubb diff --git a/tests/auto/extensionsystem/pluginspec/tst_pluginspec.cpp b/tests/auto/extensionsystem/pluginspec/tst_pluginspec.cpp index 761e28dd826..dcb1e67b168 100644 --- a/tests/auto/extensionsystem/pluginspec/tst_pluginspec.cpp +++ b/tests/auto/extensionsystem/pluginspec/tst_pluginspec.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. @@ -77,7 +77,7 @@ void tst_PluginSpec::read() QCOMPARE(spec.experimental, false); QCOMPARE(spec.enabledInSettings, true); QCOMPARE(spec.vendor, QString("Digia Plc")); - QCOMPARE(spec.copyright, QString("(C) 2013 Digia Plc")); + QCOMPARE(spec.copyright, QString("(C) 2014 Digia Plc")); QCOMPARE(spec.license, QString("This is a default license bla\nblubbblubb\nend of terms")); QCOMPARE(spec.description, QString("This plugin is just a test.\n it demonstrates the great use of the plugin spec.")); QCOMPARE(spec.url, QString("http://qt.digi.com")); diff --git a/tests/auto/externaltool/tst_externaltooltest.cpp b/tests/auto/externaltool/tst_externaltooltest.cpp index 3958a40f511..3e6b4832058 100644 --- a/tests/auto/externaltool/tst_externaltooltest.cpp +++ b/tests/auto/externaltool/tst_externaltooltest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/filesearch/tst_filesearch.cpp b/tests/auto/filesearch/tst_filesearch.cpp index 72e57fdb2c6..878dc6b16f5 100644 --- a/tests/auto/filesearch/tst_filesearch.cpp +++ b/tests/auto/filesearch/tst_filesearch.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/basetextdocumentlayout.cpp b/tests/auto/generichighlighter/highlighterengine/basetextdocumentlayout.cpp index ca5cf2e5612..84900a7b847 100644 --- a/tests/auto/generichighlighter/highlighterengine/basetextdocumentlayout.cpp +++ b/tests/auto/generichighlighter/highlighterengine/basetextdocumentlayout.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/basetextdocumentlayout.h b/tests/auto/generichighlighter/highlighterengine/basetextdocumentlayout.h index 55baf40d6be..b2b5da1e032 100644 --- a/tests/auto/generichighlighter/highlighterengine/basetextdocumentlayout.h +++ b/tests/auto/generichighlighter/highlighterengine/basetextdocumentlayout.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/formats.cpp b/tests/auto/generichighlighter/highlighterengine/formats.cpp index 1f729e250b5..3d7b027863f 100644 --- a/tests/auto/generichighlighter/highlighterengine/formats.cpp +++ b/tests/auto/generichighlighter/highlighterengine/formats.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/formats.h b/tests/auto/generichighlighter/highlighterengine/formats.h index 9f1c152dfd4..20f541291b3 100644 --- a/tests/auto/generichighlighter/highlighterengine/formats.h +++ b/tests/auto/generichighlighter/highlighterengine/formats.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/highlightermock.cpp b/tests/auto/generichighlighter/highlighterengine/highlightermock.cpp index 79c0f57bec0..acd20633e27 100644 --- a/tests/auto/generichighlighter/highlighterengine/highlightermock.cpp +++ b/tests/auto/generichighlighter/highlighterengine/highlightermock.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/highlightermock.h b/tests/auto/generichighlighter/highlighterengine/highlightermock.h index cf0332d4f08..d8c2ec8a64b 100644 --- a/tests/auto/generichighlighter/highlighterengine/highlightermock.h +++ b/tests/auto/generichighlighter/highlighterengine/highlightermock.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/syntaxhighlighter.cpp b/tests/auto/generichighlighter/highlighterengine/syntaxhighlighter.cpp index 11c886c042e..db7dd688424 100644 --- a/tests/auto/generichighlighter/highlighterengine/syntaxhighlighter.cpp +++ b/tests/auto/generichighlighter/highlighterengine/syntaxhighlighter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/syntaxhighlighter.h b/tests/auto/generichighlighter/highlighterengine/syntaxhighlighter.h index 5caa7f9368c..1b98eff53d6 100644 --- a/tests/auto/generichighlighter/highlighterengine/syntaxhighlighter.h +++ b/tests/auto/generichighlighter/highlighterengine/syntaxhighlighter.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/tabsettings.h b/tests/auto/generichighlighter/highlighterengine/tabsettings.h index 939937ef893..69bf0c9db55 100644 --- a/tests/auto/generichighlighter/highlighterengine/tabsettings.h +++ b/tests/auto/generichighlighter/highlighterengine/tabsettings.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/highlighterengine/tst_highlighterengine.cpp b/tests/auto/generichighlighter/highlighterengine/tst_highlighterengine.cpp index 252e74c8038..68f80939ae1 100644 --- a/tests/auto/generichighlighter/highlighterengine/tst_highlighterengine.cpp +++ b/tests/auto/generichighlighter/highlighterengine/tst_highlighterengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/generichighlighter/specificrules/tst_specificrules.cpp b/tests/auto/generichighlighter/specificrules/tst_specificrules.cpp index 27eaff924f1..4e77853dbd0 100644 --- a/tests/auto/generichighlighter/specificrules/tst_specificrules.cpp +++ b/tests/auto/generichighlighter/specificrules/tst_specificrules.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/ioutils/tst_ioutils.cpp b/tests/auto/ioutils/tst_ioutils.cpp index 4ccb1efca2a..e7e47782727 100644 --- a/tests/auto/ioutils/tst_ioutils.cpp +++ b/tests/auto/ioutils/tst_ioutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/profilewriter/tst_profilewriter.cpp b/tests/auto/profilewriter/tst_profilewriter.cpp index 10c3c305c5e..9dfdf49de4e 100644 --- a/tests/auto/profilewriter/tst_profilewriter.cpp +++ b/tests/auto/profilewriter/tst_profilewriter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/codemodel/check/tst_check.cpp b/tests/auto/qml/codemodel/check/tst_check.cpp index 8c39c747ab9..920a768e5ab 100644 --- a/tests/auto/qml/codemodel/check/tst_check.cpp +++ b/tests/auto/qml/codemodel/check/tst_check.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/persistenttrie/tst_testtrie.cpp b/tests/auto/qml/persistenttrie/tst_testtrie.cpp index 958e6b65da4..75a4b48b894 100644 --- a/tests/auto/qml/persistenttrie/tst_testtrie.cpp +++ b/tests/auto/qml/persistenttrie/tst_testtrie.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/persistenttrie/tst_testtrie.h b/tests/auto/qml/persistenttrie/tst_testtrie.h index bcfdd97258e..2f6ddf0fc94 100644 --- a/tests/auto/qml/persistenttrie/tst_testtrie.h +++ b/tests/auto/qml/persistenttrie/tst_testtrie.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.cpp b/tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.cpp index 16850f548ff..25a0d528f5e 100644 --- a/tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.cpp +++ b/tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.h b/tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.h index 8c1129effe3..4d78e3ea135 100644 --- a/tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.h +++ b/tests/auto/qml/qmldesigner/bauhaustests/testbauhaus.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/common/statichelpers.cpp b/tests/auto/qml/qmldesigner/common/statichelpers.cpp index 5970e697db5..e3049c5b115 100644 --- a/tests/auto/qml/qmldesigner/common/statichelpers.cpp +++ b/tests/auto/qml/qmldesigner/common/statichelpers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/coretests/testrewriterview.cpp b/tests/auto/qml/qmldesigner/coretests/testrewriterview.cpp index 543e12edb17..14aec60ce5b 100644 --- a/tests/auto/qml/qmldesigner/coretests/testrewriterview.cpp +++ b/tests/auto/qml/qmldesigner/coretests/testrewriterview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/coretests/testrewriterview.h b/tests/auto/qml/qmldesigner/coretests/testrewriterview.h index cec920f9cde..554183f46ac 100644 --- a/tests/auto/qml/qmldesigner/coretests/testrewriterview.h +++ b/tests/auto/qml/qmldesigner/coretests/testrewriterview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/coretests/tst_testcore.cpp b/tests/auto/qml/qmldesigner/coretests/tst_testcore.cpp index d48ca4d0b00..c87708d8e54 100644 --- a/tests/auto/qml/qmldesigner/coretests/tst_testcore.cpp +++ b/tests/auto/qml/qmldesigner/coretests/tst_testcore.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/coretests/tst_testcore.h b/tests/auto/qml/qmldesigner/coretests/tst_testcore.h index a8293a33ae6..dfac61b5ebf 100644 --- a/tests/auto/qml/qmldesigner/coretests/tst_testcore.h +++ b/tests/auto/qml/qmldesigner/coretests/tst_testcore.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/MyButton.qml b/tests/auto/qml/qmldesigner/data/fx/MyButton.qml index cbe4ca7ddf3..9960a37e639 100644 --- a/tests/auto/qml/qmldesigner/data/fx/MyButton.qml +++ b/tests/auto/qml/qmldesigner/data/fx/MyButton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/TabWidget.qml b/tests/auto/qml/qmldesigner/data/fx/TabWidget.qml index e559eb0ac76..948bc06a4dd 100644 --- a/tests/auto/qml/qmldesigner/data/fx/TabWidget.qml +++ b/tests/auto/qml/qmldesigner/data/fx/TabWidget.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/attributes.qml b/tests/auto/qml/qmldesigner/data/fx/attributes.qml index 77bfa0d9a0a..c4d572de15b 100644 --- a/tests/auto/qml/qmldesigner/data/fx/attributes.qml +++ b/tests/auto/qml/qmldesigner/data/fx/attributes.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/bigtest.qml b/tests/auto/qml/qmldesigner/data/fx/bigtest.qml index 6d4d63cb26d..b6659f4e96e 100644 --- a/tests/auto/qml/qmldesigner/data/fx/bigtest.qml +++ b/tests/auto/qml/qmldesigner/data/fx/bigtest.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/components.qml b/tests/auto/qml/qmldesigner/data/fx/components.qml index b3326952c5c..dc3dd2e402e 100644 --- a/tests/auto/qml/qmldesigner/data/fx/components.qml +++ b/tests/auto/qml/qmldesigner/data/fx/components.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/empty.qml b/tests/auto/qml/qmldesigner/data/fx/empty.qml index f3b3ee26207..2b3c6c26776 100644 --- a/tests/auto/qml/qmldesigner/data/fx/empty.qml +++ b/tests/auto/qml/qmldesigner/data/fx/empty.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/helloworld.qml b/tests/auto/qml/qmldesigner/data/fx/helloworld.qml index c05f710b539..3a53670a801 100644 --- a/tests/auto/qml/qmldesigner/data/fx/helloworld.qml +++ b/tests/auto/qml/qmldesigner/data/fx/helloworld.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/image.qml b/tests/auto/qml/qmldesigner/data/fx/image.qml index 9e6244f170b..4846694bd02 100644 --- a/tests/auto/qml/qmldesigner/data/fx/image.qml +++ b/tests/auto/qml/qmldesigner/data/fx/image.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/imports.qml b/tests/auto/qml/qmldesigner/data/fx/imports.qml index c68b42d3128..03d74d89a15 100644 --- a/tests/auto/qml/qmldesigner/data/fx/imports.qml +++ b/tests/auto/qml/qmldesigner/data/fx/imports.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/properties.qml b/tests/auto/qml/qmldesigner/data/fx/properties.qml index 3d2cbf77d58..8ba338e40b9 100644 --- a/tests/auto/qml/qmldesigner/data/fx/properties.qml +++ b/tests/auto/qml/qmldesigner/data/fx/properties.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/selectiontest.qml b/tests/auto/qml/qmldesigner/data/fx/selectiontest.qml index 30c52591a59..090736f87f2 100644 --- a/tests/auto/qml/qmldesigner/data/fx/selectiontest.qml +++ b/tests/auto/qml/qmldesigner/data/fx/selectiontest.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/states.qml b/tests/auto/qml/qmldesigner/data/fx/states.qml index bb49be73876..995ac81cf92 100644 --- a/tests/auto/qml/qmldesigner/data/fx/states.qml +++ b/tests/auto/qml/qmldesigner/data/fx/states.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/subitems/SubItem.qml b/tests/auto/qml/qmldesigner/data/fx/subitems/SubItem.qml index d8e757f6484..2f2145a5df3 100644 --- a/tests/auto/qml/qmldesigner/data/fx/subitems/SubItem.qml +++ b/tests/auto/qml/qmldesigner/data/fx/subitems/SubItem.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/tabs.qml b/tests/auto/qml/qmldesigner/data/fx/tabs.qml index bd2d1c62b67..910b0d11dc5 100644 --- a/tests/auto/qml/qmldesigner/data/fx/tabs.qml +++ b/tests/auto/qml/qmldesigner/data/fx/tabs.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/topitem.qml b/tests/auto/qml/qmldesigner/data/fx/topitem.qml index f8f692a8fa7..b15096b47eb 100644 --- a/tests/auto/qml/qmldesigner/data/fx/topitem.qml +++ b/tests/auto/qml/qmldesigner/data/fx/topitem.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/usingbutton.qml b/tests/auto/qml/qmldesigner/data/fx/usingbutton.qml index 3d8c9c56372..c7aae10599b 100644 --- a/tests/auto/qml/qmldesigner/data/fx/usingbutton.qml +++ b/tests/auto/qml/qmldesigner/data/fx/usingbutton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/fx/usingmybutton.qml b/tests/auto/qml/qmldesigner/data/fx/usingmybutton.qml index 5983886800b..42736ab4f96 100644 --- a/tests/auto/qml/qmldesigner/data/fx/usingmybutton.qml +++ b/tests/auto/qml/qmldesigner/data/fx/usingmybutton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/data/qwidget/test.qml b/tests/auto/qml/qmldesigner/data/qwidget/test.qml index 50ce6be56cb..55921d97052 100644 --- a/tests/auto/qml/qmldesigner/data/qwidget/test.qml +++ b/tests/auto/qml/qmldesigner/data/qwidget/test.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/propertyeditortests/testpropertyeditor.cpp b/tests/auto/qml/qmldesigner/propertyeditortests/testpropertyeditor.cpp index 6035c2832bf..725be97809c 100644 --- a/tests/auto/qml/qmldesigner/propertyeditortests/testpropertyeditor.cpp +++ b/tests/auto/qml/qmldesigner/propertyeditortests/testpropertyeditor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/propertyeditortests/testpropertyeditor.h b/tests/auto/qml/qmldesigner/propertyeditortests/testpropertyeditor.h index 3e82ce4d11a..befeb9648f0 100644 --- a/tests/auto/qml/qmldesigner/propertyeditortests/testpropertyeditor.h +++ b/tests/auto/qml/qmldesigner/propertyeditortests/testpropertyeditor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/testview.cpp b/tests/auto/qml/qmldesigner/testview.cpp index b1d0aca75a8..a103b5bd778 100644 --- a/tests/auto/qml/qmldesigner/testview.cpp +++ b/tests/auto/qml/qmldesigner/testview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmldesigner/testview.h b/tests/auto/qml/qmldesigner/testview.h index a377d38d921..0f250c4c0bd 100644 --- a/tests/auto/qml/qmldesigner/testview.h +++ b/tests/auto/qml/qmldesigner/testview.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmleditor/qmlcodeformatter/tst_qmlcodeformatter.cpp b/tests/auto/qml/qmleditor/qmlcodeformatter/tst_qmlcodeformatter.cpp index d5358c3f61d..2a45536080a 100644 --- a/tests/auto/qml/qmleditor/qmlcodeformatter/tst_qmlcodeformatter.cpp +++ b/tests/auto/qml/qmleditor/qmlcodeformatter/tst_qmlcodeformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmleditor/qmllookup/data/localIdLookup.qml b/tests/auto/qml/qmleditor/qmllookup/data/localIdLookup.qml index 97b2321e87b..953149adedf 100644 --- a/tests/auto/qml/qmleditor/qmllookup/data/localIdLookup.qml +++ b/tests/auto/qml/qmleditor/qmllookup/data/localIdLookup.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmleditor/qmllookup/data/localRootLookup.qml b/tests/auto/qml/qmleditor/qmllookup/data/localRootLookup.qml index 0077e271e39..ef2155ea6a9 100644 --- a/tests/auto/qml/qmleditor/qmllookup/data/localRootLookup.qml +++ b/tests/auto/qml/qmleditor/qmllookup/data/localRootLookup.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmleditor/qmllookup/data/localScopeLookup.qml b/tests/auto/qml/qmleditor/qmllookup/data/localScopeLookup.qml index 2bbaf39ffd6..acc3cea67d1 100644 --- a/tests/auto/qml/qmleditor/qmllookup/data/localScopeLookup.qml +++ b/tests/auto/qml/qmleditor/qmllookup/data/localScopeLookup.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmleditor/qmllookup/data/localScriptMethodLookup.qml b/tests/auto/qml/qmleditor/qmllookup/data/localScriptMethodLookup.qml index b08ed86fde4..b7237c928b0 100644 --- a/tests/auto/qml/qmleditor/qmllookup/data/localScriptMethodLookup.qml +++ b/tests/auto/qml/qmleditor/qmllookup/data/localScriptMethodLookup.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmleditor/qmllookup/tst_qmllookup.cpp b/tests/auto/qml/qmleditor/qmllookup/tst_qmllookup.cpp index 5a22a373c64..1f1dae96faa 100644 --- a/tests/auto/qml/qmleditor/qmllookup/tst_qmllookup.cpp +++ b/tests/auto/qml/qmleditor/qmllookup/tst_qmllookup.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmljssimplereader/tst_qmljssimplereader.cpp b/tests/auto/qml/qmljssimplereader/tst_qmljssimplereader.cpp index 2d23ebc04d8..f512cf9412e 100644 --- a/tests/auto/qml/qmljssimplereader/tst_qmljssimplereader.cpp +++ b/tests/auto/qml/qmljssimplereader/tst_qmljssimplereader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qmlprojectmanager/fileformat/tst_fileformat.cpp b/tests/auto/qml/qmlprojectmanager/fileformat/tst_fileformat.cpp index e0f90b08847..1d197478bd5 100644 --- a/tests/auto/qml/qmlprojectmanager/fileformat/tst_fileformat.cpp +++ b/tests/auto/qml/qmlprojectmanager/fileformat/tst_fileformat.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/qrcparser/tst_qrcparser.cpp b/tests/auto/qml/qrcparser/tst_qrcparser.cpp index b642e5a163f..8b0e70a956b 100644 --- a/tests/auto/qml/qrcparser/tst_qrcparser.cpp +++ b/tests/auto/qml/qrcparser/tst_qrcparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qml/reformatter/tst_reformatter.cpp b/tests/auto/qml/reformatter/tst_reformatter.cpp index cfffdd58c71..9a4d5b46e58 100644 --- a/tests/auto/qml/reformatter/tst_reformatter.cpp +++ b/tests/auto/qml/reformatter/tst_reformatter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/qtcprocess/tst_qtcprocess.cpp b/tests/auto/qtcprocess/tst_qtcprocess.cpp index f6cd2c8a1a4..797f08bdb2f 100644 --- a/tests/auto/qtcprocess/tst_qtcprocess.cpp +++ b/tests/auto/qtcprocess/tst_qtcprocess.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/treeviewfind/tst_treeviewfind.cpp b/tests/auto/treeviewfind/tst_treeviewfind.cpp index 0e288ca0b0f..a684e9a7ca4 100644 --- a/tests/auto/treeviewfind/tst_treeviewfind.cpp +++ b/tests/auto/treeviewfind/tst_treeviewfind.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/utils/ansiescapecodehandler/tst_ansiescapecodehandler.cpp b/tests/auto/utils/ansiescapecodehandler/tst_ansiescapecodehandler.cpp index eab1018e4ea..b2fa39fb7de 100644 --- a/tests/auto/utils/ansiescapecodehandler/tst_ansiescapecodehandler.cpp +++ b/tests/auto/utils/ansiescapecodehandler/tst_ansiescapecodehandler.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Andre Hartmann <aha_1980@gmx.de> +** Copyright (C) 2014 Andre Hartmann <aha_1980@gmx.de> ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/utils/fileutils/tst_fileutils.cpp b/tests/auto/utils/fileutils/tst_fileutils.cpp index 6bb2d5a3fb8..0946be99b0e 100644 --- a/tests/auto/utils/fileutils/tst_fileutils.cpp +++ b/tests/auto/utils/fileutils/tst_fileutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/utils_stringutils/tst_stringutils.cpp b/tests/auto/utils_stringutils/tst_stringutils.cpp index eedb9049625..2b5fdbda7e3 100644 --- a/tests/auto/utils_stringutils/tst_stringutils.cpp +++ b/tests/auto/utils_stringutils/tst_stringutils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/callgrind/callgrindparsertests.cpp b/tests/auto/valgrind/callgrind/callgrindparsertests.cpp index da909fc3b1c..8da0454eeac 100644 --- a/tests/auto/valgrind/callgrind/callgrindparsertests.cpp +++ b/tests/auto/valgrind/callgrind/callgrindparsertests.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/callgrind/callgrindparsertests.h b/tests/auto/valgrind/callgrind/callgrindparsertests.h index f543c0946db..a735b4e625c 100644 --- a/tests/auto/valgrind/callgrind/callgrindparsertests.h +++ b/tests/auto/valgrind/callgrind/callgrindparsertests.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/callgrind/modeltest.cpp b/tests/auto/valgrind/callgrind/modeltest.cpp index f47b4c22e6f..b8c0d1f5bcf 100644 --- a/tests/auto/valgrind/callgrind/modeltest.cpp +++ b/tests/auto/valgrind/callgrind/modeltest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/callgrind/modeltest.h b/tests/auto/valgrind/callgrind/modeltest.h index 7ffca8a91cb..95b23f88e4f 100644 --- a/tests/auto/valgrind/callgrind/modeltest.h +++ b/tests/auto/valgrind/callgrind/modeltest.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/modeldemo.cpp b/tests/auto/valgrind/memcheck/modeldemo.cpp index 2c52ed30c02..c725df1ff1e 100644 --- a/tests/auto/valgrind/memcheck/modeldemo.cpp +++ b/tests/auto/valgrind/memcheck/modeldemo.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/tests/auto/valgrind/memcheck/modeldemo.h b/tests/auto/valgrind/memcheck/modeldemo.h index 850f60307bc..72053d813c6 100644 --- a/tests/auto/valgrind/memcheck/modeldemo.h +++ b/tests/auto/valgrind/memcheck/modeldemo.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/tests/auto/valgrind/memcheck/parsertests.cpp b/tests/auto/valgrind/memcheck/parsertests.cpp index 08bf0d80c6b..63267cb9f0d 100644 --- a/tests/auto/valgrind/memcheck/parsertests.cpp +++ b/tests/auto/valgrind/memcheck/parsertests.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/tests/auto/valgrind/memcheck/parsertests.h b/tests/auto/valgrind/memcheck/parsertests.h index 91e74c8a53e..db0996fca58 100644 --- a/tests/auto/valgrind/memcheck/parsertests.h +++ b/tests/auto/valgrind/memcheck/parsertests.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com) ** diff --git a/tests/auto/valgrind/memcheck/testapps/free1/main.cpp b/tests/auto/valgrind/memcheck/testapps/free1/main.cpp index 1dbd64bf4f5..2dceac98993 100644 --- a/tests/auto/valgrind/memcheck/testapps/free1/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/free1/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/free2/main.cpp b/tests/auto/valgrind/memcheck/testapps/free2/main.cpp index 664b81ddf34..785e258fe66 100644 --- a/tests/auto/valgrind/memcheck/testapps/free2/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/free2/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/invalidjump/main.cpp b/tests/auto/valgrind/memcheck/testapps/invalidjump/main.cpp index bc9fa8bd6d0..bba3ee2c667 100644 --- a/tests/auto/valgrind/memcheck/testapps/invalidjump/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/invalidjump/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/leak1/main.cpp b/tests/auto/valgrind/memcheck/testapps/leak1/main.cpp index a531d660851..b4134705185 100644 --- a/tests/auto/valgrind/memcheck/testapps/leak1/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/leak1/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/leak2/main.cpp b/tests/auto/valgrind/memcheck/testapps/leak2/main.cpp index bee6ef29906..696f5116ba3 100644 --- a/tests/auto/valgrind/memcheck/testapps/leak2/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/leak2/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/leak3/main.cpp b/tests/auto/valgrind/memcheck/testapps/leak3/main.cpp index 5f972ef434a..3fc00218884 100644 --- a/tests/auto/valgrind/memcheck/testapps/leak3/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/leak3/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/leak4/main.cpp b/tests/auto/valgrind/memcheck/testapps/leak4/main.cpp index ddab9fa60e8..7c447f6df3c 100644 --- a/tests/auto/valgrind/memcheck/testapps/leak4/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/leak4/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/overlap/main.cpp b/tests/auto/valgrind/memcheck/testapps/overlap/main.cpp index 1ef99bb2991..1d431a53534 100644 --- a/tests/auto/valgrind/memcheck/testapps/overlap/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/overlap/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/syscall/main.cpp b/tests/auto/valgrind/memcheck/testapps/syscall/main.cpp index 01e8b22bac9..cfa19ff794e 100644 --- a/tests/auto/valgrind/memcheck/testapps/syscall/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/syscall/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/uninit1/main.cpp b/tests/auto/valgrind/memcheck/testapps/uninit1/main.cpp index 6ddd7f39b04..497201f3082 100644 --- a/tests/auto/valgrind/memcheck/testapps/uninit1/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/uninit1/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/uninit2/main.cpp b/tests/auto/valgrind/memcheck/testapps/uninit2/main.cpp index e472fc5470e..5db17728ae0 100644 --- a/tests/auto/valgrind/memcheck/testapps/uninit2/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/uninit2/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testapps/uninit3/main.cpp b/tests/auto/valgrind/memcheck/testapps/uninit3/main.cpp index 6b251b2602a..cf91566a75a 100644 --- a/tests/auto/valgrind/memcheck/testapps/uninit3/main.cpp +++ b/tests/auto/valgrind/memcheck/testapps/uninit3/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/auto/valgrind/memcheck/testrunner.cpp b/tests/auto/valgrind/memcheck/testrunner.cpp index a6fccd886dc..d5c9cc11888 100644 --- a/tests/auto/valgrind/memcheck/testrunner.cpp +++ b/tests/auto/valgrind/memcheck/testrunner.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/tests/auto/valgrind/memcheck/testrunner.h b/tests/auto/valgrind/memcheck/testrunner.h index b6275370abb..511953181b6 100644 --- a/tests/auto/valgrind/memcheck/testrunner.h +++ b/tests/auto/valgrind/memcheck/testrunner.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** Author: Milian Wolff, KDAB (milian.wolff@kdab.com) ** diff --git a/tests/cppmodelmanager/testdata_refresh/defines.h b/tests/cppmodelmanager/testdata_refresh/defines.h index 4563c017ed4..35498d3f590 100644 --- a/tests/cppmodelmanager/testdata_refresh/defines.h +++ b/tests/cppmodelmanager/testdata_refresh/defines.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/cppmodelmanager/testdata_refresh/header.h b/tests/cppmodelmanager/testdata_refresh/header.h index 55ce0a2a4c0..9a4bc37b380 100644 --- a/tests/cppmodelmanager/testdata_refresh/header.h +++ b/tests/cppmodelmanager/testdata_refresh/header.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/cppmodelmanager/testdata_refresh/source.cpp b/tests/cppmodelmanager/testdata_refresh/source.cpp index 55ce0a2a4c0..9a4bc37b380 100644 --- a/tests/cppmodelmanager/testdata_refresh/source.cpp +++ b/tests/cppmodelmanager/testdata_refresh/source.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/appwizards/helpers.cpp b/tests/manual/appwizards/helpers.cpp index 54a6e8dd1a0..215f91b62b8 100644 --- a/tests/manual/appwizards/helpers.cpp +++ b/tests/manual/appwizards/helpers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/appwizards/main.cpp b/tests/manual/appwizards/main.cpp index b55a6c04a3b..bba181cb3d8 100644 --- a/tests/manual/appwizards/main.cpp +++ b/tests/manual/appwizards/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/appwizards/qmlimportscenario_01/myqmlapp.qml b/tests/manual/appwizards/qmlimportscenario_01/myqmlapp.qml index f454b2a6df1..42cd4390750 100644 --- a/tests/manual/appwizards/qmlimportscenario_01/myqmlapp.qml +++ b/tests/manual/appwizards/qmlimportscenario_01/myqmlapp.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/appwizards/qmlimportscenario_01/qmlproject01/QmlProject01.qml b/tests/manual/appwizards/qmlimportscenario_01/qmlproject01/QmlProject01.qml index 8540de7efd7..2f697a907ee 100644 --- a/tests/manual/appwizards/qmlimportscenario_01/qmlproject01/QmlProject01.qml +++ b/tests/manual/appwizards/qmlimportscenario_01/qmlproject01/QmlProject01.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/appwizards/qmlimportscenario_01/qmlproject02/QmlProject02.qml b/tests/manual/appwizards/qmlimportscenario_01/qmlproject02/QmlProject02.qml index af7600cc7e3..9030358637f 100644 --- a/tests/manual/appwizards/qmlimportscenario_01/qmlproject02/QmlProject02.qml +++ b/tests/manual/appwizards/qmlimportscenario_01/qmlproject02/QmlProject02.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/cplusplus-frontend/cplusplus-frontend.cpp b/tests/manual/cplusplus-frontend/cplusplus-frontend.cpp index ff5c23eef3b..53475f65144 100644 --- a/tests/manual/cplusplus-frontend/cplusplus-frontend.cpp +++ b/tests/manual/cplusplus-frontend/cplusplus-frontend.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/cplusplus-frontend/tests/t1.cpp b/tests/manual/cplusplus-frontend/tests/t1.cpp index 47dac364ac3..0199f89644c 100644 --- a/tests/manual/cplusplus-frontend/tests/t1.cpp +++ b/tests/manual/cplusplus-frontend/tests/t1.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/cplusplus-tools/detail/header.h b/tests/manual/cplusplus-tools/detail/header.h index 3d10c2fb798..be4cd785466 100644 --- a/tests/manual/cplusplus-tools/detail/header.h +++ b/tests/manual/cplusplus-tools/detail/header.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/cplusplus-tools/detail/source.cpp b/tests/manual/cplusplus-tools/detail/source.cpp index 15955351e4d..e6bc4f54078 100644 --- a/tests/manual/cplusplus-tools/detail/source.cpp +++ b/tests/manual/cplusplus-tools/detail/source.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/cplusplus-tools/dummy.cpp b/tests/manual/cplusplus-tools/dummy.cpp index 015fc4c19eb..abf5bfe1926 100644 --- a/tests/manual/cplusplus-tools/dummy.cpp +++ b/tests/manual/cplusplus-tools/dummy.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/cplusplus-tools/dummy.h b/tests/manual/cplusplus-tools/dummy.h index 7908d914bc4..7b8ca761a22 100644 --- a/tests/manual/cplusplus-tools/dummy.h +++ b/tests/manual/cplusplus-tools/dummy.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/cplusplus-tools/main.cpp b/tests/manual/cplusplus-tools/main.cpp index b55a542181c..9bd6d3a07ad 100644 --- a/tests/manual/cplusplus-tools/main.cpp +++ b/tests/manual/cplusplus-tools/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/cppquickfix/completeswitchcasestatement.cpp b/tests/manual/cppquickfix/completeswitchcasestatement.cpp index bc8ba9283e8..07e4b5bb5b1 100644 --- a/tests/manual/cppquickfix/completeswitchcasestatement.cpp +++ b/tests/manual/cppquickfix/completeswitchcasestatement.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/cppquickfix/convertnumericliteral.cpp b/tests/manual/cppquickfix/convertnumericliteral.cpp index 58059f7a59c..7d1e126e188 100644 --- a/tests/manual/cppquickfix/convertnumericliteral.cpp +++ b/tests/manual/cppquickfix/convertnumericliteral.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/boost/main.cpp b/tests/manual/debugger/boost/main.cpp index 8e99546ac15..becb4c45054 100644 --- a/tests/manual/debugger/boost/main.cpp +++ b/tests/manual/debugger/boost/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/gui/mainwindow.cpp b/tests/manual/debugger/gui/mainwindow.cpp index eadeb290ba9..e90e09a5eda 100644 --- a/tests/manual/debugger/gui/mainwindow.cpp +++ b/tests/manual/debugger/gui/mainwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/gui/mainwindow.h b/tests/manual/debugger/gui/mainwindow.h index 5157f67de94..2c2fd8b8742 100644 --- a/tests/manual/debugger/gui/mainwindow.h +++ b/tests/manual/debugger/gui/mainwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/gui/tst_gui.cpp b/tests/manual/debugger/gui/tst_gui.cpp index dcaacbd3aee..eceef3948ae 100644 --- a/tests/manual/debugger/gui/tst_gui.cpp +++ b/tests/manual/debugger/gui/tst_gui.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/helper/main.cpp b/tests/manual/debugger/helper/main.cpp index 01f82fc7ed3..14f9f6aed17 100644 --- a/tests/manual/debugger/helper/main.cpp +++ b/tests/manual/debugger/helper/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/script/math.js b/tests/manual/debugger/script/math.js index 1fd46674c42..f1de6735fea 100644 --- a/tests/manual/debugger/script/math.js +++ b/tests/manual/debugger/script/math.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/simple/deep/deep/simple_test_app.h b/tests/manual/debugger/simple/deep/deep/simple_test_app.h index 820fe560c73..6df72f5ee7e 100644 --- a/tests/manual/debugger/simple/deep/deep/simple_test_app.h +++ b/tests/manual/debugger/simple/deep/deep/simple_test_app.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp index 0542326baa3..2d98cbef23e 100644 --- a/tests/manual/debugger/simple/simple_test_app.cpp +++ b/tests/manual/debugger/simple/simple_test_app.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/simple/simple_test_plugin.cpp b/tests/manual/debugger/simple/simple_test_plugin.cpp index e032a42e5ef..724110b03c8 100644 --- a/tests/manual/debugger/simple/simple_test_plugin.cpp +++ b/tests/manual/debugger/simple/simple_test_plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/spacy path/app with space.cpp b/tests/manual/debugger/spacy path/app with space.cpp index d5291c31cd1..6ef32814500 100644 --- a/tests/manual/debugger/spacy path/app with space.cpp +++ b/tests/manual/debugger/spacy path/app with space.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/spacy path/plugin with space.cpp b/tests/manual/debugger/spacy path/plugin with space.cpp index b77366d8bfa..fc742c6933b 100644 --- a/tests/manual/debugger/spacy path/plugin with space.cpp +++ b/tests/manual/debugger/spacy path/plugin with space.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/spacy-file/app with space.cpp b/tests/manual/debugger/spacy-file/app with space.cpp index d5291c31cd1..6ef32814500 100644 --- a/tests/manual/debugger/spacy-file/app with space.cpp +++ b/tests/manual/debugger/spacy-file/app with space.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/debugger/spacy-file/plugin with space.cpp b/tests/manual/debugger/spacy-file/plugin with space.cpp index b77366d8bfa..fc742c6933b 100644 --- a/tests/manual/debugger/spacy-file/plugin with space.cpp +++ b/tests/manual/debugger/spacy-file/plugin with space.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/dockwidgets/main.cpp b/tests/manual/dockwidgets/main.cpp index b69b30b3842..87ae4af04e6 100644 --- a/tests/manual/dockwidgets/main.cpp +++ b/tests/manual/dockwidgets/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/dockwidgets/mainwindow.cpp b/tests/manual/dockwidgets/mainwindow.cpp index 772075628b3..b8168c0bdd0 100644 --- a/tests/manual/dockwidgets/mainwindow.cpp +++ b/tests/manual/dockwidgets/mainwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/dockwidgets/mainwindow.h b/tests/manual/dockwidgets/mainwindow.h index 5e53e113e2a..6fe0058ae4f 100644 --- a/tests/manual/dockwidgets/mainwindow.h +++ b/tests/manual/dockwidgets/mainwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/fakevim/main.cpp b/tests/manual/fakevim/main.cpp index fd965122be1..779b107ad7a 100644 --- a/tests/manual/fakevim/main.cpp +++ b/tests/manual/fakevim/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/features/tst_features.cpp b/tests/manual/features/tst_features.cpp index 7f59d17ad04..59f776a7432 100644 --- a/tests/manual/features/tst_features.cpp +++ b/tests/manual/features/tst_features.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/plain-cplusplus/Preprocessor.cpp b/tests/manual/plain-cplusplus/Preprocessor.cpp index 4345d83a2a2..5fbc9966f7c 100644 --- a/tests/manual/plain-cplusplus/Preprocessor.cpp +++ b/tests/manual/plain-cplusplus/Preprocessor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/plain-cplusplus/Preprocessor.h b/tests/manual/plain-cplusplus/Preprocessor.h index 5031cda1ae3..a30bd7751da 100644 --- a/tests/manual/plain-cplusplus/Preprocessor.h +++ b/tests/manual/plain-cplusplus/Preprocessor.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/plain-cplusplus/main.cpp b/tests/manual/plain-cplusplus/main.cpp index 77233e8250c..3fb94be60b7 100644 --- a/tests/manual/plain-cplusplus/main.cpp +++ b/tests/manual/plain-cplusplus/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/preprocessor/main.cpp b/tests/manual/preprocessor/main.cpp index d6c1fdb41b9..3ed1fd7a0d9 100644 --- a/tests/manual/preprocessor/main.cpp +++ b/tests/manual/preprocessor/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/process/main.cpp b/tests/manual/process/main.cpp index 21d8d60c1b8..c58715bff30 100644 --- a/tests/manual/process/main.cpp +++ b/tests/manual/process/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/process/mainwindow.cpp b/tests/manual/process/mainwindow.cpp index ca33bf6d6c0..7854f79a1fe 100644 --- a/tests/manual/process/mainwindow.cpp +++ b/tests/manual/process/mainwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/process/mainwindow.h b/tests/manual/process/mainwindow.h index a4889c0a518..4e64f931398 100644 --- a/tests/manual/process/mainwindow.h +++ b/tests/manual/process/mainwindow.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/proparser/main.cpp b/tests/manual/proparser/main.cpp index c7b5d972327..42ee53fed6b 100644 --- a/tests/manual/proparser/main.cpp +++ b/tests/manual/proparser/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/components/MyButton.qml b/tests/manual/qml/testfiles/components/MyButton.qml index 93033cd5d33..4138cbf74d3 100644 --- a/tests/manual/qml/testfiles/components/MyButton.qml +++ b/tests/manual/qml/testfiles/components/MyButton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/empty.qml b/tests/manual/qml/testfiles/empty.qml index 9eeae13bf03..11a6607c98d 100644 --- a/tests/manual/qml/testfiles/empty.qml +++ b/tests/manual/qml/testfiles/empty.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/flipable.qml b/tests/manual/qml/testfiles/flipable.qml index 1f4f6dd7a62..7b0ecd67bc3 100644 --- a/tests/manual/qml/testfiles/flipable.qml +++ b/tests/manual/qml/testfiles/flipable.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/helloworld.qml b/tests/manual/qml/testfiles/helloworld.qml index c05f710b539..3a53670a801 100644 --- a/tests/manual/qml/testfiles/helloworld.qml +++ b/tests/manual/qml/testfiles/helloworld.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/helloworld_inverted.qml b/tests/manual/qml/testfiles/helloworld_inverted.qml index 863912b4333..45821b103d6 100644 --- a/tests/manual/qml/testfiles/helloworld_inverted.qml +++ b/tests/manual/qml/testfiles/helloworld_inverted.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/images.qml b/tests/manual/qml/testfiles/images.qml index de83edd5da8..d9365272e74 100644 --- a/tests/manual/qml/testfiles/images.qml +++ b/tests/manual/qml/testfiles/images.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/listmodel.qml b/tests/manual/qml/testfiles/listmodel.qml index d4210c8d3c0..bfa72575c1f 100644 --- a/tests/manual/qml/testfiles/listmodel.qml +++ b/tests/manual/qml/testfiles/listmodel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/listview.qml b/tests/manual/qml/testfiles/listview.qml index 6153fa3e670..43d26825d34 100644 --- a/tests/manual/qml/testfiles/listview.qml +++ b/tests/manual/qml/testfiles/listview.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/states.qml b/tests/manual/qml/testfiles/states.qml index bb49be73876..995ac81cf92 100644 --- a/tests/manual/qml/testfiles/states.qml +++ b/tests/manual/qml/testfiles/states.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/subcomponent.qml b/tests/manual/qml/testfiles/subcomponent.qml index 89a9d775124..b55bd44139e 100644 --- a/tests/manual/qml/testfiles/subcomponent.qml +++ b/tests/manual/qml/testfiles/subcomponent.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/usingbutton.qml b/tests/manual/qml/testfiles/usingbutton.qml index 3d8c9c56372..c7aae10599b 100644 --- a/tests/manual/qml/testfiles/usingbutton.qml +++ b/tests/manual/qml/testfiles/usingbutton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles/webview.qml b/tests/manual/qml/testfiles/webview.qml index 523a42c730a..51c05dd3e61 100644 --- a/tests/manual/qml/testfiles/webview.qml +++ b/tests/manual/qml/testfiles/webview.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/components/MyButton.qml b/tests/manual/qml/testfiles_quick2/components/MyButton.qml index 0aa1b1b09ed..e53a0af2973 100644 --- a/tests/manual/qml/testfiles_quick2/components/MyButton.qml +++ b/tests/manual/qml/testfiles_quick2/components/MyButton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/empty.qml b/tests/manual/qml/testfiles_quick2/empty.qml index 35e165eb5d8..4c23dab59dc 100644 --- a/tests/manual/qml/testfiles_quick2/empty.qml +++ b/tests/manual/qml/testfiles_quick2/empty.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/flipable.qml b/tests/manual/qml/testfiles_quick2/flipable.qml index e841a33736c..8f304cb7d8d 100644 --- a/tests/manual/qml/testfiles_quick2/flipable.qml +++ b/tests/manual/qml/testfiles_quick2/flipable.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/helloworld.qml b/tests/manual/qml/testfiles_quick2/helloworld.qml index c1ab8bb3b19..da308f377ab 100644 --- a/tests/manual/qml/testfiles_quick2/helloworld.qml +++ b/tests/manual/qml/testfiles_quick2/helloworld.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/helloworld_inverted.qml b/tests/manual/qml/testfiles_quick2/helloworld_inverted.qml index 90c741da41f..be1553b6d3a 100644 --- a/tests/manual/qml/testfiles_quick2/helloworld_inverted.qml +++ b/tests/manual/qml/testfiles_quick2/helloworld_inverted.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/images.qml b/tests/manual/qml/testfiles_quick2/images.qml index 8a45b2b173c..ed37ad37cbb 100644 --- a/tests/manual/qml/testfiles_quick2/images.qml +++ b/tests/manual/qml/testfiles_quick2/images.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/listmodel.qml b/tests/manual/qml/testfiles_quick2/listmodel.qml index 667b671dd57..1c4e415afc5 100644 --- a/tests/manual/qml/testfiles_quick2/listmodel.qml +++ b/tests/manual/qml/testfiles_quick2/listmodel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/listview.qml b/tests/manual/qml/testfiles_quick2/listview.qml index f3cbeb2a845..e300f26b9f2 100644 --- a/tests/manual/qml/testfiles_quick2/listview.qml +++ b/tests/manual/qml/testfiles_quick2/listview.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/positioners.qml b/tests/manual/qml/testfiles_quick2/positioners.qml index c7abfd4ac8f..1371948ca4f 100644 --- a/tests/manual/qml/testfiles_quick2/positioners.qml +++ b/tests/manual/qml/testfiles_quick2/positioners.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/states.qml b/tests/manual/qml/testfiles_quick2/states.qml index 3b39eedb5ae..dc62504f2bc 100644 --- a/tests/manual/qml/testfiles_quick2/states.qml +++ b/tests/manual/qml/testfiles_quick2/states.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/subcomponent.qml b/tests/manual/qml/testfiles_quick2/subcomponent.qml index 5586feb44ad..495a94a01a3 100644 --- a/tests/manual/qml/testfiles_quick2/subcomponent.qml +++ b/tests/manual/qml/testfiles_quick2/subcomponent.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/usingbutton.qml b/tests/manual/qml/testfiles_quick2/usingbutton.qml index 76dfbe7f5b3..acdfbe34087 100644 --- a/tests/manual/qml/testfiles_quick2/usingbutton.qml +++ b/tests/manual/qml/testfiles_quick2/usingbutton.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/qml/testfiles_quick2/views.qml b/tests/manual/qml/testfiles_quick2/views.qml index 164b86e75a0..394a2020ef0 100644 --- a/tests/manual/qml/testfiles_quick2/views.qml +++ b/tests/manual/qml/testfiles_quick2/views.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/errorhandling/main.cpp b/tests/manual/ssh/errorhandling/main.cpp index d3bd55d0573..79af9a4e31a 100644 --- a/tests/manual/ssh/errorhandling/main.cpp +++ b/tests/manual/ssh/errorhandling/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/remoteprocess/argumentscollector.cpp b/tests/manual/ssh/remoteprocess/argumentscollector.cpp index 113a60863fb..337beb72b5f 100644 --- a/tests/manual/ssh/remoteprocess/argumentscollector.cpp +++ b/tests/manual/ssh/remoteprocess/argumentscollector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/remoteprocess/argumentscollector.h b/tests/manual/ssh/remoteprocess/argumentscollector.h index 6f3963061cd..7216b3b60a4 100644 --- a/tests/manual/ssh/remoteprocess/argumentscollector.h +++ b/tests/manual/ssh/remoteprocess/argumentscollector.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/remoteprocess/main.cpp b/tests/manual/ssh/remoteprocess/main.cpp index 3c984094014..8f579bec409 100644 --- a/tests/manual/ssh/remoteprocess/main.cpp +++ b/tests/manual/ssh/remoteprocess/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/remoteprocess/remoteprocesstest.cpp b/tests/manual/ssh/remoteprocess/remoteprocesstest.cpp index 4f0b37cadef..ce35d3cf7c8 100644 --- a/tests/manual/ssh/remoteprocess/remoteprocesstest.cpp +++ b/tests/manual/ssh/remoteprocess/remoteprocesstest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/remoteprocess/remoteprocesstest.h b/tests/manual/ssh/remoteprocess/remoteprocesstest.h index 70b7be2bf72..7bfc79172a2 100644 --- a/tests/manual/ssh/remoteprocess/remoteprocesstest.h +++ b/tests/manual/ssh/remoteprocess/remoteprocesstest.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/sftp/argumentscollector.cpp b/tests/manual/ssh/sftp/argumentscollector.cpp index adff4fe3f79..321be11fe0c 100644 --- a/tests/manual/ssh/sftp/argumentscollector.cpp +++ b/tests/manual/ssh/sftp/argumentscollector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/sftp/argumentscollector.h b/tests/manual/ssh/sftp/argumentscollector.h index b82e7266feb..06975c19635 100644 --- a/tests/manual/ssh/sftp/argumentscollector.h +++ b/tests/manual/ssh/sftp/argumentscollector.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/sftp/main.cpp b/tests/manual/ssh/sftp/main.cpp index 4fba7ea3d13..0d78cd4fa1e 100644 --- a/tests/manual/ssh/sftp/main.cpp +++ b/tests/manual/ssh/sftp/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/sftp/parameters.h b/tests/manual/ssh/sftp/parameters.h index 4bc8b70e752..e0c2c16926a 100644 --- a/tests/manual/ssh/sftp/parameters.h +++ b/tests/manual/ssh/sftp/parameters.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/sftp/sftptest.cpp b/tests/manual/ssh/sftp/sftptest.cpp index a56a5ffa0f1..8f72a7d7686 100644 --- a/tests/manual/ssh/sftp/sftptest.cpp +++ b/tests/manual/ssh/sftp/sftptest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/sftp/sftptest.h b/tests/manual/ssh/sftp/sftptest.h index 9e5f3a93493..508f0f7f075 100644 --- a/tests/manual/ssh/sftp/sftptest.h +++ b/tests/manual/ssh/sftp/sftptest.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/sftpfsmodel/main.cpp b/tests/manual/ssh/sftpfsmodel/main.cpp index 8ec1c59201c..c99589ad91b 100644 --- a/tests/manual/ssh/sftpfsmodel/main.cpp +++ b/tests/manual/ssh/sftpfsmodel/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/sftpfsmodel/window.cpp b/tests/manual/ssh/sftpfsmodel/window.cpp index 8f123ac8dab..695462fddae 100644 --- a/tests/manual/ssh/sftpfsmodel/window.cpp +++ b/tests/manual/ssh/sftpfsmodel/window.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/sftpfsmodel/window.h b/tests/manual/ssh/sftpfsmodel/window.h index 9ca26b963b1..4a931c21d24 100644 --- a/tests/manual/ssh/sftpfsmodel/window.h +++ b/tests/manual/ssh/sftpfsmodel/window.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/shell/main.cpp b/tests/manual/ssh/shell/main.cpp index 2b4c19f5816..2f0ba49e127 100644 --- a/tests/manual/ssh/shell/main.cpp +++ b/tests/manual/ssh/shell/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/shell/shell.cpp b/tests/manual/ssh/shell/shell.cpp index fcd2ca671bb..e694ae0130c 100644 --- a/tests/manual/ssh/shell/shell.cpp +++ b/tests/manual/ssh/shell/shell.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/shell/shell.h b/tests/manual/ssh/shell/shell.h index cbc96a466fc..efcc9e590a5 100644 --- a/tests/manual/ssh/shell/shell.h +++ b/tests/manual/ssh/shell/shell.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/tunnel/argumentscollector.cpp b/tests/manual/ssh/tunnel/argumentscollector.cpp index 5841d7bd147..3575f00b076 100644 --- a/tests/manual/ssh/tunnel/argumentscollector.cpp +++ b/tests/manual/ssh/tunnel/argumentscollector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/tunnel/argumentscollector.h b/tests/manual/ssh/tunnel/argumentscollector.h index 6f3963061cd..7216b3b60a4 100644 --- a/tests/manual/ssh/tunnel/argumentscollector.h +++ b/tests/manual/ssh/tunnel/argumentscollector.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/tunnel/main.cpp b/tests/manual/ssh/tunnel/main.cpp index c299b683590..0d095616b40 100644 --- a/tests/manual/ssh/tunnel/main.cpp +++ b/tests/manual/ssh/tunnel/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/tunnel/tunnel.cpp b/tests/manual/ssh/tunnel/tunnel.cpp index 6213d68de46..c57cf586c3a 100644 --- a/tests/manual/ssh/tunnel/tunnel.cpp +++ b/tests/manual/ssh/tunnel/tunnel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/manual/ssh/tunnel/tunnel.h b/tests/manual/ssh/tunnel/tunnel.h index b53cd7311a6..013e3fed4c6 100644 --- a/tests/manual/ssh/tunnel/tunnel.h +++ b/tests/manual/ssh/tunnel/tunnel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py index c2755e710e5..83188d5ed7f 100644 --- a/tests/system/shared/build_utils.py +++ b/tests/system/shared/build_utils.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/classes.py b/tests/system/shared/classes.py index 7296038d138..5a7e84bbf05 100644 --- a/tests/system/shared/classes.py +++ b/tests/system/shared/classes.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/debugger.py b/tests/system/shared/debugger.py index d4fbfbd9c0f..855fe041645 100644 --- a/tests/system/shared/debugger.py +++ b/tests/system/shared/debugger.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/editor_utils.py b/tests/system/shared/editor_utils.py index eca3162e575..76fab76af7d 100644 --- a/tests/system/shared/editor_utils.py +++ b/tests/system/shared/editor_utils.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/fs_utils.py b/tests/system/shared/fs_utils.py index 8a5c8e34511..72b2f1a8798 100644 --- a/tests/system/shared/fs_utils.py +++ b/tests/system/shared/fs_utils.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/hook_utils.py b/tests/system/shared/hook_utils.py index f1f64dd9ea6..82e00bd9f0b 100644 --- a/tests/system/shared/hook_utils.py +++ b/tests/system/shared/hook_utils.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py index f05b81cda14..634269cc6d1 100644 --- a/tests/system/shared/project.py +++ b/tests/system/shared/project.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/project_explorer.py b/tests/system/shared/project_explorer.py index 4853afd3ad5..528167c0453 100644 --- a/tests/system/shared/project_explorer.py +++ b/tests/system/shared/project_explorer.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/qtcreator.py b/tests/system/shared/qtcreator.py index d19a1935db0..76e947c0261 100644 --- a/tests/system/shared/qtcreator.py +++ b/tests/system/shared/qtcreator.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/suites_qtta.py b/tests/system/shared/suites_qtta.py index f492206fb3e..01ed84a0daa 100755 --- a/tests/system/shared/suites_qtta.py +++ b/tests/system/shared/suites_qtta.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/utils.py b/tests/system/shared/utils.py index b6ccff804d2..0d7c5f2050a 100644 --- a/tests/system/shared/utils.py +++ b/tests/system/shared/utils.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/shared/workarounds.py b/tests/system/shared/workarounds.py index 509e4291d87..05a413eb574 100644 --- a/tests/system/shared/workarounds.py +++ b/tests/system/shared/workarounds.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_APTW/tst_APTW01/test.py b/tests/system/suite_APTW/tst_APTW01/test.py index 7799d009e82..f626f442742 100644 --- a/tests/system/suite_APTW/tst_APTW01/test.py +++ b/tests/system/suite_APTW/tst_APTW01/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_APTW/tst_APTW02/test.py b/tests/system/suite_APTW/tst_APTW02/test.py index fcab9592d95..b1ced390a2b 100644 --- a/tests/system/suite_APTW/tst_APTW02/test.py +++ b/tests/system/suite_APTW/tst_APTW02/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_CCOM/tst_CCOM01/test.py b/tests/system/suite_CCOM/tst_CCOM01/test.py index 9109c09b0ad..b8a02903f0b 100755 --- a/tests/system/suite_CCOM/tst_CCOM01/test.py +++ b/tests/system/suite_CCOM/tst_CCOM01/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_CCOM/tst_CCOM02/test.py b/tests/system/suite_CCOM/tst_CCOM02/test.py index a0cc441e262..727c35e9359 100755 --- a/tests/system/suite_CCOM/tst_CCOM02/test.py +++ b/tests/system/suite_CCOM/tst_CCOM02/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_CSUP/tst_CSUP01/test.py b/tests/system/suite_CSUP/tst_CSUP01/test.py index 35813568278..d9eeae13a51 100644 --- a/tests/system/suite_CSUP/tst_CSUP01/test.py +++ b/tests/system/suite_CSUP/tst_CSUP01/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_CSUP/tst_CSUP02/test.py b/tests/system/suite_CSUP/tst_CSUP02/test.py index 38fba69fc84..ee31b844cdf 100644 --- a/tests/system/suite_CSUP/tst_CSUP02/test.py +++ b/tests/system/suite_CSUP/tst_CSUP02/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_CSUP/tst_CSUP04/test.py b/tests/system/suite_CSUP/tst_CSUP04/test.py index 0e7257d6559..10a7a07bba5 100644 --- a/tests/system/suite_CSUP/tst_CSUP04/test.py +++ b/tests/system/suite_CSUP/tst_CSUP04/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_CSUP/tst_CSUP05/test.py b/tests/system/suite_CSUP/tst_CSUP05/test.py index 085b6f93f15..ccedda6d462 100644 --- a/tests/system/suite_CSUP/tst_CSUP05/test.py +++ b/tests/system/suite_CSUP/tst_CSUP05/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_HELP/tst_HELP02/test.py b/tests/system/suite_HELP/tst_HELP02/test.py index 13f55604df0..438e7127a17 100755 --- a/tests/system/suite_HELP/tst_HELP02/test.py +++ b/tests/system/suite_HELP/tst_HELP02/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_HELP/tst_HELP04/test.py b/tests/system/suite_HELP/tst_HELP04/test.py index e45c41e5c34..caebc12b5ab 100755 --- a/tests/system/suite_HELP/tst_HELP04/test.py +++ b/tests/system/suite_HELP/tst_HELP04/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_HELP/tst_HELP05/test.py b/tests/system/suite_HELP/tst_HELP05/test.py index c8faa605fb5..611742733b1 100755 --- a/tests/system/suite_HELP/tst_HELP05/test.py +++ b/tests/system/suite_HELP/tst_HELP05/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_HELP/tst_HELP06/test.py b/tests/system/suite_HELP/tst_HELP06/test.py index 18ab04a3535..cda0c7e33ab 100755 --- a/tests/system/suite_HELP/tst_HELP06/test.py +++ b/tests/system/suite_HELP/tst_HELP06/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_QMLS/shared/qmls.py b/tests/system/suite_QMLS/shared/qmls.py index d519b13f6d5..7a70d20d26b 100644 --- a/tests/system/suite_QMLS/shared/qmls.py +++ b/tests/system/suite_QMLS/shared/qmls.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_QMLS/tst_QMLS01/test.py b/tests/system/suite_QMLS/tst_QMLS01/test.py index c767e2a1acd..ba01e09fa85 100644 --- a/tests/system/suite_QMLS/tst_QMLS01/test.py +++ b/tests/system/suite_QMLS/tst_QMLS01/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_QMLS/tst_QMLS02/test.py b/tests/system/suite_QMLS/tst_QMLS02/test.py index bbe5c27151b..b0d2780275b 100644 --- a/tests/system/suite_QMLS/tst_QMLS02/test.py +++ b/tests/system/suite_QMLS/tst_QMLS02/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_QMLS/tst_QMLS03/test.py b/tests/system/suite_QMLS/tst_QMLS03/test.py index c88817d1079..d8b435b24e1 100644 --- a/tests/system/suite_QMLS/tst_QMLS03/test.py +++ b/tests/system/suite_QMLS/tst_QMLS03/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_QMLS/tst_QMLS04/test.py b/tests/system/suite_QMLS/tst_QMLS04/test.py index f2bc99a5b85..7dc8e9d06da 100644 --- a/tests/system/suite_QMLS/tst_QMLS04/test.py +++ b/tests/system/suite_QMLS/tst_QMLS04/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_QMLS/tst_QMLS05/test.py b/tests/system/suite_QMLS/tst_QMLS05/test.py index 926b70936b7..14bddcbd332 100644 --- a/tests/system/suite_QMLS/tst_QMLS05/test.py +++ b/tests/system/suite_QMLS/tst_QMLS05/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_QMLS/tst_QMLS06/test.py b/tests/system/suite_QMLS/tst_QMLS06/test.py index 7989883b7dd..63372d7b08c 100644 --- a/tests/system/suite_QMLS/tst_QMLS06/test.py +++ b/tests/system/suite_QMLS/tst_QMLS06/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_QMLS/tst_QMLS07/test.py b/tests/system/suite_QMLS/tst_QMLS07/test.py index 5f942cfa446..da54cde4de8 100644 --- a/tests/system/suite_QMLS/tst_QMLS07/test.py +++ b/tests/system/suite_QMLS/tst_QMLS07/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_QMLS/tst_QMLS08/test.py b/tests/system/suite_QMLS/tst_QMLS08/test.py index 19de6bfa815..8e14e7e1b6c 100644 --- a/tests/system/suite_QMLS/tst_QMLS08/test.py +++ b/tests/system/suite_QMLS/tst_QMLS08/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_SCOM/tst_SCOM01/test.py b/tests/system/suite_SCOM/tst_SCOM01/test.py index e6cb3ff8283..7749cf516d9 100644 --- a/tests/system/suite_SCOM/tst_SCOM01/test.py +++ b/tests/system/suite_SCOM/tst_SCOM01/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_SCOM/tst_SCOM02/test.py b/tests/system/suite_SCOM/tst_SCOM02/test.py index d617cf34650..8da1d94127b 100644 --- a/tests/system/suite_SCOM/tst_SCOM02/test.py +++ b/tests/system/suite_SCOM/tst_SCOM02/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_SCOM/tst_SCOM04/test.py b/tests/system/suite_SCOM/tst_SCOM04/test.py index 8f16d7809fe..9f8d6fd9576 100644 --- a/tests/system/suite_SCOM/tst_SCOM04/test.py +++ b/tests/system/suite_SCOM/tst_SCOM04/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_SCOM/tst_SCOM05/test.py b/tests/system/suite_SCOM/tst_SCOM05/test.py index c3abea90925..39f2a3489ed 100644 --- a/tests/system/suite_SCOM/tst_SCOM05/test.py +++ b/tests/system/suite_SCOM/tst_SCOM05/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_WELP/tst_WELP01/test.py b/tests/system/suite_WELP/tst_WELP01/test.py index ea590c899f6..91fb5ef1d27 100755 --- a/tests/system/suite_WELP/tst_WELP01/test.py +++ b/tests/system/suite_WELP/tst_WELP01/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_WELP/tst_WELP02/test.py b/tests/system/suite_WELP/tst_WELP02/test.py index 6a0e8f49226..2eb82568e9a 100644 --- a/tests/system/suite_WELP/tst_WELP02/test.py +++ b/tests/system/suite_WELP/tst_WELP02/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_WELP/tst_WELP03/test.py b/tests/system/suite_WELP/tst_WELP03/test.py index d7ddec46546..f7f79bf1553 100644 --- a/tests/system/suite_WELP/tst_WELP03/test.py +++ b/tests/system/suite_WELP/tst_WELP03/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_WELP/tst_WELP04/test.py b/tests/system/suite_WELP/tst_WELP04/test.py index 7257e1974c4..753283e867b 100644 --- a/tests/system/suite_WELP/tst_WELP04/test.py +++ b/tests/system/suite_WELP/tst_WELP04/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_debugger/shared/testdata/simpleQuickUI2/simpleQuickUI2.qml b/tests/system/suite_debugger/shared/testdata/simpleQuickUI2/simpleQuickUI2.qml index 033793eb987..e39a5f96046 100644 --- a/tests/system/suite_debugger/shared/testdata/simpleQuickUI2/simpleQuickUI2.qml +++ b/tests/system/suite_debugger/shared/testdata/simpleQuickUI2/simpleQuickUI2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/system/suite_debugger/tst_build_new_project/test.py b/tests/system/suite_debugger/tst_build_new_project/test.py index 15b03c74209..8cded60096b 100644 --- a/tests/system/suite_debugger/tst_build_new_project/test.py +++ b/tests/system/suite_debugger/tst_build_new_project/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_debugger/tst_cli_output_console/test.py b/tests/system/suite_debugger/tst_cli_output_console/test.py index 422e87d1284..09f45afb56d 100644 --- a/tests/system/suite_debugger/tst_cli_output_console/test.py +++ b/tests/system/suite_debugger/tst_cli_output_console/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_debugger/tst_debug_empty_main/test.py b/tests/system/suite_debugger/tst_debug_empty_main/test.py index ab62d7dc87d..7e7e13713af 100644 --- a/tests/system/suite_debugger/tst_debug_empty_main/test.py +++ b/tests/system/suite_debugger/tst_debug_empty_main/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_debugger/tst_qml_locals/Tree.py b/tests/system/suite_debugger/tst_qml_locals/Tree.py index b241fe32e8b..d5cdf5ed6d1 100644 --- a/tests/system/suite_debugger/tst_qml_locals/Tree.py +++ b/tests/system/suite_debugger/tst_qml_locals/Tree.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_debugger/tst_qml_locals/test.py b/tests/system/suite_debugger/tst_qml_locals/test.py index 335f3ebcb24..94e514ba8b8 100644 --- a/tests/system/suite_debugger/tst_qml_locals/test.py +++ b/tests/system/suite_debugger/tst_qml_locals/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_debugger/tst_simple_analyze/test.py b/tests/system/suite_debugger/tst_simple_analyze/test.py index 3daa5497533..086cdbcec4c 100644 --- a/tests/system/suite_debugger/tst_simple_analyze/test.py +++ b/tests/system/suite_debugger/tst_simple_analyze/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_debugger/tst_simple_debug/test.py b/tests/system/suite_debugger/tst_simple_debug/test.py index 3727c7780a8..6b17cd3a38f 100644 --- a/tests/system/suite_debugger/tst_simple_debug/test.py +++ b/tests/system/suite_debugger/tst_simple_debug/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_editors/tst_basic_cpp_support/test.py b/tests/system/suite_editors/tst_basic_cpp_support/test.py index 12aef06d040..22187c8d037 100644 --- a/tests/system/suite_editors/tst_basic_cpp_support/test.py +++ b/tests/system/suite_editors/tst_basic_cpp_support/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_editors/tst_delete_externally/test.py b/tests/system/suite_editors/tst_delete_externally/test.py index ab622af5834..9b08012ba81 100644 --- a/tests/system/suite_editors/tst_delete_externally/test.py +++ b/tests/system/suite_editors/tst_delete_externally/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_editors/tst_memberoperator/test.py b/tests/system/suite_editors/tst_memberoperator/test.py index 2d89f148d07..04c992fe041 100644 --- a/tests/system/suite_editors/tst_memberoperator/test.py +++ b/tests/system/suite_editors/tst_memberoperator/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_editors/tst_modify_readonly/test.py b/tests/system/suite_editors/tst_modify_readonly/test.py index 92a4426bab5..3837863cfe6 100644 --- a/tests/system/suite_editors/tst_modify_readonly/test.py +++ b/tests/system/suite_editors/tst_modify_readonly/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_editors/tst_qml_editor/test.py b/tests/system/suite_editors/tst_qml_editor/test.py index c030ec25561..4c427605326 100644 --- a/tests/system/suite_editors/tst_qml_editor/test.py +++ b/tests/system/suite_editors/tst_qml_editor/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_editors/tst_qml_indent/test.py b/tests/system/suite_editors/tst_qml_indent/test.py index d6f0ba9f38d..d640438626c 100644 --- a/tests/system/suite_editors/tst_qml_indent/test.py +++ b/tests/system/suite_editors/tst_qml_indent/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_editors/tst_rename_macros/test.py b/tests/system/suite_editors/tst_rename_macros/test.py index d82b0f666dc..6c44c1e8f9d 100644 --- a/tests/system/suite_editors/tst_rename_macros/test.py +++ b/tests/system/suite_editors/tst_rename_macros/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_editors/tst_revert_changes/test.py b/tests/system/suite_editors/tst_revert_changes/test.py index f2be87c6bc5..14b678a3054 100644 --- a/tests/system/suite_editors/tst_revert_changes/test.py +++ b/tests/system/suite_editors/tst_revert_changes/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_editors/tst_select_all/test.py b/tests/system/suite_editors/tst_select_all/test.py index c0a2b58ec3d..679b586846a 100644 --- a/tests/system/suite_editors/tst_select_all/test.py +++ b/tests/system/suite_editors/tst_select_all/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_general/tst_build_speedcrunch/test.py b/tests/system/suite_general/tst_build_speedcrunch/test.py index 98468fd7c0f..e5f42d75bc5 100644 --- a/tests/system/suite_general/tst_build_speedcrunch/test.py +++ b/tests/system/suite_general/tst_build_speedcrunch/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_general/tst_cmake_speedcrunch/test.py b/tests/system/suite_general/tst_cmake_speedcrunch/test.py index 4988d03361d..345fe370e60 100644 --- a/tests/system/suite_general/tst_cmake_speedcrunch/test.py +++ b/tests/system/suite_general/tst_cmake_speedcrunch/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_general/tst_create_proj_wizard/test.py b/tests/system/suite_general/tst_create_proj_wizard/test.py index ad1eb777198..535468ac802 100644 --- a/tests/system/suite_general/tst_create_proj_wizard/test.py +++ b/tests/system/suite_general/tst_create_proj_wizard/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_general/tst_default_settings/test.py b/tests/system/suite_general/tst_default_settings/test.py index 65149c50f42..0f0080ff075 100644 --- a/tests/system/suite_general/tst_default_settings/test.py +++ b/tests/system/suite_general/tst_default_settings/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_general/tst_installed_languages/test.py b/tests/system/suite_general/tst_installed_languages/test.py index 2f4592974fc..94450dd9801 100644 --- a/tests/system/suite_general/tst_installed_languages/test.py +++ b/tests/system/suite_general/tst_installed_languages/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_general/tst_openqt_creator/test.py b/tests/system/suite_general/tst_openqt_creator/test.py index 2cc22353ebd..e6e2c4ff9af 100644 --- a/tests/system/suite_general/tst_openqt_creator/test.py +++ b/tests/system/suite_general/tst_openqt_creator/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_general/tst_rename_file/test.py b/tests/system/suite_general/tst_rename_file/test.py index b452f7ebf34..b113fe8f557 100644 --- a/tests/system/suite_general/tst_rename_file/test.py +++ b/tests/system/suite_general/tst_rename_file/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_general/tst_session_handling/test.py b/tests/system/suite_general/tst_session_handling/test.py index 6e6a6b996f7..ce3d8264e19 100644 --- a/tests/system/suite_general/tst_session_handling/test.py +++ b/tests/system/suite_general/tst_session_handling/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_qtquick/tst_qml_outline/test.py b/tests/system/suite_qtquick/tst_qml_outline/test.py index f09f03394b0..a12a1841c75 100644 --- a/tests/system/suite_qtquick/tst_qml_outline/test.py +++ b/tests/system/suite_qtquick/tst_qml_outline/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_qtquick/tst_qtquick_creation/test.py b/tests/system/suite_qtquick/tst_qtquick_creation/test.py index 8c240bbb3bf..48ba6fb4693 100644 --- a/tests/system/suite_qtquick/tst_qtquick_creation/test.py +++ b/tests/system/suite_qtquick/tst_qtquick_creation/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_qtquick/tst_qtquick_creation3/test.py b/tests/system/suite_qtquick/tst_qtquick_creation3/test.py index b6ea90a164a..9ef1f8d5c13 100644 --- a/tests/system/suite_qtquick/tst_qtquick_creation3/test.py +++ b/tests/system/suite_qtquick/tst_qtquick_creation3/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_qtquick/tst_qtquick_creation4/test.py b/tests/system/suite_qtquick/tst_qtquick_creation4/test.py index 7082b6188a7..570d38c6432 100644 --- a/tests/system/suite_qtquick/tst_qtquick_creation4/test.py +++ b/tests/system/suite_qtquick/tst_qtquick_creation4/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_tools/tst_codepasting/test.py b/tests/system/suite_tools/tst_codepasting/test.py index 0962bb205e9..6d1e213dbb6 100644 --- a/tests/system/suite_tools/tst_codepasting/test.py +++ b/tests/system/suite_tools/tst_codepasting/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_tools/tst_designer_autocomplete/test.py b/tests/system/suite_tools/tst_designer_autocomplete/test.py index 8e03f0e6465..9ccbfc2906c 100644 --- a/tests/system/suite_tools/tst_designer_autocomplete/test.py +++ b/tests/system/suite_tools/tst_designer_autocomplete/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_tools/tst_designer_goto_slot/test.py b/tests/system/suite_tools/tst_designer_goto_slot/test.py index bb82aeba853..b6611907786 100644 --- a/tests/system/suite_tools/tst_designer_goto_slot/test.py +++ b/tests/system/suite_tools/tst_designer_goto_slot/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_tools/tst_external_sort/test.py b/tests/system/suite_tools/tst_external_sort/test.py index edff6e4656d..d858ab7f369 100644 --- a/tests/system/suite_tools/tst_external_sort/test.py +++ b/tests/system/suite_tools/tst_external_sort/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_tools/tst_git_clone/test.py b/tests/system/suite_tools/tst_git_clone/test.py index 576cc6d0949..656b29863ee 100644 --- a/tests/system/suite_tools/tst_git_clone/test.py +++ b/tests/system/suite_tools/tst_git_clone/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/suite_tools/tst_git_local/test.py b/tests/system/suite_tools/tst_git_local/test.py index 125bf7d110f..dadf54d6f08 100644 --- a/tests/system/suite_tools/tst_git_local/test.py +++ b/tests/system/suite_tools/tst_git_local/test.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/tools/findUnusedObjects.py b/tests/system/tools/findUnusedObjects.py index d79e31ea311..a90eab99259 100755 --- a/tests/system/tools/findUnusedObjects.py +++ b/tests/system/tools/findUnusedObjects.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/tools/objectsToTable.py b/tests/system/tools/objectsToTable.py index b68896d68a6..ccbd6e27971 100755 --- a/tests/system/tools/objectsToTable.py +++ b/tests/system/tools/objectsToTable.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/system/tools/toolfunctions.py b/tests/system/tools/toolfunctions.py index a9814b9320b..c56b434a15e 100644 --- a/tests/system/tools/toolfunctions.py +++ b/tests/system/tools/toolfunctions.py @@ -1,6 +1,6 @@ ############################################################################# ## -## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of Qt Creator. diff --git a/tests/tools/cplusplus-ast2png/cplusplus-ast2png.cpp b/tests/tools/cplusplus-ast2png/cplusplus-ast2png.cpp index b9ffdad96bc..f3a29463ccf 100644 --- a/tests/tools/cplusplus-ast2png/cplusplus-ast2png.cpp +++ b/tests/tools/cplusplus-ast2png/cplusplus-ast2png.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/tools/cplusplus-ast2png/tests/templ01.cpp b/tests/tools/cplusplus-ast2png/tests/templ01.cpp index 7a9285d95a6..62b97d77719 100644 --- a/tests/tools/cplusplus-ast2png/tests/templ01.cpp +++ b/tests/tools/cplusplus-ast2png/tests/templ01.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/tools/qml-ast2dot/main.cpp b/tests/tools/qml-ast2dot/main.cpp index 4ffe4c29cb1..7364d037960 100644 --- a/tests/tools/qml-ast2dot/main.cpp +++ b/tests/tools/qml-ast2dot/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. diff --git a/tests/tools/qtquickappblaster/main.cpp b/tests/tools/qtquickappblaster/main.cpp index ffb1802cb62..080a3b05763 100644 --- a/tests/tools/qtquickappblaster/main.cpp +++ b/tests/tools/qtquickappblaster/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. -- GitLab