[Interest] OpenCV + Qt iOS: Wrong JPEG library version: library is 62, caller expects 80

2020-01-21 Thread Jason H
Does anyone know how to handle this? I'm not sure who is using which version. What I did: linked OpenCV into an iOS Qt app. Tape a picture and onImageSaved handler, set an Image element source property to "file://"+path, then it crashes immediately. Works fine in Android. _

Re: [Interest] Handling IP V4 and V6 as a QTcpServer?

2020-01-21 Thread Thiago Macieira
On Tuesday, 21 January 2020 06:23:53 PST Jason H wrote: > > > I an starting to see QHostAddress::toString() return things like: > > > ":::192.168.34.3", which is a IPv6 mapping. However when I try to > > > connect to this address it does not work. That server is a QTcpServer > > > bound > > > a

Re: [Interest] QCoreApplication::arguments(): getting the application name safely during global destruction

2020-01-21 Thread Thiago Macieira
On Tuesday, 21 January 2020 02:54:30 PST René J.V. Bertin wrote: > Thanks for the answers; I almost missed them because of GMane changes. > > > Sorry, it's a bug in the application code. > > I was beginning to think as much. > > > QCoreApplication keep s a reference to argc. Since main() has exi

Re: [Interest] Handling IP V4 and V6 as a QTcpServer?

2020-01-21 Thread Jason H
> Sent: Monday, January 13, 2020 at 5:57 PM > From: "Thiago Macieira" > To: "interestqt-project.org" > Subject: Re: [Interest] Handling IP V4 and V6 as a QTcpServer? > > On Monday, 13 January 2020 10:49:38 PST Jason H wrote: > > I an starting to see QHostAddress::toString() return things like:

Re: [Interest] Tooltips and Anchors with QSyntaxHighlighter

2020-01-21 Thread Shawn Rutledge
> On 21 Jan 2020, at 13:21, Jonathan Purol wrote: > > Hello everyone, > > I should note this is my first time posting to a mailing list, so apologies > if I'm messing up something. > > We're currently trying to write an editable text editor which has two modes, > edit and view. In edit mode

[Interest] SQLite Online Backup API

2020-01-21 Thread Alexander Dyagilev
Hello, It seems that it's impossible to use SQLite Online Backup API via Qt API. So I have created a ticker here: https://bugreports.qt.io/browse/QTBUG-81564 Are there any workarounds to backup database to some file on disk? The only way I see now is to use mutex and aquire it before doing any

[Interest] Tooltips and Anchors with QSyntaxHighlighter

2020-01-21 Thread Jonathan Purol
Hello everyone, I should note this is my first time posting to a mailing list, so apologies if I'm messing up something. We're currently trying to write an editable text editor which has two modes, edit and view. In edit mode you can make changes using a specific syntax, and in view mode tha

Re: [Interest] QCoreApplication::arguments(): getting the application name safely during global destruction

2020-01-21 Thread René J . V . Bertin
Thanks for the answers; I almost missed them because of GMane changes. > Sorry, it's a bug in the application code. I was beginning to think as much. > QCoreApplication keep s a reference to argc. Since main() has exited, the > reference is now dangling I suppose this depends on the runtime, bu