1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Removed view arguments from core.gui classes's init methods.

--HG--
branch : objp
This commit is contained in:
Virgil Dupras
2012-01-13 16:14:06 -05:00
parent 55db21f3e0
commit 58347bc36f
9 changed files with 20 additions and 22 deletions

View File

@@ -12,11 +12,11 @@ from .base import GUIObject
from .problem_table import ProblemTable
class ProblemDialog(GUIObject, Broadcaster):
def __init__(self, view, app):
GUIObject.__init__(self, view, app)
def __init__(self, app):
GUIObject.__init__(self, app)
Broadcaster.__init__(self)
self._selected_dupe = None
self.problem_table = ProblemTable(None, self)
self.problem_table = ProblemTable(self)
def reveal_selected_dupe(self):
if self._selected_dupe is not None: