Re: [Qt-creator] How do you debug QtCreator

2020-12-07 Thread André Hartmann
Hi Björn, if you really need to debug on Windows, use a MSVC build of Creator, that is times faster than a MinGW build. However, the best experience is still on Linux. Best regards, André Am 07.12.2020 um 22:13 schrieb Björn Schäpers: Seriously, I did it on the weekend to find a bug I now

Re: [Qt-creator] clang-tidy and clang-diagnostic-*

2020-12-07 Thread David Schulz
Hi, You can configure the checks under Tools > Options > Analyzer > Clang Tools > Run Options > Diagnostic Configuration globally or if you want to change it just for a single project you can also override these global settings under Projects Mode > Project Settings > Clang Tools. Greetings

Re: [Qt-creator] Tabbed Editor

2020-12-07 Thread André Pönitz
On Thu, Nov 26, 2020 at 09:52:06PM -0500, Michael Barth wrote: >Hello! > >I’m interested in adding support for a tab based editor for Qt Creator >either as an option or plugin. I’m aware that the FAQ says that a lack >of tabs is a deliberate design decision. I also know that tab

Re: [Qt-creator] How do you debug QtCreator

2020-12-07 Thread André Pönitz
On Mon, Dec 07, 2020 at 10:13:17PM +0100, Björn Schäpers wrote: > Seriously, I did it on the weekend to find a bug I now have fixed. But it > took a massive amount of time until the Creator started with gdb attached, > similar switching sessions took ages. How "massive"? > I'm on Windows 64 Bit

[Qt-creator] Suggestions for 'new class' dialog

2020-12-07 Thread Kevin André
Hi, Every time I use the dialog for adding a new class, there is still a lot that I need to do manually after the files were generated: 1. Add cpp file and often the header file as well to CMakeLists.txt 2. Add GPL header to each file (copy from another file and update the year if necessary) 3.

[Qt-creator] clang-tidy and clang-diagnostic-*

2020-12-07 Thread Björn Schäpers
Hi, I've recently activated clang-tidy checks in the Creator. And now in some files I get "clang-diagnostic-c++17-extensions" while the code model states the Language Version is C++20 and the model itself does not warn. Is there a way to deactivate the clang-diagnostic category, since it is

[Qt-creator] How do you debug QtCreator

2020-12-07 Thread Björn Schäpers
Seriously, I did it on the weekend to find a bug I now have fixed. But it took a massive amount of time until the Creator started with gdb attached, similar switching sessions took ages. I'm on Windows 64 Bit and use MinGW 64 Bit. Or do you normally not debug directly?