Re: [Development] Qt 5.2 Beta - is it really much slower to parse qml/javascript on android?

2013-11-01 Thread Cornelius Hald
Thanks for the link BogDan! Cheers, Conny Am Freitag, den 01.11.2013, 14:44 -0700 schrieb BogDan: > Hi, > > https://bugreports.qt-project.org/browse/QTBUG-34464 > > Cheers, > BogDan. > > Trimis din Yahoo! Mail pe Android > > > > > ___

Re: [Development] QSharedPointer - Enable shared from this

2013-11-01 Thread Thiago Macieira
On sábado, 2 de novembro de 2013 02:02:25, Cristian Pallarés wrote: > No problem! Looks like there is too much work for you to do =). > > I will keep an eye into the code review! For future note: if any review in a module I maintain (QtCore or QtDBus) is pending without conclusion, the correct p

Re: [Development] It could be a little bug

2013-11-01 Thread Thiago Macieira
On sexta-feira, 1 de novembro de 2013 15:35:50, Marc Mutz wrote: > According to the standard, they are equivalent, since reading a value from > an enum object that does have one of the declared enum values results in > undefined behaviour. That said, we're violating that in many places in Qt, > e.

Re: [Development] QSharedPointer - Enable shared from this

2013-11-01 Thread Cristian Pallarés
No problem! Looks like there is too much work for you to do =). I will keep an eye into the code review! On Thu, Oct 31, 2013 at 4:24 PM, Thiago Macieira wrote: > On quinta-feira, 31 de outubro de 2013 15:57:13, Cristian Pallarés wrote: > > Hi folks, > > > > https://codereview.qt-project.org/60

Re: [Development] It could be a little bug

2013-11-01 Thread Jiergir Ogoerg
Yeah, enums are not meant for bitwise operations, the author could hand-code the values of the enum to make them usable for bitwise comparison - but he didn't.. Anyway who's the hero of the day (and is a contributor) to commit a fix for this bug? I for one would like to leave it as is for other p

Re: [Development] It could be a little bug

2013-11-01 Thread Nicolás Alvarez
2013/11/1 Marc Mutz : > On Tuesday, October 29, 2013 01:21:08 Jiergir Ogoerg wrote: >> Hi, >> There's an enum: >> >> //==> code >> enum TableState >> { >> UnsupportedLocale, >> EmptyTable, >> UnknownSystemComposeDir, >> MissingComposeFile, >> NoErrors >>

Re: [Development] It could be a little bug

2013-11-01 Thread Jiergir Ogoerg
1) m_state is declared private, has no setter and one getter which returns its value (not a reference to it) - so apparently nobody outside the class can change it. 2) Throughout the code the author before setting m_state to something is checking if there are any errors in it (cleanState()), so it

Re: [Development] Qt 5.2 Beta - is it really much slower to parse qml/javascript on android?

2013-11-01 Thread BogDan
Hi, https://bugreports.qt-project.org/browse/QTBUG-34464 Cheers, BogDan. Trimis din Yahoo! Mail pe Android ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

[Development] androiddeployqt - how it works or should work?

2013-11-01 Thread Felipe Crochik
I understand androiddeployqt is supposed to separate the "deployment" from qt but to be honest so far it seems to be harder than before - probably because I just don't know how is supposed to work. Before you would have all the "android files" added to your project and could control them with the

Re: [Development] Qt 5.2 Beta - is it really much slower to parse qml/javascript on android?

2013-11-01 Thread Cornelius Hald
Hi, is there a ticket to track this issue? I'd like to get an update when it's fixed :) Thanks! Conny On Wed, 2013-10-30 at 07:06 -0700, BogDan wrote: > Hi, > > I just checked the Qt5 assets implementation and for some reason that I > fail to understand the assets cache mechanism from Qt4 is

Re: [Development] Cut 7+ms of Qt5 startup time on Linux

2013-11-01 Thread Thiago Macieira
On sexta-feira, 1 de novembro de 2013 16:01:31, Marc Mutz wrote: > Not directly related, but I've got some WIP on reducing relocations in Qt. > I've pretty much removed all gratuitous .data.rel.ro.local relocations from > QtGui and QtWidget, reducing relocations in QtGui from 7555 in stable to >

Re: [Development] Cut 7+ms of Qt5 startup time on Linux

2013-11-01 Thread Marc Mutz
On Thursday, October 31, 2013 16:52:28 Jiergir Ogoerg wrote: > Is there a list of other startup optimizations you're working on > so that we don't dilute the efforts by working on the same thing? Not directly related, but I've got some WIP on reducing relocations in Qt. I've pretty much removed a

[Development] Qt5 regression with PathView (or I am missing something?)

2013-11-01 Thread Felipe Crochik
I just filled a bug report ( https://bugreports.qt-project.org/browse/QTBUG-34520) but since I am seeing other cases where my application crashes due to ASSERT statements on the scenegraph\coreapi\qsgbatchrenderer.cpp I started wondering if I am missing something. On my bug report you will find tw

Re: [Development] It could be a little bug

2013-11-01 Thread Marc Mutz
On Friday, November 01, 2013 15:35:50 Marc Mutz wrote: > enum object that does have one of the declared enum values results in does _not_ have, of course. ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinf

Re: [Development] It could be a little bug

2013-11-01 Thread Marc Mutz
On Tuesday, October 29, 2013 01:21:08 Jiergir Ogoerg wrote: > Hi, > There's an enum: > > //==> code > enum TableState > { > UnsupportedLocale, > EmptyTable, > UnknownSystemComposeDir, > MissingComposeFile, > NoErrors > }; > //<== code > > and this:

Re: [Development] Future of QWebChannel

2013-11-01 Thread Milian Wolff
On Wednesday 30 October 2013 17:08:04 Milian Wolff wrote: > Hey all, > > quick summary of the meeting that we had today, discussing the future of the > QObject <-> HTML bridging efforts. > > # QWebChannel > > The KDAB fork of the QWebChannel will be merged back into the "official" Qt- > Labs rep