Re: [Development] Proposal to retain \since version information in Qt Documentation

2024-09-24 Thread Christian Ehrlicher via Development
Sorry to reply directly but can't write much on my mobile. \since does occour in the documentation but it's suppressed for a long time for everything older than \since 5.0 in the QtBase (at least, did not check others) documentation. We don't talk about removing \since at all here. Just for stuf

Re: [Development] Proposal to retain \since version information in Qt Documentation

2024-09-24 Thread Christian Ehrlicher via Development
Am 24.09.2024 um 15:12 schrieb Paul Wicking via Development: Dear Qt Developers, I am writing to address a series of recent code review changes that propose removing the `\since [version]` documentation strings from various modules in Qt: ... By making these adjustments, we can ensure that

Re: [Development] Coin integration failing - need some help

2024-09-10 Thread Christian Ehrlicher via Development
On Monday 9 September 2024 12:09:44 GMT-7 Christian Ehrlicher via Development wrote: I try to get in some provisioning scripts into qt5.git but it constantly fails in tst_moc for windows-11_23H2-minimal-static with a timeout. QtBase points to aec8398d71d351e956683a695af51317fe65097e from start

[Development] Coin integration failing - need some help

2024-09-09 Thread Christian Ehrlicher via Development
Hi, I try to get in some provisioning scripts into qt5.git but it constantly fails in tst_moc for windows-11_23H2-minimal-static with a timeout. QtBase points to aec8398d71d351e956683a695af51317fe65097e from start of september. Don't know what else to do or how to figure out what's going on wrong

Re: [Development] Issues with QPainter::drawPolygon (off by one error?)

2024-04-28 Thread Christian Ehrlicher via Development
Am 28.04.2024 um 13:50 schrieb Allan Sandfeld Jensen: I think the problem with the cosmetic pen is partly the need to be symmetric. Years ago I tried cleaning up the cosmetic pen, but had to revert it because it violated rules about symmetry. https://codereview.qt-project.org/c/qt/qtbase/+/20038

Re: [Development] Issues with QPainter::drawPolygon (off by one error?)

2024-04-28 Thread Christian Ehrlicher via Development
Am 26.04.2024 um 22:48 schrieb Henry Skoglund: On 2024-04-26 21:52, Christian Ehrlicher via Development wrote: Hello, I'm currently trying to investigate a painting problem within the windowsvista / common style:     QImage img(7, 7, QImage::Format_ARGB32_Premultiplied);     QPolygon

[Development] Issues with QPainter::drawPolygon (off by one error?)

2024-04-26 Thread Christian Ehrlicher via Development
Hello, I'm currently trying to investigate a painting problem within the windowsvista / common style:     QImage img(7, 7, QImage::Format_ARGB32_Premultiplied);     QPolygon poly{ QPoint(1, 1), {5, 1}, {3, 5} };     QPainter p(&img);     p.setPen(Qt::NoPen);     p.setBrush(QColor(Qt::black));   

[Development] Documentation and Q_GADGET / Q_PROPERTY

2024-01-15 Thread Christian Ehrlicher via Development
Hi, In the sql module I've some classes which do not derive from QObject but have a lot of setters/getters. For a nicer documentation without duplicating information I had the idea to convert them to properties. So I added Q_GADGET and a simple Q_PROPERTY with only a READ and WRITE property - but