... and use the symbol file similarly to the other remote
setups. This makes it work with NDK r10e at least.
Change-Id: I4264d6201d1fb9dd0fed71168ee4155dde53265c
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This is a display name and should not be confused with the
function pointer.
Change-Id: Id91ed4c0adb26cf91d39be73689aec4f340342b8
Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
This watcher checks the directory for the QML file
and triggers an item library update if e.g. a component is added.
Change-Id: Ic130c73d70d328482543cd981f8fba9566d3ab4b
Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
Don't try to write from another thread into a process stdin. Fixes
"QSocketNotifier: Socket notifiers cannot be enabled or disabled from
another thread" warnings.
Change-Id: Id93a40a6bee6d4042cf600c8fabb06bf965d8ccc
Reviewed-by: hjk <hjk@theqtcompany.com>
Add code to find the developer disk image in xcode installation
based on the device version and build number
Change-Id: Ic05795ad9411ef0f3713c58dc9d286bf6ad1fa19
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
The painting code path for flat themes did not handle the disabled
state. This change catches up on that, and also suppresses the painting
of the hover border in disabled state.
Change-Id: I29d50be4549c81a25f976c61f6d4541862d2925e
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
while (!proc.waitForFinished(200)) { ... } effectively behaves as
endless loop if proc is already crashed at that time.
Change-Id: Ia2228ceddc9c45a37816209deb7e4fd69c7ab7b9
Reviewed-by: BogDan Vatra <bogdan@kdab.com>
Gets rid of the dummy callable object for QtConcurrent::map.
Change-Id: I306b238ed72f798b88c859e76def3f97c8ee1582
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
QTextCursor::insertText removes the selected text and then inserts the
new text, which moves all text cursors that are at the selection start,
so manually first insert behind the selection and then remove.
Task-number: QTCREATORBUG-15623
Change-Id: I8e6e88876c59a82c50ba379506f49ceeaef38e52
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This is similar to what we did in Qt Creator 3.6.
Task-number: QTCREATORBUG-16138
Change-Id: I557ecb4b853ca25497e720fc30bbbbc160e36a70
Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
Doing this afterwards will create a tree with all files and then iterate
that tree and filter nodes.
Doing this before parsing the tree will be created with the filters applied.
Change-Id: Iabd20774ab164a159890a5213855f5cc8aa93477
Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
Check for invalid (top level) or valid indexes in the overridden
functions. This prevents crashes due to accessibility traversing
the model.
Task-number: QTCREATORBUG-13142
Change-Id: I22d0831338436479e6ec3b215514bbb9513dffc7
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
With this patch it is possible to specify QML_IMPORT_PATH in
CMake projects and QtCreator will scan those paths.
One only has to make sure that the variable which is set in the
CMakeLists.txt is also added to the CMakeCache.txt
Task-number: QTCREATORBUG-11328
Change-Id: I11c7694806664d3203d855983e7db4a89fac267d
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@theqtcompany.com>
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Now the use can choose which properties are defined
inside the component and which properties are kept in the
original file. To make the concept clear the dialog contains
a snippet of the generated code.
Change-Id: I92f9f241c9780345dd03b991232c4a811356c266
Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
Old layout was too tight for translated messages.
Change-Id: I98ffeb5bc6c9ac565edafdf5412e27db818b4052
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Using it implies dynamic_cast in treeitems, and we want to avoid that
across library boundaries.
Change-Id: Id2e624b770cd559ef9e8b25366734f2dd92658c0
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
We get notified about debug messages, after all.
Change-Id: Ie6fcdfa68b36969c264ebc6e54e6359c8d723584
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
- no behavior changes
- using nullptr
- renaming data -> d
- transform single used small slot function to lambdas
Change-Id: Ifae389b8a865b0b6a501b6f3d60597a66d9febe8
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@theqtcompany.com>
Saves one level of expansion when looking at containers.
Change-Id: I4d43af2fb0dd0e9d493a12335d6b8b541e741ecf
Reviewed-by: Christian Stenger <christian.stenger@qt.io>