Re: [Interest] qSwap or std::swap?

2015-10-25 Thread Thiago Macieira
On Monday 26 October 2015 07:44:55 Philippe wrote: > In the Qt doc, it is said that qSwap is obsolete and should never be used > in new code: > http://doc.qt.io/qt-5/qtalgorithms-obsolete.html > > But in this recent video from the Qt World Summit 2015, Marc Mutz says the > exact opposite (around t

[Interest] qSwap or std::swap?

2015-10-25 Thread Philippe
In the Qt doc, it is said that qSwap is obsolete and should never be used in new code: http://doc.qt.io/qt-5/qtalgorithms-obsolete.html But in this recent video from the Qt World Summit 2015, Marc Mutz says the exact opposite (around time 20:30) https://www.youtube.com/watch?v=Y3YMA1Ip3ek A quick

Re: [Interest] -u and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together

2015-10-25 Thread Hamish Moffatt
On 26/10/15 10:49, Nuno Santos wrote: > Hi, > > Since I have upgraded to Xcode 7.1 and Mac OSX 10.11, when compiling an iOS > app on Qt 5.4.1 I have this error: > > -u and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used > together > > Does anyone has a clue on how to sort this o

[Interest] -u and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together

2015-10-25 Thread Nuno Santos
Hi, Since I have upgraded to Xcode 7.1 and Mac OSX 10.11, when compiling an iOS app on Qt 5.4.1 I have this error: -u and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together Does anyone has a clue on how to sort this out? Thanks in advance, With my best regards, Nuno

Re: [Interest] Qt 5.5.0 WebEngine module with MSVC2010

2015-10-25 Thread Thiago Macieira
On Sunday 25 October 2015 14:35:54 Volker Enderlein wrote: > I expect that with the recent change of the Visual Studio release model > Microsoft is including the missing features of the C++11 and C++14 > standards way faster than they would have done before. Indeed. But with even Visual Studio 2

Re: [Interest] QPixmapCache considerations on ios and android

2015-10-25 Thread maitai
Thanks Elvis for your reply, A compressed in-memory cache would be just perfect in my case. So I can save a QPixmap in a QByteArray in let's say png format and use a regular QCache instead of QPixmapCache... I'll give it a shot for sure Thanks again, I think you made my day :) Philippe Le 25-

Re: [Interest] QPixmapCache considerations on ios and android

2015-10-25 Thread Elvis Stansvik
2015-10-25 15:53 GMT+01:00 maitai : > Hello, > > I have several relatively big pixmap I'd like to manage through cache. > Big meaning 1024x1024 at a maximum (one edge is 1024 while the other is > less or equal). I need to keep something like 10 of those in a cache > system. Each image being quite h

[Interest] QPixmapCache considerations on ios and android

2015-10-25 Thread maitai
Hello, I have several relatively big pixmap I'd like to manage through cache. Big meaning 1024x1024 at a maximum (one edge is 1024 while the other is less or equal). I need to keep something like 10 of those in a cache system. Each image being quite heavy to paint, that would help a lot. I bel

Re: [Interest] Qt 5.5.0 WebEngine module with MSVC2010

2015-10-25 Thread Volker Enderlein
Am 23.10.2015 um 22:21 schrieb Thiago Macieira: > On Friday 23 October 2015 18:35:22 Reinhardt Behm wrote: >> Wouldn't it not be a bit strange if a compiler from 2010 supported a >> standard from 2011? ;-) > > No, not really. It's strange that a compiler from 2010 does *not* support > enough featur

Re: [Interest] Qt 5.5.0 WebEngine module with MSVC2010

2015-10-25 Thread Volker Enderlein
Am 23.10.2015 um 12:30 schrieb Koehne Kai: > > >> -Original Message- >> From: interest-bounces+kai.koehne=theqtcompany@qt-project.org >> >> Hi, >> >> can the WebEngine module of Qt 5.5.0 be build with MSVC 2010? I've already >> searched Google and did not find an explicitely answer (my

[Interest] QML type checking quirk

2015-10-25 Thread Sze Howe Koh
I just found out (during the discussion at https://forum.qt.io/topic/60021 ) that the following items all give a height of 100: // Initialization assignment height: 100 height: "10" + "0" height: "10" + 0 height: 10 + "0" // Imperative assignment height = "100" Howev