Re: Missing product versions in Bugzilla

2022-07-23 Thread Nate Graham
IIRC, the release team takes care of updating product-versions of apps on Bugzilla using a script. CCing them. Nate On 7/23/22 16:10, Glen Ditchfield wrote: Phabricator has a task T2373: Make sure Bugzilla versions of our products are updated.  I've noticed an assortment of missing versions

Missing product versions in Bugzilla

2022-07-23 Thread Glen Ditchfield
Phabricator has a task T2373: Make sure Bugzilla versions of our products are updated. I've noticed an assortment of missing versions for different products: |kontact | 5.20.1 5.17.2 5.16.2 | |kmail2 | 5.20.1 5.18.3 5.18.2 5.18.1 5.18.0 | || 5.17.3

Challenge: adding new method overloads when existing consumers use {} with args

2022-07-23 Thread Friedrich W. H. Kossebau
Hi, (cc: kde-frameworks-devel for heads-up, please reply to kde-devel only) given a class C with a method foo(A a): --- 8< --- class C { public: void foo(A a); }; --- 8< --- Now you want to add an overload, to serve further use-cases as requested by API consumers: --- 8<