This should fix quite a few issues with e.g. changing and cloning kits.
Change-Id: Ia3278ff1a5eb1ab4c019dca5806ce7fc691e4d8e
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Added missing spaces, fixed a link to Qt 5 docs, and added a
missing line of example code.
Change-Id: Ic7305aa6b44b7b9edf33a6828d965ab84289e353
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Retrieve current line from editor and provide it to the client
Task-number: QTCREATORBUG-8067
Change-Id: Ia1a8c9556ffc975cf2bed72ed790aa02f7157ffc
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
"Welcome page" should be "Welcome mode".
Update screen shots.
Change-Id: Iaacf7f014d18ce73a3444ee820e342a9813cf939
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Fix MSVC2010 warning:
warning: C4189: 'handler' : local variable is initialized but not
referenced
Change-Id: I4a389c6e596e8c8d4aaccabcf2cc272a626926f4
Reviewed-by: hjk <hjk121@nokiamail.com>
Just requiring it to be in $PATH is more flexible and helps e.g.
in cases where /usr is physically read-only on the device and
no or an unsuitable gdbserver is present.
Task-number: QTCREATORBUG-8705
Change-Id: I07bb30dbcc55ecc4c89d4dfda8a873197da43604
Reviewed-by: hjk <hjk121@nokiamail.com>
Errors and warnings from the BAR descriptor editor are
listed in the Issues pane.
Change-Id: I8ef7c330c00bb6d1c5888f6a06d96b450bc80c02
Reviewed-by: Mehdi Fekari <mfekari@blackberry.com>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
The executable is now selected automatically in the run
settings when using Qbs.
Change-Id: I528e0a7e067349f9925e13b927ca402c3543a46d
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This enables support for e.g. setting CFLAGS, custom defines, etc.
Task-number: QTCREATORBUG-9380
Change-Id: I9d4a560ac5ba8a40c51c15fdf8009c0dba5eeef1
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Now definitions are inserted at the same position inside the
implementation file for MoveFuncDefOutside and InsertDefFromDecl.
Task-number: QTCREATORBUG-9389
Change-Id: If823ffd15ec39a7bc2edb53519380cb9cabb4c55
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
Now it is checked if the adjacent declaration is also defined and one
can define the destination file.
Change-Id: Ifff59c49fc2ab3e2f36f41df42ae4b7d7ff8dd35
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
If a starting instance locks the shared memory while another
instance that is destructed tries to lock, when the destructed
one tests for running peers, it doesn't detect the newly started
instance, since its QtLocalPeer object is not initialized until
after parsing the command-line arguments
Change-Id: I05aeb771ba67390f554bff7a80c475b3e4d37984
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Calling setExpectChanges after execute is too late
Change-Id: I852c224206fcd758943252029b8e9b050920ca5c
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
interface is already defined in the Windows 7 SDK headers.
Change-Id: Ic154d45017fc32dca1721f4a0f18456f370bd604
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
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>
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>
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>