Re: [Development] Changes to Qt offering

2020-02-03 Thread Andras Mantia via Development
Hey, On Monday, February 3, 2020 10:28:53 AM EET Ville Voutilainen wrote: > On Mon, 3 Feb 2020 at 08:58, Bogdan Vatra wrote: > > > Qt installer resumes downloads after a network connection break. > > > apt-get does not. :) > > > > > You must be kidding, apt it's (one of) the best package manag

Re: [Development] Changes to Qt offering

2020-01-29 Thread Andras Mantia via Development
Hi, On Wednesday, January 29, 2020 2:25:40 PM EET Cristián Maureira-Fredes wrote: > This is nothing new Giuseppe, > people actively using Qt will have Qt accounts because they either > use our JIRA, and also Gerrit, son for those people, this should not > make such impact on the usage of the Qt ac

Re: [Development] Deprecation of Qt Quick Controls 1

2018-02-07 Thread Andras Mantia
Hi, On Thursday, February 8, 2018 9:22:24 AM EET Eike Hein wrote: > Hi, > > in addition, kde.org ships a qqc2-desktop-style for Controls 2 that > implements QStyle theming (it's an improved derivative of the code > used in qqc1) and has no other KDE dependencies. It's viable to ship > with an app

Re: [Development] Nominating Christoph Schleifenbaum for Approver

2017-11-02 Thread Andras Mantia
On Thursday, November 2, 2017 2:46:24 PM EET Sergio Martins wrote: > Hi, > > > I'd like to nominate Christoph Schleifenbaum for Approver. > > He's been with KDAB for 12 years and has done dozens of fixes for cocoa, > widgets and item views. > > He' also one of the developers who worked on the Q

Re: [Development] Nominating Andras Mantia for approver

2017-11-01 Thread Andras Mantia
On Wednesday, November 1, 2017 9:06:20 AM EET Alex Blasche wrote: > Congratulations. Access rights have been updated. Thank you! Andras -- András Mantia | andras.man...@kdab.com | Senior Software Engineer Klarälvdalens Datakonsult AB, a KDAB Group company Tel: Sweden (HQ) +46-563-540090, USA +1-

Re: [Development] Preparing to release repackaged version of Qt 4.8.3 with Digia copyrights

2012-10-03 Thread Andras Mantia
Thiago Macieira wrote: >> Can't you push a commit on top of 4.8.3 that updates the license >> files, and tag that commit 4.8.3-1? > > If we do that, we should just call it 4.8.4. Isn't that what happened also when Nokia bought Qt? 4.4.3 was technically a "rebranding" release. I think that is wh

Re: [Development] Fwd: Re: Proposing QSqlQuery syntax sugar

2012-09-20 Thread Andras Mantia
Thiago A. Corrêa wrote: > I shall then send a patch for 5.1 > branch when it's ready and ask Mark Brand, Thanks. Why wait? You can do it now, create a Gerrit review for it, and make Mark a reviewer. Can be integrated when the 5.1 branch is ready and/or he approves it. Andras -- ** Qt Develope

Re: [Development] Fwd: Re: Proposing QSqlQuery syntax sugar

2012-09-19 Thread Andras Mantia
André Somers wrote: > Op 19-9-2012 11:32, Andras Mantia schreef: >> Thiago A. Corrêa wrote: >> >>> Hi, >>> >>>I'd like to propose a templated QSqlQuery::value in the same way >>> QVariant::value works. This syntax su

[Development] Fwd: Re: Proposing QSqlQuery syntax sugar

2012-09-19 Thread Andras Mantia
Thiago A. Corrêa wrote: > Hi, > > I'd like to propose a templated QSqlQuery::value in the same way > QVariant::value works. This syntax suggar allows one to write: > > QSqlQuery query; > ... > int myvalue = query.value(0); > > Instead of the current: > int my