Re: [Qt-creator] QString "not accessible" in Creator 4.6.2?

2018-07-16 Thread Michael Jackson
I ended up getting them installed (clunky way to install them) and then created a rule set in CMake to copy them to my local binary directory of the app that I am compiling. Maybe instead of packaging them as a single archive of a single folder it would be better to create the proper

Re: [Qt-creator] What's the crash?

2018-07-16 Thread Jason H
Yes!! I wonder why I don't get that anymore? > Sent: Monday, July 16, 2018 at 10:37 AM > From: "Nikos Chantziaras" > To: qt-creator@qt-project.org > Subject: Re: [Qt-creator] What's the crash? > > Seems to be working fine here: > >https://i.imgur.com/OfFSAk5.png > > > On 16/07/18 17:05,

[Qt-creator] Requesting repos for Connected Creator plugin and telemetry library

2018-07-16 Thread Tino Pyssysalo
Hi all, In March this year, I requested a repo for an open source telemetry plugin for Qt Creator. Now, the plugin has been implemented and I’d like to request two repos: * A repo for a Connected Creator plugin * A playground repo for a telemetry library Description: The Qt Company

Re: [Qt-creator] QString "not accessible" in Creator 4.6.2?

2018-07-16 Thread David Schulz
Hi, I totally agree with you here, that was the reason for creating https://bugreports.qt.io/browse/QTBUG-67587. So if you both would leave a comment/vote on that report someone might look into this mess. > I don't think I remember ever having to do this with Visual Studio but I'll bite.

Re: [Qt-creator] What's the crash?

2018-07-16 Thread Jason H
> There's nothing more the debugger or C++ can do for you here. But it does at the command line: Process 79112 launched: '/Users/jhihn/Projects/test_crash/a.out' (x86_64) Process 79112 stopped * thread #1, queue = 'com.apple.main-thread', stop reason = EXC_ARITHMETIC (code=EXC_I386_DIV,

Re: [Qt-creator] What's the crash?

2018-07-16 Thread Nikos Chantziaras
Seems to be working fine here: https://i.imgur.com/OfFSAk5.png On 16/07/18 17:05, Jason H wrote: There's nothing more the debugger or C++ can do for you here. But it does at the command line: Process 79112 launched: '/Users/jhihn/Projects/test_crash/a.out' (x86_64) Process 79112 stopped

Re: [Qt-creator] What's the crash?

2018-07-16 Thread Andy
FWIW I do (sometimes?) get a dialog like Nikos (MSVC 2017): [image: 2018-07-16 10_29_04-Exception Triggered.jpg] (What's "The inferior"?) Once that's dismissed, however, the only place I can find the info is digging through the debugger log. It would be useful to indicate in the thread menu

Re: [Qt-creator] What's the crash?

2018-07-16 Thread André Hartmann
Hi Jason, There's nothing more the debugger or C++ can do for you here. My comment refered to something like this in your code: QList data; data[0] = 123; That will crash in qlist.cpp with index out of range, and not in your code. Therefore it is not immediately obvious what causes the