Re: [Development] Module maintainers: QT_NO_CONTEXTLESS_CONNECT in your modules

2023-07-12 Thread Volker Hilsheimer via Development
> Am 10.07.2023 um 18:02 schrieb Giuseppe D'Angelo via Development: >> Hi, >> >> https://codereview.qt-project.org/c/qt/qtbase/+/487560 introduces >> QT_NO_CONTEXTLESS_CONNECT , a macro that disables the 3-arguments connect -- >> in other words, it disables the >> >>> QObject::connect(sender,

Re: [Development] Module maintainers: QT_NO_CONTEXTLESS_CONNECT in your modules

2023-07-11 Thread Hasselmann Mathias via Development
Hi Peppe, thank you alot for this highly appreciated and super useful feature! Give up counting how often I forgot the context argument. Ciao Mathias Am 10.07.2023 um 18:02 schrieb Giuseppe D'Angelo via Development: Hi, https://codereview.qt-project.org/c/qt/qtbase/+/487560 introduces QT_NO_

Re: [Development] Module maintainers: QT_NO_CONTEXTLESS_CONNECT in your modules

2023-07-10 Thread Ivan Solovev via Development
Hi, > Second, it's also easy to forget that since there's no receiver/context, > the connection is always forced to be *direct*, which complicates things > if multiple threads are involved. I'm not a module maintainer, but I remember fixing a bug in Qt Bluetooth which was caused by exactly this