Re: [Development] QTimer question

2023-05-29 Thread Thiago Macieira
On Monday, 29 May 2023 11:40:14 PDT Jaroslaw Kobus via Development wrote: > Hi All, > > when I start 2 single shot timers synchronously in a row, with exactly the > same interval, from the same thread, can I rely on having their handlers > called in the same order in which they were started? > >

Re: [Development] Nominating Artem Dyomin as Approver

2023-05-29 Thread Axel Spoerl via Development
+1 Von: Development im Auftrag von Lars Knoll Gesendet: Samstag, 27. Mai 2023 17:41 An: Qt development mailing list Betreff: [Development] Nominating Artem Dyomin as Approver Hi all, I’d like to nominate Artem Dyomin for approver rights in Qt. Artem has been

Re: [Development] Nominating Artem Dyomin as Approver

2023-05-29 Thread Tor Arne Vestbø via Development
+1! (Disclaimer: Artem reports to me directly). On 27 May 2023, at 18:02, Volker Hilsheimer via Development wrote: +1, he’s doing great. Disclaimer: Artem sits across the hall from me in the office, works down the street from me in home office, and reports to me indirectly. Volker

[Development] QTimer question

2023-05-29 Thread Jaroslaw Kobus via Development
Hi All, when I start 2 single shot timers synchronously in a row, with exactly the same interval, from the same thread, can I rely on having their handlers called in the same order in which they were started? I.e.: QTimer::singleShot(1000, [] { qDebug() << "1st timer elapsed"; });