Re: [Interest] Qt-5.9.1 for Android - Documentation for Building with 3-rd Party Jars from Google

2017-08-09 Thread Robert Iakobashvili
Hi, I've created the bug report with the issue described and verbose build logs. QTBUG-62423 Kind regards, Robert On Fri, Jul 7, 2017 at 12:21 PM, Robert Iakobashvili wrote: > Hi, > It is working for me with 5.7.1. > > Trying to upgrade to 5.9.1, I

Re: [Interest] connect() is copying lambdas - can this be avoided?

2017-08-09 Thread Thiago Macieira
On quarta-feira, 9 de agosto de 2017 08:04:16 PDT Nikos Chantziaras wrote: > It seems that connect() is copying its lambda parameter around. That > means that if a lambda capture contains a non-copyable object, like a > unique_ptr, connect() cannot be used: > >{ >auto ptr = std::make_u

Re: [Interest] connect() is copying lambdas - can this be avoided?

2017-08-09 Thread Alejandro Exojo
On Wednesday 09 August 2017 18:04:16 Nikos Chantziaras wrote: > Is this a problem the Qt project is aware of and the design is intended, > or is this something that can be considered a defect? I wrote about something closely related to this a while ago in this list, and some time after that, I me

Re: [Interest] Qt configurations of pre-build packages

2017-08-09 Thread Sergio Martins
On 2017-08-09 19:46, Sergio Martins wrote: On 2017-08-07 16:35, Thiago Macieira wrote: On Monday, 7 August 2017 03:17:38 PDT Simon Warta | Kullo wrote: I am looking for the configure command lines used compile the pre-build packages I can download via the Qt Maintenance tool. Is this documente

Re: [Interest] Qt configurations of pre-build packages

2017-08-09 Thread Sergio Martins
On 2017-08-07 16:35, Thiago Macieira wrote: On Monday, 7 August 2017 03:17:38 PDT Simon Warta | Kullo wrote: I am looking for the configure command lines used compile the pre-build packages I can download via the Qt Maintenance tool. Is this documented somewhere? Not documented. You have to

[Interest] connect() is copying lambdas - can this be avoided?

2017-08-09 Thread Nikos Chantziaras
It seems that connect() is copying its lambda parameter around. That means that if a lambda capture contains a non-copyable object, like a unique_ptr, connect() cannot be used: { auto ptr = std::make_unique(0); connect(this, &MyQObject::mySignal, [ptr = std::move(ptr

[Interest] (no subject)

2017-08-09 Thread Bernhard B
Hi, I would need some help from you guys on how to improve the ListView's performance. The problem is, that scrolling through my ListView sometimes feels a little bit sluggish. If I only display some text in the ListView's delegate I can scroll smoothly through my list. But as soon as there is a

[Interest] QtRO Http transport layer

2017-08-09 Thread Houssem GHIAT
Hi, Actually I am using QtRO module in a distributed service like application, where what I call a service is a QObject remoted over the network using QtRO. As far as I know QtRO support only TCP protocol without SSL. I want to implement HTTP protocol in QtRO. In order to do that I want some guida