Re: [Development] Nominating Johan Helsing for Approver status

2016-08-25 Thread Alexander Blasche
Congratulations. The permission changes have been enacted. -- Alex From: Development on behalf of Giulio Camuffo Sent: Monday, 8 August 2016 9:14:55 AM To: Erik Larsson Cc: Qt development mailing list Subject: Re: [Development] Nominating Johan Helsing

Re: [Development] Would it make sense to make QObject moveable in Qt 6?

2016-08-25 Thread Kuba Ober
> On Aug 25, 2016, at 5:48 AM, Marc Mutz wrote: > > On Wednesday 24 August 2016 20:05:56 Kuba Ober wrote: >> `QObject` is already pretty much a handle to the underlying data due to >> pimpl. So that’s a good first step. > > I challenge the notion that QObject is a handle to date. > > QObject i

[Development] [Announce] Qt Creator 4.1.0 released

2016-08-25 Thread List for announcements regarding Qt releases and development
We are happy to announce the release of Qt Creator 4.1.0 https://blog.qt.io/blog/2016/08/25/qt-creator-4-1-0-released/ -- Eike Ziller Principal Software Engineer The Qt Company GmbH Rudower Chaussee 13 D-12489 Berlin eike.zil...@qt.io http://qt.io Geschäftsführer: Mika Pälsi, Juha Varelius, Tuu

Re: [Development] Would it make sense to make QObject moveable in Qt 6?

2016-08-25 Thread Marc Mutz
On Wednesday 24 August 2016 20:05:56 Kuba Ober wrote: > `QObject` is already pretty much a handle to the underlying data due to > pimpl. So that’s a good first step. I challenge the notion that QObject is a handle to date. QObject is first and foremost the base class of a polymorphic class hierar

Re: [Development] Would it make sense to make QObject moveable in Qt 6?

2016-08-25 Thread Sune Vuorela
On 2016-08-24, Thiago Macieira wrote: > And its address is copyable, so if we replaced the pointer with something, > we'd have to use something copyable and non-owning. class QObjectHandle { public: QObjectHandle(QObject* obj) : m_obj(obj) { } operator QObject* () const ( retur