Re: KF6 porting. KSelectAction::triggered signal

2024-01-03 Thread Albert Astals Cid
El dimecres, 3 de gener de 2024, a les 9:01:11 (CET), Sune Vuorela va escriure: > Hi > > I just - during KF6 porting of an app - fall in an api trap: > > Original code: > | connect(d->aZoom, QOverload::of(::triggered), > | this, ::slotZoom); > > The wrong porting code: > | connect(d->aZoom,

Re: KDE Gear projects with failing CI (release/23.08) (2 January 2024)

2024-01-03 Thread Volker Krause
On Dienstag, 2. Januar 2024 23:18:58 CET Ben Cooksley wrote: > On Wed, Jan 3, 2024 at 10:51 AM Volker Krause wrote: > > On Dienstag, 2. Januar 2024 22:01:25 CET Albert Astals Cid wrote: > > > Please work on fixing them, otherwise i will remove the failing CI > > > jobs on their 4th failing week,

KF6 porting. KSelectAction::triggered signal

2024-01-03 Thread Sune Vuorela
Hi I just - during KF6 porting of an app - fall in an api trap: Original code: | connect(d->aZoom, QOverload::of(::triggered), | this, ::slotZoom); The wrong porting code: | connect(d->aZoom, ::triggered, this, ::slotZoom); The gotcha is that the QAction* overload, while with the same name,