fixed duplicate finder

This commit is contained in:
Andreas Preikschat 2013-07-07 16:00:14 +02:00
parent 1ce72c3674
commit 8363979040
1 changed files with 4 additions and 3 deletions

View File

@ -67,7 +67,7 @@ class DuplicateSongRemovalForm(OpenLPWizard):
self.review_total_count = 0
# Used to interrupt ongoing searches when cancel is clicked.
self.break_search = False
OpenLPWizard.__init__(self, self.main_window, plugin, u'duplicateSongRemovalWizard',
OpenLPWizard.__init__(self, Registry().get('main_window'), plugin, u'duplicateSongRemovalWizard',
u':/wizards/wizard_duplicateremoval.bmp', False)
self.setMinimumWidth(730)
@ -360,3 +360,4 @@ class DuplicateSongRemovalForm(OpenLPWizard):
return self._application
application = property(_get_application)