Make gui class debug messages consistent

This commit is contained in:
Veronica Berglyd Olsen
2023-06-01 00:31:42 +02:00
parent 8fdec71f4b
commit 3e34721b66
26 changed files with 132 additions and 70 deletions
+6 -2
View File
@@ -48,7 +48,7 @@ class GuiDocSplit(QDialog):
def __init__(self, mainGui, sHandle):
super().__init__(parent=mainGui)
logger.debug("Initialising GuiDocSplit ...")
logger.debug("Create: GuiDocSplit")
self.setObjectName("GuiDocSplit")
self.mainGui = mainGui
@@ -138,10 +138,14 @@ class GuiDocSplit(QDialog):
# Load Content
self._loadContent(sHandle)
logger.debug("GuiDocSplit initialisation complete")
logger.debug("Ready: GuiDocSplit")
return
def __del__(self):
logger.debug("Delete: GuiDocSplit")
return
def getData(self):
"""Return the user's choices. Also save the users options for
the next time the dialog is used.