Re: [Interest] [Development] Issues with latest Qt MaintenanceTool and Kaspersky

2022-05-04 Thread Julien Cugnière
exit). I find it simpler, and much less likely to trigger an antivirus than a vbs file :) -- Julien Cugnière ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Transparent rectangle with radius in one side

2021-10-05 Thread Julien Cugnière
the radius is not fixed, though. -- Julien Cugnière ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] What is this list all about anyway?

2020-07-16 Thread Julien Cugnière
the signal/noise ratio is not worthwhile. I only hear about him when people reply to him. And given the amount of replies he seems to get lately, I'm considering changing my filter to also hide replies. -- Julien Cugnière ___ Interest mailing list

Re: [Interest] Faster QXmlStreamWriter?

2018-04-24 Thread Julien Cugnière
2018-04-24 17:52 GMT+02:00 Thiago Macieira : > On Tuesday, 24 April 2018 07:39:08 PDT Konstantin Tokarev wrote: >> If your serialized data is intended to be read by Qt applications only, >> QDataStream may be a good choice > > Also slow. > > Binary QJsonDocument is the fastest, followed closely by

Re: [Interest] Decoding drag&drop file URLs under Windows with QUrl

2017-07-06 Thread Julien Cugnière
Hello Etienne, QUrl::path does not return a local file path, but rather the path part of the URL, which is indeed "/C:\Users\foo\file.txt". I think what you're looking for is QUrl::toLocalFile(). Julien Cugnière 2017-07-06 10:57 GMT+02:00 Etienne Sandré-Chardonnal : >

Re: [Interest] Dynamic translations for mobile apps at runtime?

2016-03-11 Thread Julien Cugnière
nd nothing. Julien Cugnière 2016-03-11 17:08 GMT+01:00 Jason H : > So we had a great thread about "dynamic translations" Its in and working > well. (Thanks everyone) > > And while I have a slick update procedure for adding dictionaries at run > time, I am wondering about ad

Re: [Interest] Dynamic translations for mobile apps at runtime?

2016-03-03 Thread Julien Cugnière
rs the overhead of a function call, which might prevent QML from using its fast path for bindings evaluation. Not sure if it matters. Julien Cugnière ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Deleting the QNetworkAccessManager post(req, iodev) QIODevice?

2016-03-02 Thread Julien Cugnière
te f; // or f->deleteLater() }); Julien Cugnière 2016-03-02 19:19 GMT+01:00 Elvis Stansvik : > > 2016-03-02 18:56 GMT+01:00 Jason H : > > Indeed it is, there's a couple ways to skin this cat. > > Another idea, after looking at the API: You could perhaps transport >

Re: [Interest] QList and erase problem...

2015-09-14 Thread Julien Cugnière
2015-09-14 17:13 GMT+02:00 Igor Mironchik : > Hi, > > it seems that problem not in the iterating and deletion from cantainer... Yes it is. As Andre told you, erasing from the list invalidates iterators, including the one returned by end(). As you cache the "end" iterator in the "last" variable at

[Interest] QtScript to QJSEngine migration

2015-06-22 Thread Julien Cugnière
ething like this : function foo() { var res = foo_impl(); if (Object.getPrototypeOf(res) === Error) throw res; else return res; } -- Julien Cugnière ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QtGraphicalEffects usage questioning

2014-04-02 Thread Julien Cugnière
yer trick, it's definitely an improvement, and I'm not sure I'd have ever stumbled upon it by myself ! It really should be advertised more in the documentation. Julien Cugnière 2014-04-02 18:38 GMT+02:00 Christopher Courtois < courtois.christop...@gmail.com>: > I've recen