- 01 Jul, 2015 1 commit
-
-
Christian Stenger authored
Additionally move Qt5Path helper class into classes.py as it's now used in more than one test suite. Change-Id: I0a1faed7fa8c082316c5568e4150091812af8979 Reviewed-by:
Robert Loehning <robert.loehning@theqtcompany.com>
-
- 30 Jun, 2015 12 commits
-
-
Tobias Hunger authored
Change-Id: Ic5c6986cf2b8b6c1249e1b6e10ee12173583e614 Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Tobias Hunger authored
Task-number: QTCREATORBUG-14643 Change-Id: I9c62904c271e2c2a94785dd8223b60d588da822b Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Christian Kandeler authored
Such items behave "module-like" and one should therefore not count on them having access to the scope of their parent item. Change-Id: I8a323ae31218c6b1ee721ffaa65c04ccf08943bc Reviewed-by:
Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-
Thomas Hartmann authored
Change-Id: I13fde57a500af3aa7e94a9e30d29b481fbc21191 Reviewed-by:
Robert Loehning <robert.loehning@theqtcompany.com>
-
Ulf Hermann authored
It gets triggered accidentally when the updateDisplay() is triggered before the views are re-enabled after loading a trace. The V8 view is gone, so we don't need it anymore. Change-Id: If0eb96d47243f82ef66da9b3184b3b886d6f1457 Reviewed-by:
Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-
Robert Loehning authored
Change-Id: Iae6f066cf52f1e520a8f0dc3a24261387ae2ec10 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Christian Kandeler authored
Change-Id: I3dee9256cf9b49b3a5651d8534aec630c2d1ae5d Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Leena Miettinen authored
Update text to match the template and UI. Use the \example command instead of \page to have qdoc generate HTML files from the example files. This requires also adding the .pro file. Add an SVG image to the sources and link to it from the text. Change-Id: Ib90798386ee082c9ea2a405b33a4f2a5996a9d2a Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Kai Koehne authored
Copy the hard-coded heights from the Qt installer. Otherwise the Qt Account page texts do not fit the default height, and the text is cut off at the bottom. Change-Id: I290a69ce6cbb57f4f63ff54728a9400253407ffb Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
BogDan Vatra authored
This provides a way for third-party plugins to implement run modes without the need to add a value to the central enum or using manual workarounds like RunMode(*(int*)&someUniqueObject). Instead of centrally defined enum values this uses Core::Id that could be defined anywhere. Change-Id: Ic350e3d8dbb8042c61b2d4ffec993ca151f53099 Reviewed-by:
Daniel Teske <daniel.teske@theqtcompany.com> Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Eike Ziller authored
There were a few Qt versions where the menu nib was missing from the installer, but no longer. Change-Id: I2ab95237cb5e0d2b72d7086f8a784a35e0c935a1 Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
Christian Stenger authored
Change-Id: I88383be83b518de6363a53bb6102f1f302fac1cf Reviewed-by:
Robert Loehning <robert.loehning@theqtcompany.com>
-
- 29 Jun, 2015 13 commits
-
-
Tobias Hunger authored
* Do not use 100% CPU * Do use the correct machine_id Task-number: QTCREATORBUG-14356 Change-Id: Ib6ae9036be83f4f3bb9f7834a1590b492d9a33e1 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Nikolai Kosjar authored
Now the ClangCodeModel makes also use of this. Change-Id: I3d547dffe48e35d3b3d03063bc1a640283d670c1 Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Christian Stenger authored
Change-Id: I2e9fffd35571c4aef62dc27330425f4bf6ac9a68 Reviewed-by:
Robert Loehning <robert.loehning@theqtcompany.com>
-
Christian Kandeler authored
We need to pad the encoded integers to the full width, so the signature will have the correct length. Change-Id: Ic844a5996ed3d8a121847d09aae1a7782ee2c24c Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Christian Kandeler authored
No functional changes. Change-Id: Ie75fd001c90c2eaaf3c085c92e9ab2279e1fff98 Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Ulf Hermann authored
The v8 tab has been removed and QML_DISABLE_OPTIMIZER has been removed from qtdeclarative a long time ago. Change-Id: Ifaa20c4d02b5d6aad857d68a1cc5a0654710399d Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
hjk authored
Its use case is now covered by the generic createDebuggerRunControl. Change-Id: I2bd04351a51f3f8aae8407c2b7921a4566c17d56 Reviewed-by:
Benjamin Zeller <benjamin.zeller@canonical.com> Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Orgad Shaneh authored
Defined in section 14.7.2 of the standard. Fixes completion for std::string. The following explicit instantiation appears in bits/basic_string.tcc: extern template class basic_string<char>; This is wrongfully considered a specialization for a forward declaration (like `template<> class basic_string<char>` is). Introduce a new Symbol type for explicit instantiations. Use-case: template<class T> struct Foo { T bar; }; template class Foo<int>; void func() { Foo<int> foo; foo.bar; // bar not highlighted } Change-Id: I9e35c8c32f6b78fc87b4f4f1fc903b42cfbd2c2b Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Nikolai Kosjar authored
Making CompilerOptionsBuilder to use the toolchain from the project part simplifies its public API, but following the code paths initiated by ClangCodeModel and ClangStaticAnalyzer gets harder, so better enable the separation of those by making CompilerOptionsBuilder a base class. Change-Id: I0a6bb3f8323ba09b88135a7f9d1ef967331a8ff0 Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Orgad Shaneh authored
Use-case: struct Foo { int bar; }; void func() { typedef Foo F; []() { F f; f.bar; // bar not highlighted }; } Change-Id: Ifaee2d125931d993acad69f03031a675c6180858 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Orgad Shaneh authored
Use-case: namespace Ns { namespace Nested { struct Foo { void func(); int bar; }; } } using namespace Ns::Nested; namespace Ns { void Foo::func() { bar; // bar not highlighted } } Change-Id: I6e667d63eb40511d65532c4d6d317aa4028a87a4 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Christian Kandeler authored
The test apps now return != 0 in case of an error. Change-Id: I2380bc4b8e0c85e68d79f90ccc39ad9419851b04 Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Christian Kandeler authored
This partially reverts commit b646c37f. Change-Id: I708f791afb8cab4c9b0864b557f2a22e4b0fce84 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
- 27 Jun, 2015 2 commits
-
-
Christian Kandeler authored
No functional changes. Change-Id: I94f30dc1d48b5a1508d704530bfa6d8af18de89e Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Daniel Teske authored
There is no gurantee that the runconfiguration stays alive after creation. Change-Id: Ia520cc33a89ec56ad6a9b928f841eb4551732ae0 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
- 26 Jun, 2015 12 commits
-
-
hjk authored
- Move sysRoot, debuggerCommand, targetAbi to DebuggerRunParameters, they are always the one coming from the kit. - Move projectSource{Directory,Files} to DebuggerRunParameters, they are alway coming from the runConfiguration's project - Pass RunConfiguration always as separate parameter, that's what related code does. Change-Id: I9965a052237af53fa2d170701bc88b552cab12ed Reviewed-by:
Joerg Bornemann <joerg.bornemann@theqtcompany.com> Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Leena Miettinen authored
To match the changes in the application templates and the Qt Quick Designer UI. Use the \example command to create an HTML of the example QML file. Change-Id: I4da7d5f3f14ae7a1e9597204cb9dbcd54c4127cd Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Christian Kandeler authored
Change-Id: I40d1b7f739ea905bbcca1a388bada3e077b7c137 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Leena Miettinen authored
Based on the Qt Quick Controls UI Forms example. Change-Id: Iec42b7559161f980e4f482c63bfc40a22f5e77f8 Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Daniel Teske authored
Those variables are unused except for debugging output since more than 1 year. ed148374 Change-Id: I052fd042901401641c784eb66ab017a8f31f844e Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Eike Ziller authored
Change-Id: I6edbe34f311863019f6150bf0b2ce6400e836755 Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
Christian Kandeler authored
Make double sure we use "target extended-remote". Change-Id: I4e96d1d6a9dc5393318409503adb835afb229fd2 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
... after some re-wording. Change-Id: Ibc8f0c58b56689c3f1af863db3c796db07bf3670 Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Lorenz Haas authored
Change-Id: I25b50387782e1e1e8469bd2ca6841c6547dc9792 Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Lorenz Haas authored
Change-Id: I45d88cdb86dc72ba9b30e71ba0c193a736b8d532 Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Nikolai Kosjar authored
...with a prefix. Change-Id: I6e23e00254d7b7316057514d1234cde66ab44a0d Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Nikolai Kosjar authored
Makes the client code more readable. Change-Id: Ie98ba93c758643039d3ebdc7550b1c4ac9473298 Reviewed-by:
Marco Bubke <marco.bubke@theqtcompany.com> Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-