Skip to content

Fix some QML property overrides

Kai Uwe Broulik requested to merge work/kbroulik/fix-final-overrides into master

Qt 6.6 made a lot of properties FINAL so you cannot override them anymore.

ApplicationScreenshots: Rename status to imageStatus

status is a property of Loader (which ConditionalLoader inherits), which is FINAL in Qt 6.6 and so cannot be overridden.

InstallApplicationButton: Rename progress to installationProgress

progress is a property of Loader (which ConditionalLoader inherits), which is FINAL in Qt 6.6 and so cannot be overridden.


Didn’t do a thorough investigation but at least the application details page works again so I can browser and install apps again.

@apol @ngraham

Merge request reports