- May 07, 2013
-
-
Aurindam Jana authored
Specify project source directory and sysroot. Change-Id: Ie9287ef4da023159b131e67de51ffc218c4d2a70 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Apr 11, 2013
-
-
hjk authored
This fixes a regression introduced after 2.5 Task-number: QTCREATORBUG-9110 Change-Id: I72450d7c6797910e789f78c7478fc7dd3d6f6228 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Mar 19, 2013
-
-
Robert Loehning authored
Change-Id: Ic5895a6c8f8402d4abf0d66ab334caa5815de7dc Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- Mar 13, 2013
-
-
Aurindam Jana authored
The debug button should be enabled or disabled after checking if the project can be run in DebugMode. Change-Id: I2700c1de290f89bae9456319c2e93857374838ed Reviewed-by:
hjk <hjk121@nokiamail.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Mar 05, 2013
-
-
Friedemann Kleint authored
Delay parsing of parameters until the kits are loaded. Task-number: QTCREATORBUG-8876 Change-Id: I091dfabb73649e3fe87308e5a5c6c4502b00fe66 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- Feb 26, 2013
-
-
David Schulz authored
Task-number: QTCREATORBUG-8834 Change-Id: I75ed8014076644e987f7883e762a2ed395d0ecdf Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- Feb 12, 2013
-
-
Leena Miettinen authored
Change-Id: If69a218abbbeb4ae169ce4496b58484adab2470a Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- Jan 29, 2013
-
-
Robert Loehning authored
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Jan 28, 2013
-
-
Tobias Hunger authored
I ran once too often into them being called applicationrunconfiguration.(h|cpp)! Change-Id: I280a3280173b80d4d955faddedf11688786eee14 Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- Jan 25, 2013
-
-
hjk authored
This is now in sourceutils.{h,cpp} to make watchutils.{h,cpp} better acessible to the debugger auto-tests. Change-Id: Ie87e715bc7018ca190a460c37dfd19bc897059f0 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- Jan 24, 2013
-
-
hjk authored
It was returning 'true' unconditionally for a while. Change-Id: Ia99bdb3c525641f757dacbba148b68d677f4d632 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- Jan 09, 2013
-
-
hjk authored
Task-number: QTCREATORBUG-8446 Change-Id: I79abc7f75779db15bd8700c085b9cd57411bb2e1 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- Jan 08, 2013
-
-
Orgad Shaneh authored
#!/usr/bin/env ruby Dir.glob('**/*.cpp') { |file| # skip ast (excluding paste, astpath, and canv'ast'imer) next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i s = File.read(file) next if s.include?('qlalr') orig = s.dup s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m| res = $& if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces res else res.gsub!('} else', 'else') res.gsub!(/\n +} *\n/m, "\n") res.gsub(/ *{$/, '') end } s.gsub!(/ *$/, '') File.open(file, 'wb').write(s) if s != orig } Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc Reviewed-by:
hjk <qthjk@ovi.com>
-
- Dec 30, 2012
-
-
hjk authored
Change-Id: I48c9b1353d80ebd85c81aa8a03d0be200781122a Reviewed-by:
hjk <qthjk@ovi.com>
-
- Dec 29, 2012
-
-
hjk authored
Change-Id: I3865fde2347d687a7dee76dd5ca62db69cc4dd04 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Dec 11, 2012
-
-
Aurindam Jana authored
Task-number: QTCREATORBUG-3812 Change-Id: Ifa0ff5d030d6dc3e88df64523a81847314ff26ed Reviewed-by:
Christiaan Janssen <christiaan.janssen@digia.com>
-
Aurindam Jana authored
On a debug break, inspector tools cannot be used as the gui thread is blocked. Task-number: QTCREATORBUG-5466 Change-Id: I808d751b1ade7e4a5c98e87fec7bb4cb02715ad8 Reviewed-by:
Christiaan Janssen <christiaan.janssen@digia.com> Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Nov 28, 2012
-
-
Orgad Shaneh authored
find -name \*.cpp -o -name \*.h | \ xargs sed -Ei 's/ (for|foreach|if|switch|while)\(/ \1 (/g' Change-Id: I9efdff4bf0c8c01a52baaaeb75198483c77b0390 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Nov 27, 2012
-
-
Orgad Shaneh authored
Only comments were adapted Change-Id: Id1393d512ed950ca747267c1e024d54e3bfc279d Reviewed-by:
hjk <qthjk@ovi.com>
-
- Nov 20, 2012
-
-
Orgad Shaneh authored
Distinguish from const char * one. QString ctor is yet to be removed Change-Id: I2da231036c6417353b0566d39666d918ad141c6d Reviewed-by:
hjk <qthjk@ovi.com>
-
- Nov 09, 2012
-
-
hjk authored
Via context menu in the modules view, gdb-only for now. Change-Id: I1163540cd9894c52243bb1bf0c2afc881e793863 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Nov 07, 2012
-
-
Aurindam Jana authored
The host address is now retreived from the kit info. Incase, a device is not associated with the given kit, the host is assumed to be localhost. Change-Id: I659d2d64ec78dc1b10c80c97390994a56ff26344 Reviewed-by:
Kai Koehne <kai.koehne@digia.com> Reviewed-by:
hjk <qthjk@ovi.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Nov 06, 2012
-
-
hjk authored
Change-Id: I2b939409374508687f4ea2e0d4cae65ac62498c7 Reviewed-by:
Christian Stenger <christian.stenger@digia.com>
-
- Nov 02, 2012
-
-
Friedemann Kleint authored
- Provide stubs for Non-Windows - Reduce #ifdefs, check Abi if possible. - Remove unused winGetCurrentProcessId(). Task-number: QTCREATORBUG-8141 Change-Id: I80558ca4e52e87c7371597ea07c091af08097b34 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Oct 29, 2012
-
-
Friedemann Kleint authored
Fix codepath overlooked in 6886e485 by introducing a WatchHandler::watchVariable(). Task-number: QTCREATORBUG-8120 Change-Id: Ibab2619754e0006f3c81810a6bfdf758261c169e Reviewed-by:
hjk <qthjk@ovi.com>
-
- Oct 23, 2012
-
-
hjk authored
Listen to gdb/MI notifications when possible. This is more granular, gives access to the thread group id and takes care of thread changes at any time. Change-Id: I8c67f6f19b204059deefdf7e07fe3b4ce13ed963 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
hjk authored
This is a common use case when examining core files from devices without ssh access or "externally" created core files and used to work with 2.5. Change-Id: Ie8ee5e2e0216c1e8c3265cf01e59f2c92d8730ef Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
- Oct 16, 2012
-
-
Aurindam Jana authored
Task-number: QTCREATORBUG-8059 Change-Id: Icc277f47f46c1d7276d860e8bf1c133198020d78 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Oct 09, 2012
-
-
Aurindam Jana authored
Change-Id: I26765134c19b9a6cf1e7ad26f313e2d4f8faf258 Reviewed-by:
Christiaan Janssen <christiaan.janssen@digia.com>
-
- Oct 05, 2012
-
-
hjk authored
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
Aurindam Jana authored
The console is now a part of qmljstools plugin. The console appears as an output pane. A dummy QScriptEngine evaluates expressions when a declarative debug session is not in progress. During a debug session, the expressions are evaluated by the debug services. Task-Number: QTCREATORBUG-7402 Change-Id: Ic2eeac44fb335c706be03b89f8672b0356efe984 Reviewed-by:
Christiaan Janssen <christiaan.janssen@digia.com> Reviewed-by:
hjk <qthjk@ovi.com>
-
- Oct 04, 2012
-
-
Christian Kandeler authored
So far, the only option is whether to use the default proxy or not. More will follow. Change-Id: Icd1ec407a0269cc8e7577901853d3873fd03015c Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Sep 27, 2012
-
-
Eike Ziller authored
Change-Id: Iadbb51b48ea82afc398b59148d603867b0439448 Reviewed-by:
Aurindam Jana <aurindam.jana@digia.com> Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com> Reviewed-by:
hjk <qthjk@ovi.com>
-
- Sep 21, 2012
-
-
hjk authored
A -debug <pid> or -debug core=... wasn't properly handled anymore. Change-Id: Ia976eccc0924e8e22168d8be35d7c24e1d566487 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Sep 11, 2012
-
-
Orgad Shaneh authored
Change-Id: I6cc06684134030bd527d9dcce21ad17938a56927 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
- Sep 07, 2012
-
-
hjk authored
Change-Id: I916c42bc141f5bfbf5dd163b3d9dfeed3703ed94 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- Sep 05, 2012
-
-
Friedemann Kleint authored
Introduce virtual methods such that it is possible to write derived classes for specific KitInformation classes, allowing for filtering and setting text and tooltip. Remove debugging-specific code of KitChooser from the ProjectExplorer. Move populate() away from the constructor as not to call virtuals from it. Implement DebuggerKitChooser. It should no longer be possible to to choose an invalid kit for debugging from the debugger starter dialogs. Add a protected constructor to DeviceProcessesDialog allowing to pass a KitChooser. Change-Id: I8c683a2da7d69bfbccdc08213cb47d69a0df8b3e Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Friedemann Kleint authored
Introduce a struct DebuggerItem as a debugger configuration item, containing debugger engine type and binary. Store information as a variant map. Add a combo box. Remove engine guessing logic. Parts of it are still required when checking the suggested debugger from the SDK. Split error checking to be able to do a quick error check and find only valid profiles in the matchers. Pass on errors up to RunControl::create(). Change-Id: I08653e2a76ca2c371701082f8173b0b8f8ed462e Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Daniel Teske authored
And add a few helpful error messages Task-number: QTCREATORBUG-7826 Change-Id: Ia9f9fa476cecf2cff198bc460408bc062e119338 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- Sep 04, 2012
-
-
Tobias Hunger authored
* Rename profiles to kits. * Update some strings: * projects mode has a Kits tab, not a Targets tab. * " Settings" was dropped from the sub-tabs of the Kits tab * menu entry "Build/Open Build/Run Target Selector" was renamed to "Build/Open Build and Run Kits Selector". * Use "Kit" instead of "Target" in miniprojecttargetselector. (The class was not renamed as it does indeed select targets, not kits) Change-Id: I0727e086e2dfa0e8aaaf89fdc6f2e3596c7a4314 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-