- 09 Nov, 2014 2 commits
-
-
Thorben Kroeger authored
Task-number: QTCREATORBUG-13309 Change-Id: I320f031a49f8ad2ef4eabd80597d8183f172aa78 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Dieter Piringer authored
Change-Id: I5db01695fd6af338348994bed7498a3d4c7676ea Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
- 08 Nov, 2014 1 commit
-
-
Orgad Shaneh authored
Change-Id: I2ce389abdffe99e27992c71ca64a4888c2e7fac5 Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-
- 07 Nov, 2014 26 commits
-
-
hjk authored
Easier to guess what gets hidden. Change-Id: Ie7731dc6bb601bfa1ea6eb8cb69822e72bdfbd66 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
hjk authored
Change-Id: Iaa4204d374913c65e322b2a00831caeb1b3b1ccc Reviewed-by:
hjk <hjk121@nokiamail.com>
-
hjk authored
This opens it up to be used with Qt5 connects in the TooltipManager and simpler user code. Change-Id: Ifc6fcc3a04d325437f5a2bdf1da463d28d650ee3 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
Daniel Teske authored
The affected cmake projects have the CMakeLists.txt in a subdirectory of the project's root. We can't figure out the right project part in that case. Falling back to the "all" target is wrong though, since that has not every include path. Instead search for a good target that has more include paths. Change-Id: I1a874042fcb9533888a41c001fbf8adc2aa90a39 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Daniel Teske authored
Change-Id: I2767a901220711dbba6b34c36e256d282f468778 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
jkobus authored
The description itself isn't saved so no need to keep it anymore. Change-Id: I8e521ce261261eb91a1f218f4e65092fc3fb44e8 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
hjk authored
It's just 'Session' now. The old values will continue to work but not offered in the variable choosers. Change-Id: I7e7a62f04abfd895d21cc3c07c4f89056d90b596 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Orgad Shaneh authored
Alt+H triggers the Help menu. Task-number: QTCREATORBUG-12531 Change-Id: I357db8f01fa28209a818e8c9a9587f213e0d0ca5 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
hjk authored
The layout has changed in ee324e4ed527. Change-Id: I4b5f47f6526bf1218fdb79dc625f7482af21012b Reviewed-by:
Christian Stenger <christian.stenger@digia.com>
-
Eike Ziller authored
Change-Id: I4b908fd76602170a186b9e1430c7d0e65046d17d Task-number: QTCREATORBUG-13355 Reviewed-by:
Robert Loehning <robert.loehning@theqtcompany.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
Nikita Baryshnikov authored
Use a helper class so that the actual implementation is shared and introduce a helper class for treating QStringList and other qt containers in the same way. There are now 2² overloads, because: - member function pointer vs everything else - same container type, different container types Change-Id: I343ca7d4e0007f7146b2e646c436c22174e27779 Reviewed-by:
Daniel Teske <daniel.teske@theqtcompany.com>
-
Thomas Hartmann authored
Change-Id: I07b1d83071407c19874af936617a395a37a79dd5 Task-number: QTCREATORBUG-13080 Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Nikolai Kosjar authored
Analyzers can use this to rule out irrelevant (sub) projects. Change-Id: I5a9eb66f06156f0619dc639f6f4080a8fc761ee6 Reviewed-by:
Daniel Teske <daniel.teske@theqtcompany.com>
-
Leena Miettinen authored
Change-Id: I66a86f15bc7fd7080c264beb428f6fe728b10dc5 Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
-
Przemyslaw Gorszkowski authored
Fixed case: class Foo {}; void foo(int v) {} void foo(const char *v) {} void foo(const Foo &v) {} void foo(char v) {} void test() { foo(5); foo("hoo"); foo('a'); char *var = "var"; foo(var); // Jumps to last override, regardless of its type Foo f; foo(f); // Jumps to last override } Task-number: QTCREATORBUG-13128 Change-Id: I038553bb3bdbe1c300fc01573c14b6fedf0320cd Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Tobias Hunger authored
Do not delay them till after the command has finished. Change-Id: I52984e1deeaeb33e3feba0a5b6b982059870f4b8 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
hjk authored
At least on Linux setting one data watch point resulted in two view entries, since we parse two responses (direct command response, and later GDB notification). Suppressing the second was not working well enough. Change-Id: Ica99c000d4912a9480a9e7020d2fdfdb866753b5 Reviewed-by:
Christian Stenger <christian.stenger@digia.com> Reviewed-by:
David Schulz <david.schulz@theqtcompany.com>
-
Nikolai Kosjar authored
...otherwise we might end up having multiple indexer running for different (build) configurations. Reproduce e.g. with: (1) Open a project (adds "Parsing C/C++ files" progress notification) (2) Trigger build of project (3) While it is still building, switch between e.g. Release and Debug build configuration (4) Once the build is finished, a new code model update is pushed but the indexer for the old configuration might still run Change-Id: I685d0b3eeeb43ba5923c6af0e6b16aee6609419b Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com> Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@theqtcompany.com>
-
Nikolai Kosjar authored
...so that analyzers can make use of it. Change-Id: I9694535f02f631cac266c26b4f4c973a06c6c899 Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com> Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@theqtcompany.com>
-
Nikolai Kosjar authored
...and make some comparison functions public. Change-Id: If4c9a95031dece32073ce111484a890230190688 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: Idf445b94c1b43ab4f4c3b2e121134f7a722be1d6 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Thomas Hartmann authored
toolTip was renamed to tooltip. Change-Id: I18fc3cfb3f9ce21a6402ce3adccbb078a297b682 Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-
Orgad Shaneh authored
It isn't ready for production yet, will hopefully be reworked for 3.4. Change-Id: If738f40df5cd2b4ab7edbcdc0086c7aa5d5f47f6 Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-
Orgad Shaneh authored
Change-Id: I6537e592f87969af5c2e53606a704fabec62fedc Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-
Orgad Shaneh authored
Task-number: QTCREATORBUG-13219 Change-Id: I6278d7977f0ce560e793838c90cfbc867e1af025 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Orgad Shaneh authored
Broken by ca151d07 . Change-Id: Ic6b58b5749d5811d1250840c81d692837e9a2cea Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
- 06 Nov, 2014 11 commits
-
-
Robert Loehning authored
Change-Id: Ib5cdf1b53f136671eb9152c86abb705af32e3029 Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Alessandro Portale authored
Change-Id: Ic5e6b861e0c66e5a1f1a4e081c76b436a669c622 Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-
Alessandro Portale authored
Change-Id: Ib95510a3c9b6e15ae9956181c3462bb8251df61a Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-
Tobias Hunger authored
This makes it handle adding a long list of files more gracefully. Task-number: QTCREATORBUG-8467 Change-Id: I54dc0e405295694b4ea46ea426397223eb931722 Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com> Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Tobias Hunger authored
These need to go after the subcommand, not after the "svn" Task-number: QTCREATORBUG-13066 Change-Id: Id3de0af8b7b2f07159d5ddb1af2e5fa00dd0dbb3 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Nikolai Kosjar authored
This one does not buy us much... Change-Id: I1d6c4667c038d319d2c16166505a386653a9f066 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@theqtcompany.com>
-
hjk authored
Change-Id: Ifc423f8b7d20b524bafc4c2455a42a9043c7792b Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com>
-
hjk authored
Better suited to avoid the indirection (sizeof(Token) > sizeof(void *)) Change-Id: Ia5f42781e720ef6aa8161f8f81ae8ddd8e58c837 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
hjk authored
ProjectExplorerPrivate::m_editorConfiguration has the same lifespan as the Private itself. Change-Id: I8037528bec44109b9cf076fa5daafcfab280b459 Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
Alessandro Portale authored
Change-Id: I4d44c110473da415bf1101da20d1f67f4ed183d5 Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-
Alessandro Portale authored
(they broke when changing the page size in Inkscape) Change-Id: Ib5c4eed0c81ccde2ed2dcb2be57a9801eb85392d Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-