Hi
I just - during KF6 porting of an app - fall in an api trap:
Original code:
| connect(d->aZoom, QOverload::of(&KSelectAction::triggered),
| this, &PageView::slotZoom);
The wrong porting code:
| connect(d->aZoom, &KSelectAction::triggered, this, &PageView::slotZoom);
The gotcha is that the
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, i
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(&KSelectAction::triggered),
> | this, &PageView::slotZoom);
>
> The wrong porting code:
>