CopieAboutForm en trop

This commit is contained in:
Tom LAVEILLE 2025-01-13 10:34:12 +01:00
parent ec175643bc
commit 65b24ff13d
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ from .tools.resources import (
maj_verif, maj_verif,
) )
from .flux_editor import Flux_Editor from .flux_editor import Flux_Editor
from .about_form import FluxAboutDialog from .about_form import AboutDialog
from PyQt5.QtCore import * from PyQt5.QtCore import *
@ -71,7 +71,7 @@ class PgFlux:
""" """
About dialog About dialog
""" """
dialog = CopieAboutDialog(iface) dialog = AboutDialog(iface)
dialog.exec_() dialog.exec_()
def open_help(): def open_help():
""" Open the online help. """ """ Open the online help. """

View File

@ -17,7 +17,7 @@ ABOUT_FORM_CLASS, _ = uic.loadUiType(
) )
class FluxAboutDialog(QDialog, ABOUT_FORM_CLASS): class AboutDialog(QDialog, ABOUT_FORM_CLASS):
""" About - Let the user display the about dialog. """ """ About - Let the user display the about dialog. """