- Jun 12, 2013
-
-
Orgad Shaneh authored
Breaks MSVC build This reverts commit 4ceb58a4571fc373e529a61dcc750723d980b568 Change-Id: I85979c7f926ff1135cc4028f5840af75573974c2 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
jkobus authored
Change-Id: I706612a8f89917cb57b7d1e9ecebd86b3f4bcc8d Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com> Reviewed-by:
David Schulz <david.schulz@digia.com>
-
Thomas Hartmann authored
interface is already defined in the Windows 7 SDK headers. Change-Id: Ic154d45017fc32dca1721f4a0f18456f370bd604 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@digia.com>
-
- Jun 11, 2013
-
-
Orgad Shaneh authored
Change-Id: I9ec0ae0ff6a1b70e5d4c322dbf2e53be57e3009f Reviewed-by:
Petar Perisin <petar.perisin@gmail.com> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Daniel Teske authored
QT += testlib automatically adds CONFIG+=console, which we use to decide whether the app should be run with a terminal. Typically though those apps do not need a terminal since they are just unit tests without any need for input. Task-number: QTCREATORBUG-9475 Change-Id: I98667cb17a6696a4a4ffd195280e816d84d33581 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
Nikita Baryshnikov authored
Make it possible to pull and push into online repositories with http authorization. Changes: * Separated dialogs for entering username and password are merge together * Do not show dialog for local repos * Prohibit passwords for ssh scheme Task-number: QTCREATORBUG-5104 Change-Id: I22fe3d778bb43d25ccd3ee423f98b22dd2019c24 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
hjk authored
Change-Id: I0030b769e977c6ffced1a87715831386ef0d5319 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
Daniel Teske authored
In 0ce0a053 code was added to ensure that if there is a configured runconfiguration, then it'll be made active. This fixes that code to work more robustly. Consider the case: Two runconfigurations a) custom executable runconfiguration unconfigured (active) b) configured qt4runconfiguration The code in upadteRunConfigurations would put a) into the existingConfigured list since it is active, b) since it fits. Thus the code at the end would not change the active runconfiguration, since existingConfigured.at(0)->isConfigured() would be false. Consider now the same case, but with the reverse order. Now the code makes b) active. The ordering between rcs should not matter. Also consider that in the second case, the next run of updateRunConfigurations will remove the now non active unconfigured runconfiguration. Change-Id: I98291db4eda22e9dae3e493a8f31c7d9bb5420d6 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
hjk authored
Change-Id: I0130b769e977c6ffced1a87715831386ef0d5319 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
Daniel Teske authored
Task-number: QTCREATORBUG-8337 Change-Id: I585b6330e6aa18891ebf0171bf6c8813761943f1 Reviewed-by:
Robert Loehning <robert.loehning@digia.com>
-
Tobias Hunger authored
Change-Id: I8f355e6ead9136741af199d08935a0f3e7446110 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Daniel Teske authored
Task-number: QTCREATORBUG-9512 Change-Id: Id5940ef8933958f994d3564dfc9b5cc7362c7dfa Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
Thomas Hartmann authored
Since we use Info.plist.in we need QMAKE_SUBSTITUTES and cannot use QMAKE_INFO_PLIST. We manualy replicate the target logic. Change-Id: I5b703d09db85457ba3bdadef97fd1cc2194b618f Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
Erik Verbruggen authored
By lexing the first token after a macro call (meaning: the token after the closing parenthesis (which was passed to handleFunctionLikeMacro which in turn pushed it back into the token buffer)), a token buffer might be popped, which unblocks the macro that generated the actual param pack. The effect was that if this happens in the expansion of a recursive macro (with parameters!), the preprocessor ended up in an infinite loop. Task-number: QTCREATORBUG-9015 Task-number: QTCREATORBUG-9447 Change-Id: I0d83c59188ec15c4a948970e9fa944a17d765475 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@digia.com>
-
Marco Bubke authored
Change-Id: I4286439082f25fa1eeaf4b90ae3d00aedd80cd51 Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com> Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-
Thomas Hartmann authored
info was missing a $$PWD/ in .pri files. Change-Id: I01771021595c706514786c9d7b2991cc5d9f60cb Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
Nikolai Kosjar authored
...to be consistent with inserting "Outside Class" and "in xxx.cpp". Change-Id: I32a43153d5d3bdec9fae0be731484a26b108c438 Reviewed-by:
Lorenz Haas <lykurg@gmail.com> Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
Nikolai Kosjar authored
Respect also whitespace within the operator names (e.g. "operator=" vs "operator ="). Change-Id: Ibdfc77e9eebf7e3db31ccce7d8959b226dcda765 Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com> Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
Nikolai Kosjar authored
Remember using/typedef declarations we have already looked up and stop if we try it again. Change-Id: I91bf0aef4df18539a47d015f0113543aef1f692a Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
Nikolai Kosjar authored
Remember auto declarations we have already looked up and stop if we try it again. Task-number: QTCREATORBUG-9503 Change-Id: I989b11609c98bf197ce916d79c9d452294355053 Reviewed-by:
Przemyslaw Gorszkowski <pgorszkowski@gmail.com> Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
Andre Hartmann authored
The Gerrit dialog itself was missing while Push to Gerrit was already there. Change-Id: Ie4b85cad9dba96beafb595c505daf28d0a1ceeb5 Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Petar Perisin <petar.perisin@gmail.com>
-
Tobias Hunger authored
Change-Id: Ica34fd300129902ad6237b832cfa4a37c565b9fb Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Nikolai Kosjar authored
...by detecting include groups (separated by new lines, include types and same dir prefix). Task-number: QTCREATORBUG-9317 Change-Id: I73e80fdc715104901cb2d4f5b15b4cab5d04d305 Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
Nikolai Kosjar authored
Change-Id: Id107b6c1f34f594c5a01502c156963c964235ed7 Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
Tobias Hunger authored
Change-Id: Id1e0a1d869f44c020d1d1ab432da3fa75c528a06 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Thomas Hartmann authored
When collecting the super classes/types we did not fully qualify QML components. (e.g. just Button instead of QtQuick.Controls.Button) This patch now fully qualifies the QML component. The missing qualification broke the specifics mechanism in the property editor (see task). Task-number: QTCREATORBUG-9222 Change-Id: I61b6b6432493c1c440356547003269767415acb4 Reviewed-by:
Marco Bubke <marco.bubke@digia.com> Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-
Lorenz Haas authored
Do not trigger for functions inside a function call. Task-number: QTCREATORBUG-9510 Change-Id: I908483fe80ff3ac0f737b21061375e206c1b1d1d Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@digia.com>
-
Thomas Hartmann authored
We get a warning if the operator is used from another module. Change-Id: Ib798037cb6e16fbb2c3fb4fb61d9445a0d5cd93d Reviewed-by:
Marco Bubke <marco.bubke@digia.com>
-
Thomas Hartmann authored
Change-Id: I93fc12690a3a0e3223992551116d36fdaa2699d4 Reviewed-by:
Marco Bubke <marco.bubke@digia.com>
-
Thomas Hartmann authored
Change-Id: I2ee68bff1100099769cb8a4413052c7f0b8f88aa Reviewed-by:
Marco Bubke <marco.bubke@digia.com>
-
Robert Loehning authored
Paths change when updating or freshly installing the Qt SDK. Change-Id: I18c3e5ea86be4f0ad3522cfd6e19c09b57ea56c7 Reviewed-by:
Christian Stenger <christian.stenger@digia.com>
-
Daniel Teske authored
Change-Id: Ifc1ea9ccea831270a83a114eb46ade2c68995bc3 Reviewed-by:
BogDan Vatra <bogdan@kde.org>
-
Orgad Shaneh authored
Change-Id: I1557d2e57f5838d7820bcb41190ff2bb4b9a0473 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Kai Koehne authored
Got introduced in 21150df9 Change-Id: I8be4a8c01b858327b2df519195c0d3b30b5816f4 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
Kai Koehne authored
Expand the width from 140 to 200 px to make sure that usual names do fit. Change-Id: I311ba32a7f300e96ec6b6d183d1078467a71e26a Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-
Tobias Hunger authored
Change-Id: Iaa79e316bf1ffcf2370689db9d1fdd3836dbfe4d Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Tobias Hunger authored
Task-number: QTCREATORBUG-9356 Change-Id: I325fd59e5a974232f53ac5ea2d38d7c8bd3cad50 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Kai Koehne authored
Show the display name of the kit, instead of computing a generic one out of the Qt version. Change-Id: I9d3700bdd64a686f1761c073a47b57153c2ca10b Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
Orgad Shaneh authored
Change-Id: I6ef3c615070f055e688c94d6901d8c9a861b9928 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Erik Verbruggen authored
The method linksForIdentifier was called at least thrice when generating a single valid tooltip in the C++ editor. Now the cached, and the cache can be "initialised" during construction. This reduces the time spent for creating a tooltip by 30%. Task-number: QTCREATORBUG-8970 Change-Id: I5130b769e977c6ffced1a87715831386ef0d5319 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@digia.com>
-