- Dec 28, 2011
-
-
Nicolas Arnaud-Cormos authored
Having one factory per tool (or plugin) created some bugs: * analyzer project settings being created twice * per-project analyzer settings widget duplicated Also, most of the code from the run control factory were copied. Now, the Analyzer only creates one run control factory shared among all tools, and the IAnalyzerTool has two new virtual method: canRun and createStartParameters. It simplify the code a bit, and creating a new analyzer tool is easier (only two classes to subclass: IAnalyzerTool and IAnalyzerEngine). Change-Id: I4e180846a26b74b2b77cb99bc97534d680a80a4d Reviewed-by:
hjk <qthjk@ovi.com>
-
Alessandro Portale authored
Compile error with Qt 4.8 msvc: error C2039: 'data' : is not a member of 'QStringBuilder' Change-Id: I7d8f299529852c891378f232082ba48f47cc5da3 Reviewed-by:
Aurindam Jana <aurindam.jana@nokia.com>
-
Aurindam Jana authored
Change-Id: I5b8d00c85f3857520757ccfd1a6007a5c2a1c50f Reviewed-by:
hjk <qthjk@ovi.com>
-
Aurindam Jana authored
Call resetLocation() before setLocation(). Change-Id: I633d513ddc9a5a1683e81f7cabf127e79885ad4e Reviewed-by:
hjk <qthjk@ovi.com>
-
Nicolas Arnaud-Cormos authored
startRemoteTool and startLocalTool are implcicitely working remotely and localy, they don't need a mode. Change-Id: I433ca421f68a1026979489c7f9d86b12251ec830 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Dec 27, 2011
-
-
hjk authored
Change-Id: I1daa788377295fb1446f31d9a74b9fd0df6920d1 Reviewed-by:
hjk <qthjk@ovi.com>
-
hjk authored
Change-Id: If1f13b9e9cf806cff254aedc6dab9e669105f3d6 Reviewed-by:
hjk <qthjk@ovi.com>
-
Daniel Molkentin authored
It checks against os-dependent lists which will be submitted in follow-up commits. Change-Id: Ieb40b19dbd85c30b28062b46320a6ee60ba672af Reviewed-by:
Bill King <bill.king@nokia.com>
-
- Dec 26, 2011
-
-
hjk authored
Change-Id: Ie689a719b023ed1e3756470bd144e22b1099bb07 Reviewed-by:
hjk <qthjk@ovi.com>
-
hjk authored
Change-Id: I52942a46bcd42eee4f8452a61a899d6d9b706563 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Dec 23, 2011
-
-
Joerg Bornemann authored
Change-Id: I60fc2b5ec959bfdabcae2e517a8a511323e51103 Reviewed-by:
Bill King <bill.king@nokia.com>
-
- Dec 22, 2011
-
-
Tobias Hunger authored
Handle backslash escapes in descriptions only. This unbreaks windows pathes. Change-Id: Id7314d2eb0eff85ace70f1bc3e542ad54ff12210 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
Friedemann Kleint authored
- Wrap literals in QLatin1String()/QLatin1Char(). - Extract some string constants avoiding repeated QString construction. - Fix repeated invocation of Container.end() in loops. Change-Id: If737735507aaf82e53063adda53f54c46418f42f Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Leena Miettinen authored
Change-Id: Ic030af03851e3c0d856029de807aa239a6e08b47 Reviewed-by:
Casper van Donderen <casper.vandonderen@nokia.com> Reviewed-by:
Virva Auvinen <virva.auvinen@nokia.com>
-
Friedemann Kleint authored
Make it possible to use absolute file names or prefix them for creating Qt 5 testing summary logs. Change-Id: I3d4a5fa24a9a7652fb4f8087e4b6e2a6ae6fdfe7 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- Dec 21, 2011
-
-
Christian Kandeler authored
This reverts commit 934c067ddf365c6f12b1e4a1e431f27610b32f7d, because it breaks running remote Linux applications due to buggy refactoring of the remote ports gatherer. Change-Id: I15fd8d4f3e76452a8c5c735316991bd00900444f Reviewed-by:
Christian Kandeler <christian.kandeler@nokia.com>
-
Leandro Melo authored
Conflicts: src/plugins/projectexplorer/gcctoolchain.cpp Change-Id: I516c496175afe94c57b8a1dd978d9c5cccc44610
-
Tobias Hunger authored
Allow for a set of tests to be defined. This simplifies the code for the individual test to run and allows for a more flexible approach to device testing. MaddeDeviceTester is no longer needed due to that. Change-Id: I77fd2d53246dec2d8c6b584d0c73cc1134d7f47d Reviewed-by:
Christian Kandeler <christian.kandeler@nokia.com> Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Friedemann Kleint authored
(except gdbmi.cpp, name_demangler.cpp). Remove some unneeded conversions, change some maps to take QByteArray keys. Change-Id: I010f1251998a441fe5c8c87901b1e0c277c0391c Reviewed-by:
hjk <qthjk@ovi.com>
-
Friedemann Kleint authored
Change-Id: Id6f437c54504f6730c8726264f460b8f1631899d Reviewed-by:
hjk <qthjk@ovi.com>
-
Christiaan Janssen authored
Change-Id: I4db50cd61dd5c9741168a06831d08a3b54801ac6 Reviewed-by:
Kai Koehne <kai.koehne@nokia.com>
-
hjk authored
Change-Id: I863264ce8ee10b7c0a7b140aa8c25301a97e41d9 Reviewed-by:
hjk <qthjk@ovi.com>
-
hjk authored
Change-Id: I4104cf431643d559934f78a42046a3a8f1901e9b Reviewed-by:
hjk <qthjk@ovi.com>
-
Kai Koehne authored
QtDeclarative generates anonymous wrapper functions for QML bindings and slots, e.g. onPressed(): { i++ } becomes (function (onPressed) { i++ } ) v8 will by default break when the anonymous function is called, not when the actual code is executed. If we now hit this outer function we'll relocate the breakpoint to column = 1, and continue. Change-Id: Ieea4f4ea4fbf21d7245a6243fc36d141948ef2ce Reviewed-by:
Aurindam Jana <aurindam.jana@nokia.com>
-
Aurindam Jana authored
Update open editors when internal sources are reloaded. Change-Id: If0780ac5fbbcd2a19c95dd5647d47cb70a9135e0 Reviewed-by:
Kai Koehne <kai.koehne@nokia.com>
-
Friedemann Kleint authored
It is unneeded and causes the thread window to become disabled. Change-Id: I9a3621bc574cf6774b401de7eb925741db3b9f35 Reviewed-by:
hjk <qthjk@ovi.com>
-
Aurindam Jana authored
Check for open editors with same display name before creating a new editor to show the internal sources. Change-Id: I53b365fb6c29d33922936bb4eb4dfb9476d5978e Reviewed-by:
Kai Koehne <kai.koehne@nokia.com>
-
- Dec 20, 2011
-
-
Daniel Molkentin authored
Change-Id: I627472151484d3b0b75b2030d3627d40f8c051f0 Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-
Daniel Molkentin authored
Breaks with Qt 4.7. This reverts commit f27a9160. Change-Id: I52e64dbd0e1602d400c83e32f4c8e2cf81d88d3f Reviewed-by:
Daniel Molkentin <daniel.molkentin@nokia.com>
-
Eike Ziller authored
Change-Id: I30ec590b86846f8fdcb0094a848e56002d590b7a Reviewed-by:
Leandro Melo <leandro.melo@nokia.com>
-
Christiaan Janssen authored
Change-Id: Ie3930d35d1ba989f84378f5707534f77d411a652 Reviewed-by:
Aurindam Jana <aurindam.jana@nokia.com>
-
Christiaan Janssen authored
Change-Id: I7959052ec07089419e85186b0b0e58f911e273ec Reviewed-by:
Kai Koehne <kai.koehne@nokia.com>
-
Friedemann Kleint authored
When accidentally pressing 'Debug' on a library project, the dialog asking for the executable pops up and debugging still starts although cancel is pressed. Add dialog title, set flags, and check its return values. Change-Id: I8518b8af70b12a7059f9ee0e20a9d0b325db1e98 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Friedemann Kleint authored
Change-Id: I3c62cd7d371312bed1c1c3f5220af86d64143e88 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
Kai Koehne authored
Request the sources actually seen by v8, and show them in a separate file (click on the leftmost column). Automatically populating 'Source Files' and also making the functionality available for mixed debugging requires some more thought ... Change-Id: Id8f55eed9c842b545434a6c608fb34d370a8f8bb Reviewed-by:
Aurindam Jana <aurindam.jana@nokia.com>
-
Friedemann Kleint authored
Change-Id: I836954e1d5ea341f54e117209ec3162190b29e71 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
Friedemann Kleint authored
Change-Id: Iaa6e31f8d76537ccf0e79bf2395b75e22932c304 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
Jarek Kobus authored
Task-number: QTCREATORBUG-6669 Change-Id: Ife42d13289b924ce9a098b6828a8362808f27b3c Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Eike Ziller authored
Change-Id: Ic78cf5030e78759018ea84d0c258c81c8081ae98 Reviewed-by:
Leandro Melo <leandro.melo@nokia.com>
-
Tobias Hunger authored
Change-Id: Ie613fc0b2ba6a06b5726bf40aa50958c84b9b772 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com> Reviewed-by:
hjk <qthjk@ovi.com> Reviewed-by:
Mirko Boehm <mirko@kde.org> Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-