diff --git a/CenRa_FLUX/CenRa_Flux.py b/CenRa_FLUX/CenRa_Flux.py index 2acacbaf..1d2a8186 100644 --- a/CenRa_FLUX/CenRa_Flux.py +++ b/CenRa_FLUX/CenRa_Flux.py @@ -20,7 +20,7 @@ from .tools.resources import ( maj_verif, ) from .flux_editor import Flux_Editor -from .about_form import FluxAboutDialog +from .about_form import AboutDialog from PyQt5.QtCore import * @@ -71,7 +71,7 @@ class PgFlux: """ About dialog """ - dialog = CopieAboutDialog(iface) + dialog = AboutDialog(iface) dialog.exec_() def open_help(): """ Open the online help. """ diff --git a/CenRa_FLUX/about_form.py b/CenRa_FLUX/about_form.py index b0636d09..7e1595e0 100644 --- a/CenRa_FLUX/about_form.py +++ b/CenRa_FLUX/about_form.py @@ -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. """