forked from openlp/openlp
Move customInit to wizard. So dummy implementations are not required in the deriving classes.
This commit is contained in:
parent
2a16a6ebcb
commit
f7c19f599c
@ -206,6 +206,12 @@ class OpenLPWizard(QtGui.QWizard):
|
|||||||
else:
|
else:
|
||||||
self.customPageChanged(pageId)
|
self.customPageChanged(pageId)
|
||||||
|
|
||||||
|
def customInit(self):
|
||||||
|
"""
|
||||||
|
Song wizard specific initialization.
|
||||||
|
"""
|
||||||
|
pass
|
||||||
|
|
||||||
def customPageChanged(self, pageId):
|
def customPageChanged(self, pageId):
|
||||||
"""
|
"""
|
||||||
Called when changing to a page other than the progress page
|
Called when changing to a page other than the progress page
|
||||||
|
@ -69,12 +69,6 @@ class DuplicateSongRemovalForm(OpenLPWizard):
|
|||||||
OpenLPWizard.__init__(self, parent, plugin, u'duplicateSongRemovalWizard',
|
OpenLPWizard.__init__(self, parent, plugin, u'duplicateSongRemovalWizard',
|
||||||
u':/wizards/wizard_duplicateremoval.bmp', False)
|
u':/wizards/wizard_duplicateremoval.bmp', False)
|
||||||
|
|
||||||
def customInit(self):
|
|
||||||
"""
|
|
||||||
Song wizard specific initialisation.
|
|
||||||
"""
|
|
||||||
pass
|
|
||||||
|
|
||||||
def customSignals(self):
|
def customSignals(self):
|
||||||
"""
|
"""
|
||||||
Song wizard specific signals.
|
Song wizard specific signals.
|
||||||
|
Loading…
Reference in New Issue
Block a user