[Interest] Removal of GUIenabled constructor argument of QApplication in Qt5

2014-01-21 Thread Marc Schmitzer
Hi, I know I'm a little late to the party, but while trying to port our project to Qt5, I just discovered that the QApplication constructor that takes a bool GUIenabled argument has been removed. I cannot find any mention of this in the official change lists. This change is quite unfortunate for

Re: [Interest] Removal of GUIenabled constructor argument of QApplication in Qt5

2014-01-21 Thread Till Oliver Knoll
Am 21.01.2014 um 14:34 schrieb Marc Schmitzer marc.schmit...@richard-wolf.com: Hi, I just discovered that the QApplication constructor that takes a bool GUIenabled argument has been removed. I cannot find any mention of this in the official change lists. I would have expected an entry in

Re: [Interest] Removal of GUIenabled constructor argument of QApplication in Qt5

2014-01-21 Thread Thiago Macieira
On terça-feira, 21 de janeiro de 2014 14:34:00, Marc Schmitzer wrote: Hi, I know I'm a little late to the party, but while trying to port our project to Qt5, I just discovered that the QApplication constructor that takes a bool GUIenabled argument has been removed. I cannot find any mention

Re: [Interest] Removal of GUIenabled constructor argument of QApplication in Qt5

2014-01-21 Thread Marc Schmitzer
Hi, On 01/21/2014 05:49 PM, Thiago Macieira wrote: We can re-add the constructor with a bool as a private member, which will cause a compilation error for you. well, I am aware of the problem now, but maybe it would be a good idea in general? I can't believe I'm the only user of that feature.