1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 06:37:17 +00:00

Converted ProblemDialog to objp.

--HG--
branch : objp
This commit is contained in:
Virgil Dupras
2012-01-13 12:19:23 -05:00
parent 7bce70c128
commit 937ea73c87
11 changed files with 53 additions and 91 deletions

View File

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