aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2018-09-17 10:22:46 +0200
committerEike Ziller <eike.ziller@qt.io>2018-09-17 10:52:31 +0000
commiteba547cccf4d29b8622fd1ef7b14ed91956b3ca4 (patch)
treeb3859c33940354e3389b386d6eb500158f640bdc
parent0f35a83f35f9f785a67a5989dccc11c4828795b6 (diff)
The product name is "Qt Creator" with a space
Change-Id: I6716ab0b26f8881e07580df19bc29dd3c3146ae7 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
-rw-r--r--README.md26
-rw-r--r--TODO.md2
-rw-r--r--docs/README.md2
-rw-r--r--docs/extensions.md12
-rw-r--r--docs/plugin.md12
-rw-r--r--examples/examples_common.py2
-rw-r--r--examples/macroexpander/__init__.py2
-rw-r--r--examples/projects/__init__.py2
-rw-r--r--examples/projects/view.py2
-rw-r--r--examples/requirerequests/__init__.py2
-rw-r--r--examples/smallmenu/__init__.py2
-rw-r--r--examples/smallmenu/actions.py2
-rw-r--r--examples/transform/__init__.py2
-rw-r--r--examples/transform/actions.py2
-rw-r--r--examples/transform/ui.py2
-rw-r--r--optional/README.md2
-rw-r--r--optional/binding/binding.h2
-rw-r--r--optional/projectexplorer/binding.cpp2
-rw-r--r--optional/projectexplorer/wrappedclasses.h2
-rw-r--r--optional/texteditor/binding.cpp2
-rw-r--r--optional/texteditor/wrappedclasses.h2
-rw-r--r--plugins/pythonextensions/bindingheaders/core_fileutils.h2
-rw-r--r--plugins/pythonextensions/glue/macroexpander_glue.cpp2
-rw-r--r--plugins/pythonextensions/pythonextensions_global.h2
-rw-r--r--plugins/pythonextensions/pythonextensionsplugin.cpp4
-rw-r--r--plugins/pythonextensions/pythonextensionsplugin.h2
-rw-r--r--plugins/pythonextensions/pyutil.cpp2
-rw-r--r--plugins/pythonextensions/pyutil.h2
-rw-r--r--plugins/pythonextensions/wrappedclasses.h2
-rw-r--r--python/extensionmanager/__init__.py2
-rw-r--r--python/extensionmanager/actions.py2
-rw-r--r--python/extensionmanager/list.py8
-rw-r--r--tests/testextension/__init__.py2
-rw-r--r--tests/testextension/setup.py2
-rw-r--r--tools/license.py4
-rw-r--r--tools/pyside2_config.py2
-rw-r--r--tools/sanity.py2
37 files changed, 64 insertions, 64 deletions
diff --git a/README.md b/README.md
index 4e3886c..58f2ee5 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
-# Python Extensions for QtCreator
+# Python Extensions for Qt Creator
-This plugin for QtCreator makes it possible to extend the QtCreator by
+This plugin for Qt Creator makes it possible to extend the Qt Creator by
writing Python extensions. These extensions are simply Python packages,
so they are directories containing a `__init__.py` and any other Python
files necessary. They can be shared as zip archives, installed and managed
through the included extension manager (which is a Python extension itself) and
-thus allow the QtCreator to be easily extended with custom functionality.
+thus allow the Qt Creator to be easily extended with custom functionality.
**WARNING:** This is a first draft / proof of concept and only offers
very limited functionality. There will still be many bugs and so far
@@ -26,7 +26,7 @@ This repository contains the following:
## Installation instructions
Note that this process has so far only be tested on Linux. The plugin
-itself has only been tested with Python 3.5 and 2.7.12 and QtCreator
+itself has only been tested with Python 3.5 and 2.7.12 and Qt Creator
4.7.82.
### Installing dependencies
@@ -35,7 +35,7 @@ need to install [PySide2](https://pyside.org) for the version of
Python you plan to use. This is necessary, as the plugin uses the
system installed Python (or the Python installed in your virtual env,
if you have one set up) and it's packages. You will also need to build
-your own version of QtCreator and require a Qt installation. (This
+your own version of Qt Creator and require a Qt installation. (This
project has so far only been tested with Qt5.11.0.)
To obtain the required Qt version, you can either build Qt yourself,
@@ -58,7 +58,7 @@ you will encounter errors when parsing / compiling this project. To
get these patches, you will probably need to build Shiboken from
source.
-To build QtCreator, which is necessary for building the plugin, please refer to their
+To build Qt Creator, which is necessary for building the plugin, please refer to their
[build instructions](https://doc-snapshots.qt.io/qtcreator-extending/getting-and-building.html).
### Building the C++ plugin and bindings
@@ -69,7 +69,7 @@ bindings and the plugin itself.
$ path/to/your/qmake
$ make
```
-After this, the plugin should be installed into the QtCreator version
+After this, the plugin should be installed into the Qt Creator version
you built in the previous steps. If this worked, you can now go ahead
and check out the `examples` folder and play with the provided example
Python extensions.
@@ -83,7 +83,7 @@ following before building the plugin:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/clang/lib
```
-You may need to expose your QtCreator sources like this:
+You may need to expose your Qt Creator sources like this:
```
export QTC_SOURCE=/path/to/your/qt-creator
export QTC_BUILD=/path/to/your/qt-creator
@@ -91,7 +91,7 @@ export QTC_BUILD=/path/to/your/qt-creator
**NOTICE:** This plugin generates a few debug messages and potential
warnings. Any Python extension that is installed might also write
-output to stdout. To see these messages, you can execute QtCreator
+output to stdout. To see these messages, you can execute Qt Creator
from your terminal by running the executable there.
### What to do if it didn't work?
@@ -118,7 +118,7 @@ in this list (or in the build system).
## How it works
In a nutshell, this project generates Python bindings for the
-QtCreator using Shiboken and then executes python scripts it finds in
+Qt Creator using Shiboken and then executes python scripts it finds in
a bespoke directory.
The following process allows the plugin to work:
@@ -126,14 +126,14 @@ The following process allows the plugin to work:
1. At compile time, Shiboken generates a huge amount of C++ code that
allows a few classes from the Core plugin and utils library to be
accessed from Python.
- 2. When QtCreator is executed, the C++ plugin searches the standard
- QtCreator plugin directories for a directory named `python`, the
+ 2. When Qt Creator is executed, the C++ plugin searches the standard
+ Qt Creator plugin directories for a directory named `python`, the
first directory found is the Python extension directory.
Each python package in this directory represents it's own Python extension.
Each package is loaded with `import`, which executes the initialization
code in its `__init__.py`.
3. Now all Python extensions have registered their actions / menus / etc.,
- which can be triggered from the QtCreator interface.
+ which can be triggered from the Qt Creator interface.
When executed, the Python extensions can import any modules / packages
installed for the system Python, in Qt Creator's extensions directory, or
diff --git a/TODO.md b/TODO.md
index 098ec7a..ef42b38 100644
--- a/TODO.md
+++ b/TODO.md
@@ -3,7 +3,7 @@
## Bindings
- [ ] Complete Core bindings (most of the necessary xml is there, but commented)
- [ ] Complete Utils bindings
-- [ ] Maybe add more bindings from QtCreators libs (?)
+- [ ] Maybe add more bindings from Qt Creator's libs (?)
## Optional Bindings
- [ ] Find a way to include the non-optional bindings (see `optional/texteditor/typesystem_texteditor.xml` for description of problem)
diff --git a/docs/README.md b/docs/README.md
index 22fbe0e..b846fb0 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -1,6 +1,6 @@
# Documentation for Python Extensions
-This is the documentation for the QtCreator Python Extensions plugin.
+This is the documentation for the Qt Creator Python Extensions plugin.
## Contents
1. [Writing Python Extensions](./extensions.md)
diff --git a/docs/extensions.md b/docs/extensions.md
index 4b3689a..378d347 100644
--- a/docs/extensions.md
+++ b/docs/extensions.md
@@ -1,9 +1,9 @@
# Documentation for Python Extension Authors
This document is intended to provide an introduction to writing Python extensions
-for the QtCreator.
+for Qt Creator.
-## Importing QtCreator specific modules
+## Importing Qt Creator specific modules
Currently, the bindings are available from Python under the following names:
```Python
from PythonExtension import QtCreator # Imports the generated module for the typesystem
@@ -36,12 +36,12 @@ inst.pythonPackagePath()
```
-# QtCreator bindings
-Generally, the parts of QtCreator that are exposed have an interface that is nearly
+# Qt Creator bindings
+Generally, the parts of Qt Creator that are exposed have an interface that is nearly
identical to the C++ interface.
## Working with Menus
-You can add new items to the menus of QtCreator. You can either add an action directly, or
+You can add new items to the menus of Qt Creator. You can either add an action directly, or
add a new action container, that holds a sub-menu.
### Adding a sub menu
@@ -78,7 +78,7 @@ menu.menu().addAction("My action", hello)
```
### Menu Id list
-Currently, the following menu ids are available in QtCreator.
+Currently, the following menu ids are available in Qt Creator.
```Python
"QtCreator.Menu.File"
diff --git a/docs/plugin.md b/docs/plugin.md
index e94633b..9e2bd93 100644
--- a/docs/plugin.md
+++ b/docs/plugin.md
@@ -17,7 +17,7 @@ The following files exist as part of the C++ plugin:
* `pythonextensionsplugin.[h|cpp]`
- Contains the IPlugin class and manages the life-cycle of Python
extensions
- - This name is the standard for QtCreator plugins
+ - This name is the standard for Qt Creator plugins
* `pythonextensions_global.h`
- standard plugin file
* `typesystem_qtcreator.xml`
@@ -38,7 +38,7 @@ tested on Linux.
* `pythonextensions.pro`
- QMake project file
- - The projects dependencies on the QtCreator side are handled in
+ - The projects dependencies on the Qt Creator side are handled in
the file `pythonextensions_dependencies.pri`
- The current build system emerged in part from the standard plugin build
setup, combined with some .pro code from the 'scriptableapplication' and
@@ -58,7 +58,7 @@ The buildsystem aims to achieve two things
1. Build the C++ plugin, linking against any relevant libraries
2. Install the generated shared object, as well as copy the
- `/python` directory into the QtCreator plugin directory. This
+ `/python` directory into the Qt Creator plugin directory. This
directory contains the included extension manager, which is implemented
as a Python extension
@@ -76,7 +76,7 @@ During initialization, the plugin does several things:
2. Run the `setup.py` script for every extension that provides it (this happens
during the `delayedInitialize` call)
- - This is run here to not block the QtCreator ui while loading the extensions
+ - This is run here to not block the Qt Creator ui while loading the extensions
- It is separated from the main extension runtime, to provide a facility to
extensions that depend on Python modules that are not part of the standard
Python library (for an example, see `examples/numpysetup` or the extension
@@ -87,7 +87,7 @@ During initialization, the plugin does several things:
- Note that the extension manager attempts to run an extensions `main.py`
script after installing it, but does not consider the `setup.py` script.
If `main.py` than fails to run, the extension manager advises the user to
- restart QtCreator
+ restart Qt Creator
- There is currently no facility for scripts to detect if they have loaded
before their setup was called
- Because the setup is run every time, the setup script needs to detect if
@@ -136,7 +136,7 @@ have to be amended with several special cases for different platforms / versions
In the `PyUtil.cpp` file, the macros `signals` and `slots` are undefined due to
compatibility reasons with the CPython headers. Due to this incompatibility, any
-QtCreator code and Shiboken code needs to be well separated. (These symbols need
+Qt Creator code and Shiboken code needs to be well separated. (These symbols need
to be undefined **BEFORE** including anything Python related.)
The glue code for the MacroExpander functions `registerVariable()` and `registerPrefix()`
diff --git a/examples/examples_common.py b/examples/examples_common.py
index 088d4bf..db7f669 100644
--- a/examples/examples_common.py
+++ b/examples/examples_common.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/examples/macroexpander/__init__.py b/examples/macroexpander/__init__.py
index 271783d..20e10a3 100644
--- a/examples/macroexpander/__init__.py
+++ b/examples/macroexpander/__init__.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/examples/projects/__init__.py b/examples/projects/__init__.py
index ec0cc08..c7919fc 100644
--- a/examples/projects/__init__.py
+++ b/examples/projects/__init__.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/examples/projects/view.py b/examples/projects/view.py
index 9052d1f..31dbbe6 100644
--- a/examples/projects/view.py
+++ b/examples/projects/view.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/examples/requirerequests/__init__.py b/examples/requirerequests/__init__.py
index 6d31d09..acbf9e6 100644
--- a/examples/requirerequests/__init__.py
+++ b/examples/requirerequests/__init__.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/examples/smallmenu/__init__.py b/examples/smallmenu/__init__.py
index 0ad7d05..5dcfef9 100644
--- a/examples/smallmenu/__init__.py
+++ b/examples/smallmenu/__init__.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/examples/smallmenu/actions.py b/examples/smallmenu/actions.py
index 6a9815b..7778f04 100644
--- a/examples/smallmenu/actions.py
+++ b/examples/smallmenu/actions.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/examples/transform/__init__.py b/examples/transform/__init__.py
index f6b0087..c58f4e6 100644
--- a/examples/transform/__init__.py
+++ b/examples/transform/__init__.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/examples/transform/actions.py b/examples/transform/actions.py
index a74bb0b..de54d94 100644
--- a/examples/transform/actions.py
+++ b/examples/transform/actions.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/examples/transform/ui.py b/examples/transform/ui.py
index 441fa69..21892ef 100644
--- a/examples/transform/ui.py
+++ b/examples/transform/ui.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/optional/README.md b/optional/README.md
index 96ab614..0a199e8 100644
--- a/optional/README.md
+++ b/optional/README.md
@@ -1,6 +1,6 @@
# Optional Bindings
-This directory contains all optional bindings for QtCreator
+This directory contains all optional bindings for Qt Creator
Modules that are bundled with this plugin.
Optional bindings come in the form of dynamically loaded libraries,
diff --git a/optional/binding/binding.h b/optional/binding/binding.h
index 9b397a1..1dcdfe2 100644
--- a/optional/binding/binding.h
+++ b/optional/binding/binding.h
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/optional/projectexplorer/binding.cpp b/optional/projectexplorer/binding.cpp
index a544beb..325027b 100644
--- a/optional/projectexplorer/binding.cpp
+++ b/optional/projectexplorer/binding.cpp
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/optional/projectexplorer/wrappedclasses.h b/optional/projectexplorer/wrappedclasses.h
index 2d043bb..b090117 100644
--- a/optional/projectexplorer/wrappedclasses.h
+++ b/optional/projectexplorer/wrappedclasses.h
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/optional/texteditor/binding.cpp b/optional/texteditor/binding.cpp
index d4f4bf5..d2d5b83 100644
--- a/optional/texteditor/binding.cpp
+++ b/optional/texteditor/binding.cpp
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/optional/texteditor/wrappedclasses.h b/optional/texteditor/wrappedclasses.h
index 260f2ac..ecbf69b 100644
--- a/optional/texteditor/wrappedclasses.h
+++ b/optional/texteditor/wrappedclasses.h
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/plugins/pythonextensions/bindingheaders/core_fileutils.h b/plugins/pythonextensions/bindingheaders/core_fileutils.h
index b726b41..a530bc5 100644
--- a/plugins/pythonextensions/bindingheaders/core_fileutils.h
+++ b/plugins/pythonextensions/bindingheaders/core_fileutils.h
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/plugins/pythonextensions/glue/macroexpander_glue.cpp b/plugins/pythonextensions/glue/macroexpander_glue.cpp
index 606bf81..28165b3 100644
--- a/plugins/pythonextensions/glue/macroexpander_glue.cpp
+++ b/plugins/pythonextensions/glue/macroexpander_glue.cpp
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/plugins/pythonextensions/pythonextensions_global.h b/plugins/pythonextensions/pythonextensions_global.h
index 6f0dab7..1254ebe 100644
--- a/plugins/pythonextensions/pythonextensions_global.h
+++ b/plugins/pythonextensions/pythonextensions_global.h
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/plugins/pythonextensions/pythonextensionsplugin.cpp b/plugins/pythonextensions/pythonextensionsplugin.cpp
index bb8c18a..3547a59 100644
--- a/plugins/pythonextensions/pythonextensionsplugin.cpp
+++ b/plugins/pythonextensions/pythonextensionsplugin.cpp
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
@@ -166,7 +166,7 @@ void PythonExtensionsPlugin::initializePythonBindings()
PyUtil::addToSysPath(extensionDir().path().toStdString());
PyUtil::addToSysPath(pythonPackagePath().toStdString());
}
- // Initialize the Python context and register global QtCreator variable
+ // Initialize the Python context and register global Qt Creator variable
if (!PyUtil::bindShibokenModuleObject("PythonExtension", "QtCreator")) {
qWarning() << "Python bindings could not be initialized";
Core::MessageManager::write(Constants::MESSAGE_MANAGER_PREFIX + tr("Python bindings could not be initialized"));
diff --git a/plugins/pythonextensions/pythonextensionsplugin.h b/plugins/pythonextensions/pythonextensionsplugin.h
index 053fbc2..29010d4 100644
--- a/plugins/pythonextensions/pythonextensionsplugin.h
+++ b/plugins/pythonextensions/pythonextensionsplugin.h
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/plugins/pythonextensions/pyutil.cpp b/plugins/pythonextensions/pyutil.cpp
index 15cb719..ad4b66e 100644
--- a/plugins/pythonextensions/pyutil.cpp
+++ b/plugins/pythonextensions/pyutil.cpp
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/plugins/pythonextensions/pyutil.h b/plugins/pythonextensions/pyutil.h
index 908427d..16d7405 100644
--- a/plugins/pythonextensions/pyutil.h
+++ b/plugins/pythonextensions/pyutil.h
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/plugins/pythonextensions/wrappedclasses.h b/plugins/pythonextensions/wrappedclasses.h
index ebc9910..9de9e4b 100644
--- a/plugins/pythonextensions/wrappedclasses.h
+++ b/plugins/pythonextensions/wrappedclasses.h
@@ -3,7 +3,7 @@
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
diff --git a/python/extensionmanager/__init__.py b/python/extensionmanager/__init__.py
index 048423b..7932118 100644
--- a/python/extensionmanager/__init__.py
+++ b/python/extensionmanager/__init__.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/python/extensionmanager/actions.py b/python/extensionmanager/actions.py
index 0efaae4..29d64cc 100644
--- a/python/extensionmanager/actions.py
+++ b/python/extensionmanager/actions.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/python/extensionmanager/list.py b/python/extensionmanager/list.py
index 9850964..2996be3 100644
--- a/python/extensionmanager/list.py
+++ b/python/extensionmanager/list.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
@@ -132,7 +132,7 @@ class ListView(QtWidgets.QDialog):
QtWidgets.QMessageBox.information(
self,
"Removed \"" + ext + "\"",
- "The extension was uninstalled. Please restart QtCreator to apply this change."
+ "The extension was uninstalled. Please restart Qt Creator to apply this change."
)
else:
QtWidgets.QMessageBox.warning(self, "Select an Extension", "Please select an extension to uninstall.")
@@ -142,7 +142,7 @@ class ListView(QtWidgets.QDialog):
self,
"Select Extension",
"/",
- "QtCreator Python Extensions (*.zip)"
+ "Qt Creator Python Extensions (*.zip)"
)
oldExtensions = list(instance.extensionList())
result = actions.install(fileName[0])
@@ -150,7 +150,7 @@ class ListView(QtWidgets.QDialog):
QtWidgets.QMessageBox.information(
self,
"Extension Installed",
- "The extension from \"" + fileName[0] + "\" was installed successfully. Please restart QtCreator to apply this change."
+ "The extension from \"" + fileName[0] + "\" was installed successfully. Please restart Qt Creator to apply this change."
)
self.reloadExtensionList()
else:
diff --git a/tests/testextension/__init__.py b/tests/testextension/__init__.py
index 0c3f988..fb17830 100644
--- a/tests/testextension/__init__.py
+++ b/tests/testextension/__init__.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/tests/testextension/setup.py b/tests/testextension/setup.py
index 1e57d9b..d9806d2 100644
--- a/tests/testextension/setup.py
+++ b/tests/testextension/setup.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/tools/license.py b/tools/license.py
index 9fdbc60..7e14f33 100644
--- a/tools/license.py
+++ b/tools/license.py
@@ -6,7 +6,7 @@ cpp = """/**********************************************************************
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Python Extensions Plugin for QtCreator.
+** This file is part of the Python Extensions Plugin for Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
@@ -33,7 +33,7 @@ py = """########################################################################
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/tools/pyside2_config.py b/tools/pyside2_config.py
index dc69d08..93a165f 100644
--- a/tools/pyside2_config.py
+++ b/tools/pyside2_config.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows:
diff --git a/tools/sanity.py b/tools/sanity.py
index 94215e8..c4b610f 100644
--- a/tools/sanity.py
+++ b/tools/sanity.py
@@ -3,7 +3,7 @@
## Copyright (C) 2018 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
-## This file is part of the Python Extensions Plugin for QtCreator.
+## This file is part of the Python Extensions Plugin for Qt Creator.
##
## $QT_BEGIN_LICENSE:BSD$
## You may use this file under the terms of the BSD license as follows: