Re: [Qt-creator] QC 4.13 beta 2 Win10 online installer also installs Qt 5.15.1 docs

2020-08-11 Thread Marco Piccolino
Thanks Jani, I didn't knowingly, however there might be some interaction with other modules, notably Mingw, so I am not sure QC is to blame. I'll see if I can dig deeper into the issue. Marco Il Gio 6 Ago 2020, 14:04 Jani Heikkinen ha scritto: > Hi, > > > > We can’t reproduce the issue; are you

Re: [Qt-creator] Qt Creator debugging views question

2020-08-11 Thread André Pönitz
On Tue, Aug 11, 2020 at 10:10:46PM +, Murphy, Sean wrote: > When debugging code, is there a way to see the return values of individual > calls within a complex conditional? For example, if I've got the following > code: > > QString a; > QString b; > QString c; > // ... a bunch of code that

[Qt-creator] Qt Creator debugging views question

2020-08-11 Thread Murphy, Sean
When debugging code, is there a way to see the return values of individual calls within a complex conditional? For example, if I've got the following code: QString a; QString b; QString c; // ... a bunch of code that manipulates the above strings if(a.isEmpty() || b.isEmpty() || c.isEmpty()) {