diff options
| author | Debulois <quentin@debulois.fr> | 2022-05-05 16:17:58 +0200 |
|---|---|---|
| committer | Debulois <quentin@debulois.fr> | 2022-05-05 16:17:58 +0200 |
| commit | d12ff4871844043e7a9e06a63a79c6e415ade936 (patch) | |
| tree | 490625d179de9b754b5056d29b8726143098e61c /src/app/windowAPropos.py | |
| parent | 809f5c2c7ce0bdf05287c6f1b5ec1330efb0c469 (diff) | |
Tous les fichiers sont commentés
Diffstat (limited to 'src/app/windowAPropos.py')
| -rw-r--r-- | src/app/windowAPropos.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/app/windowAPropos.py b/src/app/windowAPropos.py index 2450e03..bf6116e 100644 --- a/src/app/windowAPropos.py +++ b/src/app/windowAPropos.py @@ -1,9 +1,18 @@ +############################################################################ +# # +# Description: Fenêtre à propos # +# # +############################################################################ + +# Import de PyQt5 from PyQt5.QtWidgets import QMessageBox def window_main(mainWindow: object) -> None: - """""" + """ + Simple QMessageBox avec des infos 'A propos' + """ QMessageBox.information( mainWindow, "A propos", |
