- 04 Sep, 2013 1 commit
-
-
hjk authored
Change-Id: I72993fda50ad70ad2d7c2f449923ac6e34b9e737 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- 02 Sep, 2013 2 commits
-
-
Christian Kandeler authored
A lot of our build system files specify unneeded include paths. These roughly fall into the following categories: a) Paths that are already set in more general files such as qtcreator.pri. b) Paths that serve no purpose at all, possibly left over from earlier versions of the project. c) Paths that act as workarounds for wrong include statements of the form '#include "xyz.h"', where xyz.h is not in the same directory as the including file. This patch removes such path specifications and fixes the offending include statements from case c). Tested on Linux, Windows and OSX with qmake and qbs. Change-Id: I039a8449f8a65df0d616b4c08081145c18ae4b15 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
hjk authored
Change-Id: I4af8793ca69a3af9e99baeb7c31dad3864266f91 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- 19 Aug, 2013 3 commits
-
-
hjk authored
Change-Id: Ib1d273ef2c2bb97a2343da6d361fde7c01012040 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
hjk authored
Change-Id: I67254bb6d3d23e9fa9e121df0b3b923330cfe84a Reviewed-by:
Aurindam Jana <aurindam.jana@digia.com>
-
Tobias Hunger authored
Make methods static and add a instance() method for Signals/Slots. Remove ProjectExplorerPlugin::taskHub() method and use the new ones instead. Change-Id: Ifae24ff19579fc524cbd61bddc826095c443adfa Reviewed-by:
Daniel Teske <daniel.teske@digia.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 02 Aug, 2013 1 commit
-
-
hjk authored
Change-Id: Ieb559e884fb08c96d739cf7684389ff740a6233e Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- 12 Jul, 2013 1 commit
-
-
Eike Ziller authored
And where using editors is necessary, take *all* editors into account, not a random set of what previously was called "original" editors (when using splits). Change-Id: Id6bbad08f3083b6744fc2edcf0b87ba504d3257b Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 07 Jun, 2013 1 commit
-
-
hjk authored
It's covered by tst_dumper nowadays. Change-Id: Id6b91e5a4ad2ac2472d598c4f0ba4c95c334af6d Reviewed-by:
Christian Stenger <christian.stenger@digia.com>
-
- 15 May, 2013 1 commit
-
-
Leena Miettinen authored
Fix capitalization and punctuation. Make some strings shorter. Change-Id: Ic018d9905d855c6694d3d63e703e772d63d75c71 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 30 Apr, 2013 1 commit
-
-
hjk authored
Change-Id: I2916a2e4a180506f01dda237fd356e9a35119117 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 15 Apr, 2013 1 commit
-
-
Friedemann Kleint authored
Change-Id: I1f2f7b4f36bee817975a4c2641cc5d7e6fbcadc2 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 08 Apr, 2013 1 commit
-
-
hjk authored
This implements the host side of https://codereview.qt-project.org/#change,50290 Change-Id: I13c7df29534a2a85202c2b295b139896443b0120 Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com> Reviewed-by:
Daniel Teske <daniel.teske@digia.com> Reviewed-by:
BogDan Vatra <bogdan@kde.org> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 26 Mar, 2013 1 commit
-
-
Friedemann Kleint authored
Change-Id: Ieeffe65be2d7c8f07f41f7211853d616a6aceb85 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@digia.com>
-
- 22 Mar, 2013 1 commit
-
-
Friedemann Kleint authored
Change-Id: Ia50e61a82101b699390b23b4f1ea9509619314bb Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 06 Mar, 2013 1 commit
-
-
David Schulz authored
Task-number: QTCREATORBUG-8820 Change-Id: If48429fc80d3b928cba4622ff6b168dca8289500 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 29 Jan, 2013 1 commit
-
-
Robert Loehning authored
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 10 Jan, 2013 2 commits
-
-
hjk authored
Change-Id: I5059dbf73482236a677de8c004ab33aaef3d4cd6 Reviewed-by:
hjk <qthjk@ovi.com>
-
Kai Koehne authored
Fix compiler warning about unused variable. Change-Id: Icb1e6b7d144538fb971f67da75bf9f4e172a4dbf Reviewed-by:
hjk <qthjk@ovi.com>
-
- 08 Jan, 2013 1 commit
-
-
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>
-
- 26 Nov, 2012 1 commit
-
-
Aurindam Jana authored
When an object is selected in the Inspector, the Editor is updated to show the relevant code. Task-number: QTCREATORBUG-8246 Change-Id: I4f7fbcccdeb22849682fa72c63e87a78f48d185b Reviewed-by:
hjk <qthjk@ovi.com> Reviewed-by:
Christiaan Janssen <christiaan.janssen@digia.com>
-
- 09 Nov, 2012 1 commit
-
-
hjk authored
Via context menu in the modules view, gdb-only for now. Change-Id: I1163540cd9894c52243bb1bf0c2afc881e793863 Reviewed-by:
hjk <qthjk@ovi.com>
-
- 02 Nov, 2012 1 commit
-
-
Friedemann Kleint authored
- Introduce constants for task categories, add "RunTime". - Log exceptions under "RunTime". - Clear pane on debugger start. - Add 'first chance' Task-number: QTCREATORBUG-8141 Change-Id: Icf68def06c42a0f3bb86dcc2ae74750b5397ca52 Reviewed-by:
hjk <qthjk@ovi.com>
-
- 23 Oct, 2012 1 commit
-
-
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>
-
- 09 Oct, 2012 1 commit
-
-
Aurindam Jana authored
Change-Id: I26765134c19b9a6cf1e7ad26f313e2d4f8faf258 Reviewed-by:
Christiaan Janssen <christiaan.janssen@digia.com>
-
- 05 Oct, 2012 2 commits
-
-
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>
-
- 28 Aug, 2012 1 commit
-
-
hjk authored
Change-Id: I5f59eed83ac45a2d90c079101158e7e306fd9a3e Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- 21 Aug, 2012 1 commit
-
-
hjk authored
This is closer to internal gdb state. There are still a few workarounds for gdb < 7.0 which probably should be dropped as BFD 2.18.50.20080226 yields "assertion fail elf32-i386.c:366" on stock Ubuntu 12.04 gcc, so stock gdb 6.8 cannot be used with that compiler anyways. Change-Id: I22c4e0ce91f634cc171d65f0ad07d68d679af10c Reviewed-by:
David Schulz <david.schulz@nokia.com> Reviewed-by:
hjk <qthjk@ovi.com>
-
- 16 Aug, 2012 1 commit
-
-
hjk authored
The master engine pointer can be given later. Change-Id: I4d72679dcbd5fe7291067a5e78c984d26cc187aa Reviewed-by:
hjk <qthjk@ovi.com>
-
- 15 Aug, 2012 1 commit
-
-
hjk authored
Change-Id: I6517b42b4cfd0d2d919fa2971c3ea0995443cbf3 Reviewed-by:
hjk <qthjk@ovi.com>
-
- 14 Aug, 2012 1 commit
-
-
hjk authored
Script will be used if and only if there is one given. No extra bool. Change-Id: I095e01b2243f0fa1f7ba2ce9591e3d67b6de5241 Reviewed-by:
hjk <qthjk@ovi.com>
-
- 12 Aug, 2012 1 commit
-
-
hjk authored
Remote dumpers are not used anymore, there's also no need to have it in the engine base class anymore. Change-Id: If0b6930b07e468d5973d848e02696bc5da40a197 Reviewed-by:
hjk <qthjk@ovi.com>
-
- 25 Jul, 2012 1 commit
-
-
hjk authored
Change-Id: I105aa0433530abb4e9f53de19c0846281ccda0cf Reviewed-by:
hjk <qthjk@ovi.com>
-
- 19 Jul, 2012 1 commit
-
-
Eike Ziller authored
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- 28 Jun, 2012 1 commit
-
-
hjk authored
This replaces the debugger command, sysroot and target abi fields with a profile id. Change-Id: I831c42ff8624fcfa520c2f28f6f06d73191b2680 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
- 13 Jun, 2012 1 commit
-
-
hjk authored
Change-Id: I89abcb0dcceef6767cb3e78f4e85c1cd718e78c1 Reviewed-by:
Aurindam Jana <aurindam.jana@nokia.com> Reviewed-by:
hjk <qthjk@ovi.com>
-
- 24 May, 2012 1 commit
-
-
hjk authored
It's one model for all locals, watch, return, tooltip and inspector data. This allows more streamlined code paths and better isolation of the model data from the WatchHandler. WatchItems are now registered in a hash indexed by iname, so inames can be used as the primary handle to watch data in the WatchHandler interface. Change-Id: Idac0a808b5d785307496d1de4198a1f2e9ce3880 Reviewed-by:
Aurindam Jana <aurindam.jana@nokia.com>
-
- 11 May, 2012 1 commit
-
-
hjk authored
Less code on the user side, same meaning. Change-Id: I14e54a5d2ed8e024a51cce74eaf7c8419ad544be Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- 09 May, 2012 1 commit
-
-
Kai Koehne authored
Merge QmlJSInspector plugin into the debugger. Also merge the extra Inspector window with the Locals & Watchers: It now shows the QML object tree in the running state. Change-Id: I59ae0c1b970a48ba10ecda92ed3ba765d94b1d9c Reviewed-by:
Aurindam Jana <aurindam.jana@nokia.com>
-