- 26 Feb, 2015 2 commits
-
-
Friedemann Kleint authored
Change-Id: I70ca6773e0f6aa6d80a441f8920d7f5d2418e1bf Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Christian Stenger authored
Change-Id: I41ff4508ae609f481a5a20e4b398e106f2d3093d Reviewed-by:
hjk <hjk@theqtcompany.com>
-
- 04 Feb, 2015 1 commit
-
-
Orgad Shaneh authored
Mostly done using the following ruby script: Dir.glob('**/*.cpp').each { |file| next if file =~ %r{src/shared/qbs|/qmljs/} s = File.read(file) s.scan(/^using namespace (.*);$/) { ns = $1 t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m| before = $1 char = $2 if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/ m else before + char end } if t != s puts file File.open(file, 'w').write(t) end } } Change-Id: I1aa1a2b6ccbafeb1a8f3053fffa39b3f96992591 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
- 30 Jan, 2015 1 commit
-
-
Kai Koehne authored
Looks like the proper handling of tooltips while debugging a QML app is broken since commit 7f09d0b7 . Just disable the functionality for now. Task-number: QTCREATORBUG-13854 Change-Id: I346058f6f9753475ec209ec8befdd5425bbd83d0 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
- 16 Jan, 2015 1 commit
-
-
Eike Ziller authored
Change-Id: I711d5fb475ef814a1dc9d2822740e827f3f67125 Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-
- 15 Jan, 2015 1 commit
-
-
hjk authored
The actual data is now in a TreeModel. As interface to individual breakpoints there's a new Breakpoint class essentially providing a checked handle. On the user code side breakHandler()->foo(bpId) is replaced by bp.foo(). Change-Id: I82f435bad6301fce85a1d82bf6bf39e9ddba511e Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
- 15 Dec, 2014 1 commit
-
-
hjk authored
Expose less of debugger internals to the device plugins. Change-Id: Ie78756b033fae3fe02bff92eadf26b7319990605 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com> Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 01 Dec, 2014 1 commit
-
-
Kai Koehne authored
Fix syncing of watch expressions with Qt Quick 2. For v8/v4 we're utilizing the 'evaluate' command, which we have to re-send on every change to get updates. We therefore now call synchronizeWatchers() whenever the stack changes. Task-number: QTCREATORBUG-13473 Change-Id: I7356e9518a719839c5cbb6e518be18e665078e85 Reviewed-by:
Ulf Hermann <ulf.hermann@theqtcompany.com> Reviewed-by:
Robert Loehning <robert.loehning@theqtcompany.com>
-
- 23 Oct, 2014 1 commit
-
-
hjk authored
One indirection less on the user code side, and easier to export if needed (partially addressing QTCREATORBUG-13187) Change-Id: I13ab9f471a3a34da7a6331aefc83f6d02413bfab Reviewed-by:
David Schulz <david.schulz@digia.com>
-
- 20 Oct, 2014 1 commit
-
-
hjk authored
Export factory, de-export plugin, to remove one indirection Change-Id: I13a46460d07d5ded6b26f2b5ceccd01142fb10e8 Reviewed-by:
Christian Stenger <christian.stenger@digia.com>
-
- 09 Oct, 2014 1 commit
-
-
Eike Ziller authored
Change-Id: I3c22ef2685d7aa589f5d0ab74d693653a4c32082 Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-
- 29 Sep, 2014 1 commit
-
-
hjk authored
... and some of the related implementation details Change-Id: I1f03aa5acf2d3fb2cfc2a6a7845f3d3578b0408d Reviewed-by:
David Schulz <david.schulz@digia.com>
-
- 26 Sep, 2014 1 commit
-
-
hjk authored
*Document* and *Layout* classes, all basetext* files Change-Id: I1c6e376733a434fcb5c7f19c6210dfa031eeafde Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 25 Sep, 2014 1 commit
-
-
hjk authored
First step of some more 'Base' removal in TextEditor. s/Core::TextDocument/Core::BaseTextDocument/ s/TextEditor::BaseTextDocument/TextEditor::TextDocument/ Change-Id: I71ba325a2f0ad72ec9dae0d96846cbae72d326f7 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 19 Sep, 2014 2 commits
-
-
hjk authored
Less indirection. Change-Id: Ifbd7195e853d02bfd6562c817fc7f30079913faf Reviewed-by:
hjk <hjk121@nokiamail.com>
-
hjk authored
Success and failure paths are very similar. Change-Id: Iebf218f64401884c014f1f7745d504183018addd Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 18 Aug, 2014 1 commit
-
-
Eike Ziller authored
This is the first step in actually making "closeEditor(s)" close editors instead of documents. Change-Id: I02761e0cef950b8fc093f65a90df04a9a7550681 Reviewed-by:
Daniel Teske <daniel.teske@digia.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 28 Jul, 2014 1 commit
-
-
hjk authored
Move some function out of the DebuggerCore "namespace", to avoid one indirection and removes clutter in the calling code. Change-Id: I1c870d5c7eeade32fa63dedf581490fbb090cd6a Reviewed-by:
Christian Stenger <christian.stenger@digia.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 25 Jul, 2014 1 commit
-
-
hjk authored
Adjust all callers, de-export BaseTextEditorAnimator Change-Id: I2329d976c1398e2449844bb480a4d4ed29859506 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- 09 Jul, 2014 1 commit
-
-
hjk authored
Change-Id: I7ce688e56fb516ef6e77ee2e4f56d9b56379918b Reviewed-by:
David Schulz <david.schulz@digia.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 04 Jun, 2014 1 commit
-
-
hjk authored
Change-Id: I43353911c7c0c8250ee2bccddcf5fdccf04d457c Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 13 May, 2014 1 commit
-
-
hjk authored
Move item model implementation to private, adjust user code. Change-Id: Ifbe94e7c7b9b1e8be1b4c531958dbd7a9413af13 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 08 May, 2014 1 commit
-
-
Ulf Hermann authored
Like this no one will get the idea that the socket state represents the connection state and we can safely replace the underlying implementation with something not derived from QAbstractSocket. All the logging is retained but the connection creates the messages now. Change-Id: If84ff42f1fa9785254fbd49c75be867b9f663c83 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 22 Apr, 2014 1 commit
-
-
Christian Kandeler authored
Change-Id: Ib608bb49e26781aef1914085a5d801fcdcd5eb56 Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com>
-
- 19 Mar, 2014 1 commit
-
-
Kai Koehne authored
Do not bring up a message box when connecting to the QML debugging port, but rather just log, and continue C++ debugging. This mitigates the issue that, in some configurations, QML debugging is enabled by default although the application might not be set up properly. Change-Id: I29e89ada4bf14f57589c8c671452572b689cdbdb Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 08 Jan, 2014 1 commit
-
-
Robert Loehning authored
Change-Id: Ib5423fdd064e4546f848c0b640b0ed0514c26d3a Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 24 Oct, 2013 1 commit
-
-
Friedemann Kleint authored
They are a hassle for translators and reviewers alike. Change-Id: I363138212b692cf75fe1605df8af3721315d37e1 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 10 Oct, 2013 1 commit
-
-
Robert Loehning authored
Change-Id: I1305abd51cb6ae856215af63807e66c433982c26 Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- 02 Sep, 2013 1 commit
-
-
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>
-
- 30 Aug, 2013 2 commits
-
-
hjk authored
Change-Id: Ia6edf583f2a002d7c6f4878df670a78614ea087d Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
hjk authored
Change-Id: I3255a0150cd9a730336456c5a9f986eb74fefbff Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- 19 Aug, 2013 1 commit
-
-
hjk authored
Change-Id: I67254bb6d3d23e9fa9e121df0b3b923330cfe84a Reviewed-by:
Aurindam Jana <aurindam.jana@digia.com>
-
- 02 Aug, 2013 1 commit
-
-
Daniel Teske authored
And adjust the message in the appliation output to take the exit status into account. Change-Id: I1b7507fdc8ff6fa7ec3db48dba72ad723f124fc3 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- 18 Jul, 2013 1 commit
-
-
Christian Kandeler authored
Full explanation inside. Change-Id: Ib39f18282b7d78ebdab53ac2ebe9d4cf1e11c008 Reviewed-by:
Aurindam Jana <aurindam.jana@digia.com>
-
- 16 Jul, 2013 1 commit
-
-
Aurindam Jana authored
Clear code highlighting when debugging session ends. Change-Id: I32844444161bbb609864926e12220f9fb0f492e2 Reviewed-by:
Eike Ziller <eike.ziller@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>
-
- 10 Jul, 2013 1 commit
-
-
Eike Ziller authored
The display name is not editor instance specific, but belongs to the document. Change-Id: I3c936f04a86e10e6ca30063d85036d85b4b5880e Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- 05 Jun, 2013 1 commit
-
-
Friedemann Kleint authored
Change-Id: Ie4645f3a3c82d18099dd154293d242ab07b1e5fc Reviewed-by:
Christian Stenger <christian.stenger@digia.com>
-
- 26 Apr, 2013 1 commit
-
-
Aurindam Jana authored
Change-Id: I5c48b74a99b12d7e319198ec8f352ff493259df8 Reviewed-by:
Kai Koehne <kai.koehne@digia.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com> Reviewed-by:
Aurindam Jana <aurindam.jana@digia.com>
-
- 23 Apr, 2013 1 commit
-
-
hjk authored
Change-Id: I5a3565179fdd8627387ba01370e6484d668e2160 Reviewed-by:
hjk <hjk121@nokiamail.com>
-