Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Qt 6: QApplication: Make exec_() a simple alias for exec() #473

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jan 16, 2024

  1. Qt 6: QApplication: Make exec_() a simple alias for exec()

    Make exec_() a simple alias for exec() instead of using the
    possibly_static_exec() helper. Using the helper is not required.
    Moreover, the helper doesn’t behave correctly if QApplication is
    monkey patched [1].
    
    [1] as in
    
        from qtpy import QtWidgets
        class PatchedQApplication(QtWidgets.QApplication):
            ...
        QtWidgets.QApplication = PatchedQApplication
    rear1019 committed Jan 16, 2024
    Configuration menu
    Copy the full SHA
    de78b84 View commit details
    Browse the repository at this point in the history