Actions
Bug #687
closedQCheckBox::stateChanged() deprecated in Qt-6.9
Start date:
05/30/2024
Due date:
% Done:
0%
Estimated time:
Description
QCheckBox::stateChanged() is deprecated in Qt-6.9. The replacement has been introduced in Qt-6.7. Build in Qt6x-mode should not use QCheckBox::stateChanged() once we are ready to require at least Qt-6.7.
Files
Updated by Marko Lindqvist 6 months ago
Moc generated meta source files fail to compile when the original header has the old and the new slot defined by the same name, even when conditional compiling makes sure only one of them is present at a time. Further, having them by different names, but only one of them defined at a time resulted in complains about the other one (name) to be present. The only way I got this working was to always provide both slots, and only connect signals to either one with conditional compilation.
Updated by Marko Lindqvist 6 months ago
- File 0068-Qt6x-Avoid-using-deprecated-QCheckBox-stateChanged.patch 0068-Qt6x-Avoid-using-deprecated-QCheckBox-stateChanged.patch added
- Status changed from New to In Review
- Assignee set to Marko Lindqvist
Actions